mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			712 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			712 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package integration
 | 
						|
 | 
						|
import (
 | 
						|
	v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
 | 
						|
	"github.com/ory/dockertest/v3"
 | 
						|
)
 | 
						|
 | 
						|
type ControlServer interface {
 | 
						|
	Shutdown() (string, string, error)
 | 
						|
	SaveLog(string) (string, string, error)
 | 
						|
	SaveProfile(string) error
 | 
						|
	Execute(command []string) (string, error)
 | 
						|
	WriteFile(path string, content []byte) error
 | 
						|
	ConnectToNetwork(network *dockertest.Network) error
 | 
						|
	GetHealthEndpoint() string
 | 
						|
	GetEndpoint() string
 | 
						|
	WaitForRunning() error
 | 
						|
	CreateUser(user string) error
 | 
						|
	CreateAuthKey(user string, reusable bool, preApproved bool, ephemeral bool) (*v1.PreAuthKey, error)
 | 
						|
	ListNodesInUser(user string) ([]*v1.Node, error)
 | 
						|
	GetCert() []byte
 | 
						|
	GetHostname() string
 | 
						|
	GetIP() string
 | 
						|
}
 |