1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-31 04:04:51 +00:00

test/e2e: isolate tests into a separate function

Preparation for running the same tests with NodeFeature API enabled
(instead of gRPC).
This commit is contained in:
Markus Lehtonen 2022-12-14 16:06:04 +02:00
parent e684197634
commit 958db56680

View file

@ -153,6 +153,7 @@ func cleanupCRDs(cli *nfdclient.Clientset) {
var _ = SIGDescribe("Node Feature Discovery", func() {
f := framework.NewDefaultFramework("node-feature-discovery")
nfdTestSuite := func(useNodeFeatureApi bool) {
Context("when deploying a single nfd-master pod", Ordered, func() {
var (
masterPod *corev1.Pod
@ -572,6 +573,13 @@ core:
})
})
})
}
// Run the actual tests
Context("when running NFD with gRPC API enabled", func() {
nfdTestSuite(false)
})
})
// waitForNfdNodeAnnotations waits for node to be annotated as expected.