mirror of
https://github.com/juanfont/headscale.git
synced 2025-05-03 08:20:25 -04:00
* types/authkey: include user object, not string Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * make preauthkeys use id Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * changelog Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * integration: wire up user id for auth keys Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> --------- Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
31 lines
933 B
Go
31 lines
933 B
Go
package integration
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
|
|
policyv1 "github.com/juanfont/headscale/hscontrol/policy/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) (*v1.User, error)
|
|
CreateAuthKey(user uint64, reusable bool, ephemeral bool) (*v1.PreAuthKey, error)
|
|
ListNodes(users ...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(*policyv1.ACLPolicy) error
|
|
}
|