mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	* feat: add verify client config for embedded DERP * refactor: embedded DERP no longer verify clients via HTTP - register the `headscale://` protocol in `http.DefaultTransport` to intercept network requests - update configuration to use a single boolean option `verify_clients` * refactor: use `http.HandlerFunc` for type definition * refactor: some renaming and restructuring * chore: some renaming and fix lint * test: fix TestDERPVerifyEndpoint - `tailscale debug derp` use random node private key * test: add verify clients integration test for embedded DERP server * fix: apply code review suggestions * chore: merge upstream changes * fix: apply code review suggestions --------- Co-authored-by: Kristoffer Dalby <kristoffer@dalby.cc>
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package integration
 | |
| 
 | |
| import (
 | |
| 	"io"
 | |
| 	"net/netip"
 | |
| 	"net/url"
 | |
| 
 | |
| 	"github.com/juanfont/headscale/hscontrol/types"
 | |
| 	"github.com/juanfont/headscale/hscontrol/util"
 | |
| 	"github.com/juanfont/headscale/integration/dockertestutil"
 | |
| 	"github.com/juanfont/headscale/integration/tsic"
 | |
| 	"tailscale.com/ipn/ipnstate"
 | |
| 	"tailscale.com/net/netcheck"
 | |
| 	"tailscale.com/types/key"
 | |
| 	"tailscale.com/types/netmap"
 | |
| )
 | |
| 
 | |
| // nolint
 | |
| type TailscaleClient interface {
 | |
| 	Hostname() string
 | |
| 	Shutdown() (string, string, 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)
 | |
| 	MustIPs() []netip.Addr
 | |
| 	MustIPv4() netip.Addr
 | |
| 	MustIPv6() netip.Addr
 | |
| 	FQDN() (string, error)
 | |
| 	Status(...bool) (*ipnstate.Status, error)
 | |
| 	MustStatus() *ipnstate.Status
 | |
| 	Netmap() (*netmap.NetworkMap, error)
 | |
| 	DebugDERPRegion(region string) (*ipnstate.DebugDERPRegionReport, error)
 | |
| 	GetNodePrivateKey() (*key.NodePrivate, 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)
 | |
| 	Traceroute(netip.Addr) (util.Traceroute, error)
 | |
| 	ContainerID() string
 | |
| 	MustID() types.NodeID
 | |
| 	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
 | |
| }
 |