Skip to content

Commit e76ac2d

Browse files
committed
Promote: event delete a collection test
1 parent 865cbf0 commit e76ac2d

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

test/conformance/testdata/conformance.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -809,6 +809,13 @@
809809
definitions MUST be published for custom resource definitions.
810810
release: v1.16
811811
file: test/e2e/apimachinery/crd_publish_openapi.go
812+
- testname: Event, delete a collection
813+
codename: '[sig-api-machinery] Events should delete a collection of events [Conformance]'
814+
description: A set of events is created with a label selector which MUST be found
815+
when listed. The set of events is deleted and MUST NOT show up when listed by
816+
its label selector.
817+
release: v1.19
818+
file: test/e2e/apimachinery/events.go
812819
- testname: Event resource lifecycle
813820
codename: '[sig-api-machinery] Events should ensure that an event can be fetched,
814821
patched, deleted, and listed [Conformance]'

test/e2e/apimachinery/events.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,13 @@ var _ = ginkgo.Describe("[sig-api-machinery] Events", func() {
123123
framework.ExpectEqual(foundCreatedEvent, false, "should not have found test event after deletion")
124124
})
125125

126-
ginkgo.It("should delete a collection of events", func() {
126+
/*
127+
Release : v1.19
128+
Testname: Event, delete a collection
129+
Description: A set of events is created with a label selector which MUST be found when listed.
130+
The set of events is deleted and MUST NOT show up when listed by its label selector.
131+
*/
132+
framework.ConformanceIt("should delete a collection of events", func() {
127133
eventTestNames := []string{"test-event-1", "test-event-2", "test-event-3"}
128134

129135
ginkgo.By("Create set of events")

0 commit comments

Comments
 (0)