mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-31 04:57:45 +09:00 
			
		
		
		
	Thanks @kev-the-dev Closes #1460 Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
		
			
				
	
	
		
			24 lines
		
	
	
		
			618 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			618 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package integration
 | |
| 
 | |
| import (
 | |
| 	v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
 | |
| 	"github.com/ory/dockertest/v3"
 | |
| )
 | |
| 
 | |
| type ControlServer interface {
 | |
| 	Shutdown() error
 | |
| 	SaveLog(string) error
 | |
| 	SaveProfile(string) error
 | |
| 	Execute(command []string) (string, error)
 | |
| 	ConnectToNetwork(network *dockertest.Network) error
 | |
| 	GetHealthEndpoint() string
 | |
| 	GetEndpoint() string
 | |
| 	WaitForRunning() error
 | |
| 	CreateUser(user string) error
 | |
| 	CreateAuthKey(user string, reusable bool, ephemeral bool) (*v1.PreAuthKey, error)
 | |
| 	ListMachinesInUser(user string) ([]*v1.Machine, error)
 | |
| 	GetCert() []byte
 | |
| 	GetHostname() string
 | |
| 	GetIP() string
 | |
| }
 |