mirror of https://github.com/k3s-io/k3s
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
4.6 KiB
146 lines
4.6 KiB
package wasm
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/k3s-io/k3s/tests/e2e"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
// Valid nodeOS: bento/ubuntu-24.04, opensuse/Leap-15.6.x86_64
|
|
var nodeOS = flag.String("nodeOS", "bento/ubuntu-24.04", "VM operating system")
|
|
var serverCount = flag.Int("serverCount", 1, "number of server nodes")
|
|
var agentCount = flag.Int("agentCount", 0, "number of agent nodes")
|
|
var ci = flag.Bool("ci", false, "running on CI")
|
|
var local = flag.Bool("local", false, "deploy a locally built K3s binary")
|
|
|
|
func Test_E2EWasm(t *testing.T) {
|
|
flag.Parse()
|
|
RegisterFailHandler(Fail)
|
|
suiteConfig, reporterConfig := GinkgoConfiguration()
|
|
RunSpecs(t, "Run WebAssenbly Workloads Test Suite", suiteConfig, reporterConfig)
|
|
}
|
|
|
|
var (
|
|
kubeConfigFile string
|
|
serverNodeNames []string
|
|
agentNodeNames []string
|
|
)
|
|
|
|
var _ = ReportAfterEach(e2e.GenReport)
|
|
|
|
var _ = Describe("Verify Can run Wasm workloads", Ordered, func() {
|
|
|
|
It("Starts up with no issues", func() {
|
|
var err error
|
|
if *local {
|
|
serverNodeNames, agentNodeNames, err = e2e.CreateLocalCluster(*nodeOS, *serverCount, *agentCount)
|
|
} else {
|
|
serverNodeNames, agentNodeNames, err = e2e.CreateCluster(*nodeOS, *serverCount, *agentCount)
|
|
}
|
|
Expect(err).NotTo(HaveOccurred(), e2e.GetVagrantLog(err))
|
|
fmt.Println("CLUSTER CONFIG")
|
|
fmt.Println("OS:", *nodeOS)
|
|
fmt.Println("Server Nodes:", serverNodeNames)
|
|
fmt.Println("Agent Nodes:", agentNodeNames)
|
|
kubeConfigFile, err = e2e.GenKubeConfigFile(serverNodeNames[0])
|
|
Expect(err).NotTo(HaveOccurred())
|
|
})
|
|
|
|
// Server node needs to be ready before we continue
|
|
It("Checks Node and Pod Status", func() {
|
|
fmt.Printf("\nFetching node status\n")
|
|
Eventually(func(g Gomega) {
|
|
nodes, err := e2e.ParseNodes(kubeConfigFile, false)
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
for _, node := range nodes {
|
|
g.Expect(node.Status).Should(Equal("Ready"))
|
|
}
|
|
}, "620s", "5s").Should(Succeed())
|
|
_, _ = e2e.ParseNodes(kubeConfigFile, true)
|
|
|
|
fmt.Printf("\nFetching Pods status\n")
|
|
Eventually(func(g Gomega) {
|
|
pods, err := e2e.ParsePods(kubeConfigFile, false)
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
for _, pod := range pods {
|
|
if strings.Contains(pod.Name, "helm-install") {
|
|
g.Expect(pod.Status).Should(Equal("Completed"), pod.Name)
|
|
} else {
|
|
g.Expect(pod.Status).Should(Equal("Running"), pod.Name)
|
|
}
|
|
}
|
|
}, "620s", "5s").Should(Succeed())
|
|
_, _ = e2e.ParsePods(kubeConfigFile, true)
|
|
})
|
|
|
|
It("Verify wasm-related containerd shims are installed", func() {
|
|
expected_shims := []string{"containerd-shim-spin-v2", "containerd-shim-slight-v1"}
|
|
for _, node := range append(serverNodeNames, agentNodeNames...) {
|
|
for _, shim := range expected_shims {
|
|
cmd := fmt.Sprintf("which %s", shim)
|
|
_, err := e2e.RunCmdOnNode(cmd, node)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
}
|
|
}
|
|
})
|
|
|
|
Context("Verify Wasm workloads can run on the cluster", func() {
|
|
It("Deploy Wasm workloads", func() {
|
|
out, err := e2e.DeployWorkload("wasm-workloads.yaml", kubeConfigFile, false)
|
|
Expect(err).NotTo(HaveOccurred(), out)
|
|
})
|
|
|
|
It("Wait for slight Pod to be up and running", func() {
|
|
Eventually(func() (string, error) {
|
|
cmd := "kubectl get pods -o=name -l app=wasm-slight --field-selector=status.phase=Running --kubeconfig=" + kubeConfigFile
|
|
return e2e.RunCommand(cmd)
|
|
}, "240s", "5s").Should(ContainSubstring("pod/wasm-slight"))
|
|
})
|
|
|
|
It("Wait for spin Pod to be up and running", func() {
|
|
Eventually(func() (string, error) {
|
|
cmd := "kubectl get pods -o=name -l app=wasm-spin --field-selector=status.phase=Running --kubeconfig=" + kubeConfigFile
|
|
return e2e.RunCommand(cmd)
|
|
}, "120s", "5s").Should(ContainSubstring("pod/wasm-spin"))
|
|
})
|
|
|
|
It("Interact with Wasm applications", func() {
|
|
ingressIPs, err := e2e.FetchIngressIP(kubeConfigFile)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(ingressIPs).To(HaveLen(1))
|
|
|
|
endpoints := []string{"slight/hello", "spin/go-hello", "spin/hello"}
|
|
for _, endpoint := range endpoints {
|
|
url := fmt.Sprintf("http://%s/%s", ingressIPs[0], endpoint)
|
|
fmt.Printf("Connecting to Wasm web application at: %s\n", url)
|
|
cmd := "curl -sfv " + url
|
|
|
|
Eventually(func() (string, error) {
|
|
return e2e.RunCommand(cmd)
|
|
}, "120s", "5s").Should(ContainSubstring("200 OK"))
|
|
}
|
|
})
|
|
})
|
|
})
|
|
|
|
var failed bool
|
|
var _ = AfterEach(func() {
|
|
failed = failed || CurrentSpecReport().Failed()
|
|
})
|
|
|
|
var _ = AfterSuite(func() {
|
|
if failed && !*ci {
|
|
fmt.Println("FAILED!")
|
|
} else {
|
|
Expect(e2e.GetCoverageReport(append(serverNodeNames, agentNodeNames...))).To(Succeed())
|
|
Expect(e2e.DestroyCluster()).To(Succeed())
|
|
Expect(os.Remove(kubeConfigFile)).To(Succeed())
|
|
}
|
|
})
|