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