2021-09-14 10:08:12 +00:00
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
2021-11-02 18:37:16 +00:00
|
|
|
"os"
|
2021-09-14 10:08:12 +00:00
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
"github.com/onsi/ginkgo/reporters"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
testutil "github.com/rancher/k3s/tests/util"
|
|
|
|
)
|
|
|
|
|
2021-10-28 19:35:28 +00:00
|
|
|
var dualStackServer *testutil.K3sServer
|
|
|
|
var dualStackServerArgs = []string{
|
|
|
|
"--cluster-init",
|
|
|
|
"--cluster-cidr 10.42.0.0/16,2001:cafe:42:0::/56",
|
|
|
|
"--service-cidr 10.43.0.0/16,2001:cafe:42:1::/112",
|
|
|
|
"--disable-network-policy",
|
|
|
|
}
|
2021-09-14 10:08:12 +00:00
|
|
|
var _ = BeforeSuite(func() {
|
2021-11-08 23:27:44 +00:00
|
|
|
if !testutil.IsExistingServer() && os.Getenv("CI") != "true" {
|
2021-09-14 10:08:12 +00:00
|
|
|
var err error
|
2021-10-28 19:35:28 +00:00
|
|
|
dualStackServer, err = testutil.K3sStartServer(dualStackServerArgs...)
|
2021-09-14 10:08:12 +00:00
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
var _ = Describe("dual stack", func() {
|
|
|
|
BeforeEach(func() {
|
|
|
|
if testutil.IsExistingServer() && !testutil.ServerArgsPresent(dualStackServerArgs) {
|
|
|
|
Skip("Test needs k3s server with: " + strings.Join(dualStackServerArgs, " "))
|
2021-11-02 18:37:16 +00:00
|
|
|
} else if os.Getenv("CI") == "true" {
|
|
|
|
Skip("Github environment does not support IPv6")
|
2021-09-14 10:08:12 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
When("a ipv4 and ipv6 cidr is present", func() {
|
|
|
|
It("starts up with no problems", func() {
|
|
|
|
Eventually(func() (string, error) {
|
|
|
|
return testutil.K3sCmd("kubectl", "get", "pods", "-A")
|
2021-10-28 19:35:28 +00:00
|
|
|
}, "180s", "5s").Should(MatchRegexp("kube-system.+traefik.+1\\/1.+Running"))
|
2021-09-14 10:08:12 +00:00
|
|
|
})
|
|
|
|
It("creates pods with two IPs", func() {
|
2021-10-28 19:35:28 +00:00
|
|
|
podname, err := testutil.K3sCmd("kubectl", "get", "pods", "-n", "kube-system", "-o", "jsonpath={.items[?(@.metadata.labels.app\\.kubernetes\\.io/name==\"traefik\")].metadata.name}")
|
2021-09-14 10:08:12 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-10-28 19:35:28 +00:00
|
|
|
Eventually(func() (string, error) {
|
|
|
|
return testutil.K3sCmd("kubectl", "exec", podname, "-n", "kube-system", "--", "ip", "a")
|
|
|
|
}, "5s", "1s").Should(ContainSubstring("2001:cafe:42:"))
|
2021-09-14 10:08:12 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
var _ = AfterSuite(func() {
|
2021-11-08 23:27:44 +00:00
|
|
|
if !testutil.IsExistingServer() && os.Getenv("CI") != "true" {
|
2021-10-28 19:35:28 +00:00
|
|
|
Expect(testutil.K3sKillServer(dualStackServer)).To(Succeed())
|
2021-09-14 10:08:12 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
func Test_IntegrationDualStack(t *testing.T) {
|
|
|
|
RegisterFailHandler(Fail)
|
|
|
|
RunSpecsWithDefaultAndCustomReporters(t, "Dual-Stack Suite", []Reporter{
|
|
|
|
reporters.NewJUnitReporter("/tmp/results/junit-ls.xml"),
|
|
|
|
})
|
|
|
|
}
|