From f7d02f4d25ace76bddea0786a062b1daadb0338f Mon Sep 17 00:00:00 2001 From: Stephen Heywood Date: Wed, 26 May 2021 15:10:46 +1200 Subject: [PATCH] Promote ReplicaSet Status e2e test to Conformance --- test/conformance/testdata/conformance.yaml | 7 +++++++ test/e2e/apps/replica_set.go | 8 +++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index e840ff9ac8d..528536bb6e5 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -786,6 +786,13 @@ the Pod is running. Pod SHOULD send a valid response when queried. release: v1.9 file: test/e2e/apps/replica_set.go +- testname: ReplicaSet, status sub-resource + codename: '[sig-apps] ReplicaSet should validate Replicaset Status endpoints [Conformance]' + description: Create a ReplicaSet resource which MUST succeed. Attempt to read, update + and patch its status sub-resource; all mutating sub-resource operations MUST be + visible to subsequent reads. + release: v1.22 + file: test/e2e/apps/replica_set.go - testname: Replication Controller, adopt matching pods codename: '[sig-apps] ReplicationController should adopt matching pods on creation [Conformance]' diff --git a/test/e2e/apps/replica_set.go b/test/e2e/apps/replica_set.go index 60c17b2b647..3df8e2f89c3 100644 --- a/test/e2e/apps/replica_set.go +++ b/test/e2e/apps/replica_set.go @@ -158,7 +158,13 @@ var _ = SIGDescribe("ReplicaSet", func() { }) - ginkgo.It("should validate Replicaset Status endpoints", func() { + /* Release: v1.22 + Testname: ReplicaSet, status sub-resource + Description: Create a ReplicaSet resource which MUST succeed. + Attempt to read, update and patch its status sub-resource; all + mutating sub-resource operations MUST be visible to subsequent reads. + */ + framework.ConformanceIt("should validate Replicaset Status endpoints", func() { testRSStatus(f) }) })