Skip to content

Commit

Permalink
Add debug to enforce with status test
Browse files Browse the repository at this point in the history
This test has been flakey - the last check for Compliant events has been
coming back empty unexpectedly. This will print information about all of
the events to help understand what is happening.

Signed-off-by: Justin Kulikauskas <jkulikau@redhat.com>
  • Loading branch information
JustinKuli authored and openshift-merge-robot committed Sep 20, 2023
1 parent f997dbc commit 62a3ac4
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions test/e2e/case34_enforce_w_status_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@
package e2e

import (
"strconv"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

"open-cluster-management.io/config-policy-controller/test/utils"
)

var _ = Describe("Test compliance events of enforced policies that define a status", Ordered, func() {
var _ = Describe("Test compliance events of enforced policies that define a status", func() {
const (
rsrcPath = "../resources/case34_enforce_w_status/"
policyYAML = rsrcPath + "policy.yaml"
Expand Down Expand Up @@ -60,7 +62,25 @@ var _ = Describe("Test compliance events of enforced policies that define a stat
}, defaultTimeoutSeconds, 5).ShouldNot(BeEmpty())
})

AfterAll(func() {
AfterEach(func() {
if CurrentSpecReport().Failed() {
events := utils.GetMatchingEvents(clientManaged, testNamespace,
policyName, ".*", ".*", defaultTimeoutSeconds)

By("Test failed, printing compliance events for debugging, event count = " + strconv.Itoa(len(events)))
for _, ev := range events {
GinkgoWriter.Println("---")
GinkgoWriter.Println("Name:", ev.Name)
GinkgoWriter.Println("Reason:", ev.Reason)
GinkgoWriter.Println("Message:", ev.Message)
GinkgoWriter.Println("FirstTimestamp:", ev.FirstTimestamp)
GinkgoWriter.Println("LastTimestamp:", ev.LastTimestamp)
GinkgoWriter.Println("Count:", ev.Count)
GinkgoWriter.Println("Type:", ev.Type)
GinkgoWriter.Println("---")
}
}

utils.Kubectl("delete", "policy", policyName, "-n", "managed", "--ignore-not-found")
configPlc := utils.GetWithTimeout(clientManagedDynamic, gvrConfigPolicy,
cfgPlcName, "managed", false, defaultTimeoutSeconds,
Expand Down

0 comments on commit 62a3ac4

Please sign in to comment.