2022-10-18 09:59:43 +00:00
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2022-10-21 12:08:04 +00:00
|
|
|
func TestPingAllByIP(t *testing.T) {
|
2022-10-18 09:59:43 +00: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)
|
|
|
|
}
|
|
|
|
|
2022-10-23 10:41:35 +00:00
|
|
|
allClients, err := scenario.ListTailscaleClients()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to get clients: %s", err)
|
|
|
|
}
|
2022-10-18 09:59:43 +00:00
|
|
|
|
2022-10-23 10:41:35 +00:00
|
|
|
allIps, err := scenario.ListTailscaleClientsIPs()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to get clients: %s", err)
|
2022-10-18 09:59:43 +00:00
|
|
|
}
|
|
|
|
|
2022-10-18 10:19:43 +00:00
|
|
|
err = scenario.WaitForTailscaleSync()
|
2022-10-18 09:59:43 +00: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 12:07:46 +00:00
|
|
|
err := client.Ping(ip.String())
|
2022-10-18 09:59:43 +00:00
|
|
|
if err != nil {
|
2022-10-21 11:17:54 +00:00
|
|
|
t.Errorf("failed to ping %s from %s: %s", ip, client.Hostname(), err)
|
2022-10-18 09:59:43 +00:00
|
|
|
} else {
|
|
|
|
success++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Logf("%d successful pings out of %d", success, len(allClients)*len(allIps))
|
|
|
|
|
2022-10-21 15:44:40 +00:00
|
|
|
err = scenario.Shutdown()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to tear down scenario: %s", err)
|
|
|
|
}
|
2022-10-18 09:59:43 +00:00
|
|
|
}
|
2022-10-21 12:08:14 +00:00
|
|
|
|
|
|
|
func TestPingAllByHostname(t *testing.T) {
|
|
|
|
IntegrationSkip(t)
|
|
|
|
|
|
|
|
scenario, err := NewScenario()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to create scenario: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
spec := map[string]int{
|
2022-10-23 09:42:15 +00:00
|
|
|
// Omit 1.16.2 (-1) because it does not have the FQDN field
|
|
|
|
"namespace3": len(TailscaleVersions) - 1,
|
|
|
|
"namespace4": len(TailscaleVersions) - 1,
|
2022-10-21 12:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = scenario.CreateHeadscaleEnv(spec)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to create headscale environment: %s", err)
|
|
|
|
}
|
|
|
|
|
2022-10-23 10:41:35 +00:00
|
|
|
allClients, err := scenario.ListTailscaleClients()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to get clients: %s", err)
|
2022-10-21 12:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = scenario.WaitForTailscaleSync()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed wait for tailscale clients to be in sync: %s", err)
|
|
|
|
}
|
|
|
|
|
2022-10-23 10:41:35 +00:00
|
|
|
allHostnames, err := scenario.ListTailscaleClientsFQDNs()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to get FQDNs: %s", err)
|
2022-10-21 15:44:40 +00:00
|
|
|
}
|
|
|
|
|
2022-10-21 12:08:14 +00:00
|
|
|
success := 0
|
|
|
|
|
|
|
|
for _, client := range allClients {
|
2022-10-21 15:44:40 +00:00
|
|
|
for _, hostname := range allHostnames {
|
|
|
|
err := client.Ping(hostname)
|
2022-10-21 12:08:14 +00:00
|
|
|
if err != nil {
|
2022-10-23 09:55:37 +00:00
|
|
|
t.Errorf("failed to ping %s from %s: %s", hostname, client.Hostname(), err)
|
2022-10-21 12:08:14 +00:00
|
|
|
} else {
|
|
|
|
success++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Logf("%d successful pings out of %d", success, len(allClients)*len(allClients))
|
|
|
|
|
|
|
|
err = scenario.Shutdown()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("failed to tear down scenario: %s", err)
|
|
|
|
}
|
|
|
|
}
|