mirror of
https://github.com/juanfont/headscale.git
synced 2025-05-22 18:11:52 -04:00
* policy: remove v1 code Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * db: update test with v1 removal Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * integration: start moving to v2 policy Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * policy: add ssh unmarshal tests Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * changelog: add entry Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * policy: remove v1 comment Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * integration: remove comment out case Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * cleanup skipv1 Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * policy: remove v1 prefix workaround Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * policy: add all node ips if prefix/host is ts ip Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> --------- Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
33 lines
1020 B
Go
33 lines
1020 B
Go
package integration
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
|
|
policyv2 "github.com/juanfont/headscale/hscontrol/policy/v2"
|
|
"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) (*v1.User, error)
|
|
CreateAuthKey(user uint64, reusable bool, ephemeral bool) (*v1.PreAuthKey, error)
|
|
ListNodes(users ...string) ([]*v1.Node, error)
|
|
NodesByUser() (map[string][]*v1.Node, error)
|
|
NodesByName() (map[string]*v1.Node, error)
|
|
ListUsers() ([]*v1.User, error)
|
|
MapUsers() (map[string]*v1.User, error)
|
|
ApproveRoutes(uint64, []netip.Prefix) (*v1.Node, error)
|
|
GetCert() []byte
|
|
GetHostname() string
|
|
SetPolicy(*policyv2.Policy) error
|
|
}
|