Skip to content

Commit

Permalink
Add int test for flannel-ipv6masq
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel Buil <[email protected]>
  • Loading branch information
manuelbuil committed Jul 2, 2024
1 parent f10cb29 commit e5079ce
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 4 deletions.
4 changes: 1 addition & 3 deletions tests/integration/dualstack/dualstack_int_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,8 @@ var _ = Describe("dual stack", Ordered, func() {
}, "180s", "10s").Should(Succeed())
})
It("creates pods with two IPs", func() {
podname, err := testutil.K3sCmd("kubectl", "get", "pods", "-n", "kube-system", "-o", "jsonpath={.items[?(@.metadata.labels.app\\.kubernetes\\.io/name==\"traefik\")].metadata.name}")
Expect(err).NotTo(HaveOccurred())
Eventually(func() (string, error) {
return testutil.K3sCmd("kubectl", "exec", podname, "-n", "kube-system", "--", "ip", "a")
return testutil.K3sCmd("kubectl", "exec", "deployment/traefik", "-n", "kube-system", "--", "ip", "a")
}, "5s", "1s").Should(ContainSubstring("2001:cafe:42:"))
})
})
Expand Down
78 changes: 78 additions & 0 deletions tests/integration/flannelipv6masq/flannelipv6masq_int_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
package integration

import (
"os"
"strings"
"testing"

testutil "github.com/k3s-io/k3s/tests/integration"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)

var server *testutil.K3sServer
var dualStackServeripv6masqArgs = []string{
"--cluster-init",
"--cluster-cidr", "10.42.0.0/16,2001:cafe:42::/56",
"--service-cidr", "10.43.0.0/16,2001:cafe:43::/112",
"--disable-network-policy",
"--flannel-ipv6-masq",
}
var testLock int

var _ = BeforeSuite(func() {
if !testutil.IsExistingServer() && os.Getenv("CI") != "true" {
var err error
testLock, err = testutil.K3sTestLock()
Expect(err).ToNot(HaveOccurred())
server, err = testutil.K3sStartServer(dualStackServeripv6masqArgs...)
Expect(err).ToNot(HaveOccurred())
}
})

var _ = Describe("flannel-ipv6-masq", Ordered, func() {
BeforeEach(func() {
if testutil.IsExistingServer() && !testutil.ServerArgsPresent(dualStackServeripv6masqArgs) {
Skip("Test needs k3s server with: " + strings.Join(dualStackServeripv6masqArgs, " "))
} else if os.Getenv("CI") == "true" {
Skip("Github environment does not support IPv6")
}
})
When("a ipv4 and ipv6 cidr is present", func() {
It("starts up with no problems", func() {
Eventually(func() error {
return testutil.K3sDefaultDeployments()
}, "180s", "10s").Should(Succeed())
})
It("creates pods with two IPs", func() {
Eventually(func() (string, error) {
return testutil.K3sCmd("kubectl", "exec", "deployment/traefik", "-n", "kube-system", "--", "ip", "a")
}, "5s", "1s").Should(ContainSubstring("2001:cafe:42:"))
})
It("verifies ipv6 masq iptables rule exists", func() {
Eventually(func() (string, error) {
return testutil.RunCommand("ip6tables -nt nat -L FLANNEL-POSTRTG")
}, "5s", "1s").Should(ContainSubstring("MASQUERADE"))
})
})
})

var failed bool
var _ = AfterEach(func() {
failed = failed || CurrentSpecReport().Failed()
})

var _ = AfterSuite(func() {
if !testutil.IsExistingServer() && os.Getenv("CI") != "true" {
if failed {
testutil.K3sSaveLog(server, false)
}
Expect(testutil.K3sKillServer(server)).To(Succeed())
Expect(testutil.K3sCleanup(testLock, "")).To(Succeed())
}
})

func Test_IntegrationFlannelIpv6Masq(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "flannel-ipv6-masq Suite")
}
3 changes: 2 additions & 1 deletion tests/integration/integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func findK3sExecutable() string {
break
}
if i == 20 {
logrus.Fatal("Unable to find k3s executable")
logrus.Fatalf("Unable to find k3s executable in %s", k3sBin)
}
return k3sBin
}
Expand Down Expand Up @@ -254,6 +254,7 @@ func K3sStartServer(inputArgs ...string) (*K3sServer, error) {
return nil, err
}
cmd.Stderr = f
logrus.Info("Starting k3s server. Check k3log.txt for logs")
err = cmd.Start()
return &K3sServer{cmd, f}, err
}
Expand Down

0 comments on commit e5079ce

Please sign in to comment.