mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-10 09:02:30 +08:00
8571513e3c
* reformat code This is mostly an automated change with `make lint`. I had to manually please golangci-lint in routes_test because of a short variable name. * fix start -> strategy which was wrongly corrected by linter
24 lines
658 B
Go
24 lines
658 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)
|
|
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, ephemeral bool) (*v1.PreAuthKey, error)
|
|
ListNodesInUser(user string) ([]*v1.Node, error)
|
|
GetCert() []byte
|
|
GetHostname() string
|
|
GetIP() string
|
|
}
|