2022-10-21 11:17:38 +00:00
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
2024-09-21 10:05:36 +00:00
|
|
|
"io"
|
2022-10-21 11:17:38 +00:00
|
|
|
"net/netip"
|
2022-11-03 15:56:19 +00:00
|
|
|
"net/url"
|
2022-10-21 11:17:38 +00:00
|
|
|
|
2023-04-13 21:09:09 +00:00
|
|
|
"github.com/juanfont/headscale/integration/dockertestutil"
|
2023-02-02 15:05:52 +00:00
|
|
|
"github.com/juanfont/headscale/integration/tsic"
|
2022-10-21 11:17:38 +00:00
|
|
|
"tailscale.com/ipn/ipnstate"
|
2024-02-09 06:26:41 +00:00
|
|
|
"tailscale.com/net/netcheck"
|
2024-01-18 16:30:25 +00:00
|
|
|
"tailscale.com/types/netmap"
|
2022-10-21 11:17:38 +00:00
|
|
|
)
|
|
|
|
|
2022-12-19 18:15:31 +00:00
|
|
|
// nolint
|
2022-10-21 11:17:38 +00:00
|
|
|
type TailscaleClient interface {
|
|
|
|
Hostname() string
|
|
|
|
Shutdown() error
|
|
|
|
Version() string
|
2023-08-29 06:33:33 +00:00
|
|
|
Execute(
|
|
|
|
command []string,
|
|
|
|
options ...dockertestutil.ExecuteCommandOption,
|
|
|
|
) (string, string, error)
|
|
|
|
Login(loginServer, authKey string) error
|
|
|
|
LoginWithURL(loginServer string) (*url.URL, error)
|
2022-12-21 22:29:52 +00:00
|
|
|
Logout() error
|
2023-12-09 17:09:24 +00:00
|
|
|
Up() error
|
|
|
|
Down() error
|
2022-10-21 11:17:38 +00:00
|
|
|
IPs() ([]netip.Addr, error)
|
2022-10-23 09:55:37 +00:00
|
|
|
FQDN() (string, error)
|
2024-02-23 09:59:24 +00:00
|
|
|
Status(...bool) (*ipnstate.Status, error)
|
2024-01-18 16:30:25 +00:00
|
|
|
Netmap() (*netmap.NetworkMap, error)
|
2024-02-09 06:26:41 +00:00
|
|
|
Netcheck() (*netcheck.Report, error)
|
2023-08-29 06:33:33 +00:00
|
|
|
WaitForNeedsLogin() error
|
|
|
|
WaitForRunning() error
|
2022-10-21 11:17:38 +00:00
|
|
|
WaitForPeers(expected int) error
|
2023-02-02 15:05:52 +00:00
|
|
|
Ping(hostnameOrIP string, opts ...tsic.PingOption) error
|
2023-03-20 07:52:52 +00:00
|
|
|
Curl(url string, opts ...tsic.CurlOption) (string, error)
|
2022-11-08 15:09:52 +00:00
|
|
|
ID() string
|
2024-08-19 09:41:05 +00:00
|
|
|
ReadFile(path string) ([]byte, error)
|
2024-05-24 08:15:34 +00:00
|
|
|
|
|
|
|
// 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)
|
2024-09-21 10:05:36 +00:00
|
|
|
|
|
|
|
WriteLogs(stdout, stderr io.Writer) error
|
2022-10-21 11:17:38 +00:00
|
|
|
}
|