diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index f0deb7acd7b..1e9c5139b1b 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -804,6 +804,14 @@ definitions MUST be published for custom resource definitions. release: v1.16 file: test/e2e/apimachinery/crd_publish_openapi.go +- testname: Event resource lifecycle + codename: '[sig-api-machinery] Events should ensure that an event can be fetched, + patched, deleted, and listed [Conformance]' + description: Create an event, the event MUST exist. The event is patched with a + new message, the check MUST have the update message. The event is deleted and + MUST NOT show up when listing all events. + release: v1.19 + file: test/e2e/framework/events/events.go - testname: Garbage Collector, delete deployment, propagation policy background codename: '[sig-api-machinery] Garbage collector should delete RS created by deployment when not orphaning [Conformance]' diff --git a/test/e2e/framework/events/events.go b/test/e2e/framework/events/events.go index 4890d87f77d..abd57b7aec7 100644 --- a/test/e2e/framework/events/events.go +++ b/test/e2e/framework/events/events.go @@ -39,7 +39,14 @@ type Action func() error var _ = ginkgo.Describe("[sig-api-machinery] Events", func() { f := framework.NewDefaultFramework("events") - ginkgo.It("should ensure that an event can be fetched, patched, deleted, and listed", func() { + /* + Release : v1.19 + Testname: Event resource lifecycle + Description: Create an event, the event MUST exist. + The event is patched with a new message, the check MUST have the update message. + The event is deleted and MUST NOT show up when listing all events. + */ + framework.ConformanceIt("should ensure that an event can be fetched, patched, deleted, and listed", func() { eventTestName := "event-test" ginkgo.By("creating a test event")