mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
test/e2e: slightly more informative test output
This commit is contained in:
parent
00ccbe95bb
commit
ff2c30a63c
1 changed files with 3 additions and 2 deletions
|
@ -494,7 +494,7 @@ var _ = framework.KubeDescribe("Node Feature Discovery", func() {
|
|||
// More comprehensive test when --e2e-node-config is enabled
|
||||
//
|
||||
ginkgo.Context("and nfd-workers as a daemonset with default sources enabled", func() {
|
||||
ginkgo.It("the node labels listed in the e2e config should be present", func() {
|
||||
ginkgo.It("the node labels and annotations listed in the e2e config should be present", func() {
|
||||
readConfig()
|
||||
if conf == nil {
|
||||
ginkgo.Skip("no e2e-config was specified")
|
||||
|
@ -524,10 +524,10 @@ var _ = framework.KubeDescribe("Node Feature Discovery", func() {
|
|||
e2elog.Logf("node %q missing from e2e-config, skipping...", node.Name)
|
||||
continue
|
||||
}
|
||||
e2elog.Logf("verifying node %q...", node.Name)
|
||||
nodeConf := fConf.Nodes[node.Name]
|
||||
|
||||
// Check labels
|
||||
e2elog.Logf("verifying labels of node %q...", node.Name)
|
||||
for k, v := range nodeConf.ExpectedLabelValues {
|
||||
gomega.Expect(node.Labels).To(gomega.HaveKeyWithValue(k, v))
|
||||
}
|
||||
|
@ -548,6 +548,7 @@ var _ = framework.KubeDescribe("Node Feature Discovery", func() {
|
|||
}
|
||||
|
||||
// Check annotations
|
||||
e2elog.Logf("verifying annotations of node %q...", node.Name)
|
||||
for k, v := range nodeConf.ExpectedAnnotationValues {
|
||||
gomega.Expect(node.Annotations).To(gomega.HaveKeyWithValue(k, v))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue