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:
parent
e684197634
commit
958db56680
1 changed files with 346 additions and 338 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue