mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 18:15:26 +00:00
edf9e25001
* feat: support client verify for derp * docs: fix doc for integration test * tests: add integration test for DERP verify endpoint * tests: use `tailcfg.DERPMap` instead of `[]byte` * refactor: introduce func `ContainsNodeKey` * tests(dsic): use string builder for cmd args * ci: fix tests order * tests: fix derper failure * chore: cleanup * tests(verify-client): perfer to use `CreateHeadscaleEnv` * refactor(verify-client): simplify error handling * tests: fix `TestDERPVerifyEndpoint` * refactor: make `doVerify` a seperated func --------- Co-authored-by: 117503445 <t117503445@gmail.com>
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
package integration
|
|
|
|
import (
|
|
"io"
|
|
"net/netip"
|
|
"net/url"
|
|
|
|
"github.com/juanfont/headscale/integration/dockertestutil"
|
|
"github.com/juanfont/headscale/integration/tsic"
|
|
"tailscale.com/ipn/ipnstate"
|
|
"tailscale.com/net/netcheck"
|
|
"tailscale.com/types/netmap"
|
|
)
|
|
|
|
// nolint
|
|
type TailscaleClient interface {
|
|
Hostname() string
|
|
Shutdown() error
|
|
Version() string
|
|
Execute(
|
|
command []string,
|
|
options ...dockertestutil.ExecuteCommandOption,
|
|
) (string, string, error)
|
|
Login(loginServer, authKey string) error
|
|
LoginWithURL(loginServer string) (*url.URL, error)
|
|
Logout() error
|
|
Up() error
|
|
Down() error
|
|
IPs() ([]netip.Addr, error)
|
|
FQDN() (string, error)
|
|
Status(...bool) (*ipnstate.Status, error)
|
|
Netmap() (*netmap.NetworkMap, error)
|
|
DebugDERPRegion(region string) (*ipnstate.DebugDERPRegionReport, error)
|
|
Netcheck() (*netcheck.Report, error)
|
|
WaitForNeedsLogin() error
|
|
WaitForRunning() error
|
|
WaitForPeers(expected int) error
|
|
Ping(hostnameOrIP string, opts ...tsic.PingOption) error
|
|
Curl(url string, opts ...tsic.CurlOption) (string, error)
|
|
ID() string
|
|
ReadFile(path string) ([]byte, error)
|
|
|
|
// FailingPeersAsString returns a formatted-ish multi-line-string of peers in the client
|
|
// and a bool indicating if the clients online count and peer count is equal.
|
|
FailingPeersAsString() (string, bool, error)
|
|
|
|
WriteLogs(stdout, stderr io.Writer) error
|
|
}
|