Promote VolumeAttachmentStatus e2e test to Conformance

This commit is contained in:
Stephen Heywood 2024-09-19 10:20:47 +12:00
parent 283ff763b3
commit 70f493ab9f
2 changed files with 22 additions and 1 deletions

View File

@ -3592,6 +3592,17 @@
was configured with a subpath.
release: v1.12
file: test/e2e/storage/subpath.go
- testname: VolumeAttachment, apply changes to a volumeattachment status
codename: '[sig-storage] VolumeAttachment Conformance should apply changes to a
volumeattachment status [Conformance]'
description: Creating an initial VolumeAttachment MUST succeed. Patching a VolumeAttachment
MUST succeed with its new label found. Reading VolumeAttachment status MUST succeed
with its attached status being false. Patching the VolumeAttachment status MUST
succeed with its attached status being true. Updating the VolumeAttachment status
MUST succeed with its attached status being false. Deleting a VolumeAttachment
MUST succeed and it MUST be confirmed.
release: v1.32
file: test/e2e/storage/volume_attachment.go
- testname: VolumeAttachment, lifecycle
codename: '[sig-storage] VolumeAttachment Conformance should run through the lifecycle
of a VolumeAttachment [Conformance]'

View File

@ -167,7 +167,17 @@ var _ = utils.SIGDescribe("VolumeAttachment", func() {
framework.ExpectNoError(err, "Timeout while waiting to confirm deletion of all VolumeAttachments")
})
ginkgo.It("should apply changes to a volumeattachment status", func(ctx context.Context) {
/*
Release: v1.32
Testname: VolumeAttachment, apply changes to a volumeattachment status
Description: Creating an initial VolumeAttachment MUST succeed. Patching a VolumeAttachment
MUST succeed with its new label found. Reading VolumeAttachment status MUST succeed
with its attached status being false. Patching the VolumeAttachment status MUST
succeed with its attached status being true. Updating the VolumeAttachment status
MUST succeed with its attached status being false. Deleting a VolumeAttachment
MUST succeed and it MUST be confirmed.
*/
framework.ConformanceIt("should apply changes to a volumeattachment status", func(ctx context.Context) {
vaClient := f.ClientSet.StorageV1().VolumeAttachments()