blob: c4486b2841ec1f8828dc9de6be371e4d4cd416ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
package cloudenv
import (
"flag"
"net/netip"
"testing"
)
var extNetwork = flag.Bool("use-external-network", false, "use the external network in tests")
// Informational only since we can run tests in a variety of places.
func TestGetCloud(t *testing.T) {
if !*extNetwork {
t.Skip("skipping test without --use-external-network")
}
cloud := getCloud()
t.Logf("Cloud: %q", cloud)
t.Logf("Cloud.HasInternalTLD: %v", cloud.HasInternalTLD())
t.Logf("Cloud.ResolverIP: %q", cloud.ResolverIP())
}
func TestGetDigitalOceanResolver(t *testing.T) {
addr := netip.MustParseAddr(getDigitalOceanResolver())
t.Logf("got: %v", addr)
}
|