2022-10-21 20:17:38 +09:00
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/netip"
|
2022-11-04 00:56:19 +09:00
|
|
|
"net/url"
|
2022-10-21 20:17:38 +09:00
|
|
|
|
|
|
|
"tailscale.com/ipn/ipnstate"
|
|
|
|
)
|
|
|
|
|
2022-11-09 06:33:11 +09:00
|
|
|
//nolint
|
2022-10-21 20:17:38 +09:00
|
|
|
type TailscaleClient interface {
|
|
|
|
Hostname() string
|
|
|
|
Shutdown() error
|
|
|
|
Version() string
|
2022-11-04 01:00:23 +09:00
|
|
|
Execute(command []string) (string, string, error)
|
2022-10-21 20:17:38 +09:00
|
|
|
Up(loginServer, authKey string) error
|
2022-11-04 00:56:19 +09:00
|
|
|
UpWithLoginURL(loginServer string) (*url.URL, error)
|
2022-10-21 20:17:38 +09:00
|
|
|
IPs() ([]netip.Addr, error)
|
2022-10-23 18:55:37 +09:00
|
|
|
FQDN() (string, error)
|
2022-10-21 20:17:38 +09:00
|
|
|
Status() (*ipnstate.Status, error)
|
2022-11-13 21:06:53 +09:00
|
|
|
WaitForReady() error
|
2022-10-21 20:17:38 +09:00
|
|
|
WaitForPeers(expected int) error
|
2022-10-21 21:07:46 +09:00
|
|
|
Ping(hostnameOrIP string) error
|
2022-11-09 00:09:52 +09:00
|
|
|
ID() string
|
2022-10-21 20:17:38 +09:00
|
|
|
}
|