forked from kubevirt/containerized-data-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add polarion rfes and ids to webhook rendering
Signed-off-by: Kevin Alon Goldblatt <[email protected]>
- Loading branch information
Showing
3 changed files
with
33 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2134,7 +2134,7 @@ var _ = Describe("[vendor:[email protected]][level:component]DataVolume tests", | |
}, timeout, pollingInterval).Should(BeTrue()) | ||
}, | ||
Entry("[test_id:5912] (controller rendering)", "false", verifyControllerRenderingEvent), | ||
Entry("[test_id:XXXX] (webhook rendering)", Serial, "true", verifyWebhookRenderingEvent), | ||
Entry("[rfe_id:10985][crit:high][test_id:11045] (webhook rendering)", Serial, "true", verifyWebhookRenderingEvent), | ||
) | ||
|
||
DescribeTable("Import fails when no default storage class, and recovers when default is set", func(webhookRenderingLabel string, verifyEvent func(string) bool) { | ||
|
@@ -2183,7 +2183,7 @@ var _ = Describe("[vendor:[email protected]][level:component]DataVolume tests", | |
Expect(err).ToNot(HaveOccurred()) | ||
}, | ||
Entry("[test_id:8383] (controller rendering)", "false", verifyControllerRenderingNoDefaultScEvent), | ||
Entry("[test_id:XXXX] (webhook rendering)", Serial, "true", verifyWebhookRenderingEvent), | ||
Entry("[rfe_id:10985][crit:high][test_id:11046] (webhook rendering)", Serial, "true", verifyWebhookRenderingEvent), | ||
) | ||
|
||
DescribeTable("Import recovers when user adds accessModes to profile", func(webhookRenderingLabel string, verifyEvent func(string) bool) { | ||
|
@@ -2238,7 +2238,7 @@ var _ = Describe("[vendor:[email protected]][level:component]DataVolume tests", | |
updateStorageProfileSpec(f.CrClient, storageProfileName, *originalProfileSpec) | ||
}, | ||
Entry("[test_id:5913] (controller rendering)", "false", verifyControllerRenderingEvent), | ||
Entry("[test_id:XXXX] (webhook rendering)", Serial, "true", verifyWebhookRenderingEvent), | ||
Entry("[rfe_id:10985][crit:high][test_id:11047] (webhook rendering)", Serial, "true", verifyWebhookRenderingEvent), | ||
) | ||
|
||
It("[test_id:6483]Import pod should not have size corrected on block", func() { | ||
|
@@ -2656,9 +2656,9 @@ var _ = Describe("[vendor:[email protected]][level:component]DataVolume tests", | |
Entry("[test_id:9922]the storage class is created (controller rendering)", "false", testScName, verifyControllerRenderingEventAndConditions, createStorageClass), | ||
Entry("[test_id:9924]PV with the SC name is created (controller rendering)", "false", testScName, verifyControllerRenderingEventAndConditions, createPV), | ||
Entry("[test_id:9925]PV with the SC name (\"\" blank) is created (controller rendering)", "false", "", verifyControllerRenderingEventAndConditions, createPV), | ||
Entry("[test_id:XXXX]the storage class is created (webhook rendering)", Serial, "true", testScName, verifyWebhookRenderingEventAndConditions, createStorageClass), | ||
Entry("[test_id:XXXX]PV with the SC name is created (webhook rendering)", Serial, "true", testScName, verifyWebhookRenderingEventAndConditions, createPV), | ||
Entry("[test_id:XXXX]PV with the SC name (\"\" blank) is created (webhook rendering)", Serial, "true", "", verifyWebhookRenderingEventAndConditions, createPV), | ||
Entry("[rfe_id:10985][crit:high][test_id:11049]the storage class is created (webhook rendering)", Serial, "true", testScName, verifyWebhookRenderingEventAndConditions, createStorageClass), | ||
Entry("[rfe_id:10985][crit:high][test_id:11050]PV with the SC name is created (webhook rendering)", Serial, "true", testScName, verifyWebhookRenderingEventAndConditions, createPV), | ||
Entry("[rfe_id:10985][crit:high][test_id:11051]PV with the SC name (\"\" blank) is created (webhook rendering)", Serial, "true", "", verifyWebhookRenderingEventAndConditions, createPV), | ||
) | ||
|
||
newDataVolumeWithStorageSpec := func(scName string) *cdiv1.DataVolume { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters