mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-25 04:33:26 +00:00
Merge pull request #89753 from ii/promote-event-resource-lifecycle-test
Promote Event resource lifecycle test +5 test endpoint coverage
This commit is contained in:
commit
c12aeb2b77
8
test/conformance/testdata/conformance.yaml
vendored
8
test/conformance/testdata/conformance.yaml
vendored
@ -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]'
|
||||
|
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user