2022-10-18 05:59:43 -04:00
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/netip"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2022-10-21 08:08:04 -04:00
|
|
|
func TestPingAllByIP(t *testing.T) {
|
2022-10-18 05:59:43 -04:00
|
|
|
IntegrationSkip(t)
|
|
|
|
|
|
|
|
scenario, err := NewScenario()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to create scenario: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
spec := map[string]int{
|
|
|
|
"namespace1": len(TailscaleVersions),
|
|
|
|
"namespace2": len(TailscaleVersions),
|
|
|
|
}
|
|
|
|
|
|
|
|
err = scenario.CreateHeadscaleEnv(spec)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to create headscale environment: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var allIps []netip.Addr
|
2022-10-21 07:17:54 -04:00
|
|
|
var allClients []TailscaleClient
|
2022-10-18 05:59:43 -04:00
|
|
|
|
|
|
|
for namespace, count := range spec {
|
|
|
|
ips, err := scenario.GetIPs(namespace)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to get tailscale ips: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(ips) != count*2 {
|
|
|
|
t.Errorf(
|
|
|
|
"got the wrong amount of tailscale ips, %d != %d",
|
|
|
|
len(ips),
|
|
|
|
count*2,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
clients, err := scenario.GetClients(namespace)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to get tailscale clients: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
allIps = append(allIps, ips...)
|
|
|
|
allClients = append(allClients, clients...)
|
|
|
|
}
|
|
|
|
|
2022-10-18 06:19:43 -04:00
|
|
|
err = scenario.WaitForTailscaleSync()
|
2022-10-18 05:59:43 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed wait for tailscale clients to be in sync: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
success := 0
|
|
|
|
|
|
|
|
for _, client := range allClients {
|
|
|
|
for _, ip := range allIps {
|
2022-10-21 08:07:46 -04:00
|
|
|
err := client.Ping(ip.String())
|
2022-10-18 05:59:43 -04:00
|
|
|
if err != nil {
|
2022-10-21 07:17:54 -04:00
|
|
|
t.Errorf("failed to ping %s from %s: %s", ip, client.Hostname(), err)
|
2022-10-18 05:59:43 -04:00
|
|
|
} else {
|
|
|
|
success++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Logf("%d successful pings out of %d", success, len(allClients)*len(allIps))
|
|
|
|
|
2022-10-21 08:42:37 -04:00
|
|
|
// err = scenario.Shutdown()
|
|
|
|
// if err != nil {
|
|
|
|
// t.Errorf("failed to tear down scenario: %s", err)
|
|
|
|
// }
|
2022-10-18 05:59:43 -04:00
|
|
|
}
|