Merge pull request #118001 from ii/promote-apiresources-test

Promote e2e test for APIResources endpoints + 12 Endpoints
This commit is contained in:
Kubernetes Prow Robot 2023-05-23 13:22:48 -07:00 committed by GitHub
commit 02acacba43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View File

@ -312,6 +312,14 @@
definitions MUST be published for custom resource definitions. definitions MUST be published for custom resource definitions.
release: v1.16 release: v1.16
file: test/e2e/apimachinery/crd_publish_openapi.go file: test/e2e/apimachinery/crd_publish_openapi.go
- testname: Discovery, confirm the groupVerion and a resourcefrom each apiGroup
codename: '[sig-api-machinery] Discovery should locate the groupVersion and a resource
within each APIGroup [Conformance]'
description: A resourceList MUST be found for each apiGroup that is retrieved. For
each apiGroup the groupVersion MUST equal the groupVersion as reported by the
schema. From each resourceList a valid resource MUST be found.
release: v1.28
file: test/e2e/apimachinery/discovery.go
- testname: Discovery, confirm the PreferredVersion for each api group - testname: Discovery, confirm the PreferredVersion for each api group
codename: '[sig-api-machinery] Discovery should validate PreferredVersion for each codename: '[sig-api-machinery] Discovery should validate PreferredVersion for each
APIGroup [Conformance]' APIGroup [Conformance]'

View File

@ -159,7 +159,14 @@ var _ = SIGDescribe("Discovery", func() {
} }
}) })
ginkgo.It("should locate the groupVersion and a resource within each APIGroup", func(ctx context.Context) { /*
Release: v1.28
Testname: Discovery, confirm the groupVerion and a resourcefrom each apiGroup
Description: A resourceList MUST be found for each apiGroup that is retrieved.
For each apiGroup the groupVersion MUST equal the groupVersion as reported by
the schema. From each resourceList a valid resource MUST be found.
*/
framework.ConformanceIt("should locate the groupVersion and a resource within each APIGroup", func(ctx context.Context) {
tests := []struct { tests := []struct {
apiBasePath string apiBasePath string