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 test_ids for the tests (kubevirt#1441)
Signed-off-by: Yan Du <[email protected]>
- Loading branch information
Showing
5 changed files
with
27 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ var _ = Describe("Problematic server responses", func() { | |
}, | ||
Entry("[rfe_id:4109][test_id:4110][crit:low][vendor:[email protected]][level:component] Should succeed even if HEAD forbidden", "/forbidden-HEAD/cirros-qcow2.img"), | ||
Entry("[rfe_id:4191][test_id:4193][crit:low][vendor:[email protected]][level:component] Should succeed even on a flaky server", "/flaky/cirros-qcow2.img"), | ||
Entry("Should succeed even if Accept-Ranges doesn't exist", "/no-accept-ranges/cirros-qcow2.img"), | ||
Entry("[rfe_id:4326][test_id:5076][crit:low][vendor:[email protected]][level:component] Should succeed even if Accept-Ranges doesn't exist", "/no-accept-ranges/cirros-qcow2.img"), | ||
) | ||
|
||
AfterEach(func() { | ||
|
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 |
---|---|---|
|
@@ -128,9 +128,9 @@ var _ = Describe("[rfe_id:1347][crit:high][vendor:[email protected]][level:compo | |
} | ||
} | ||
}, | ||
table.Entry("CDIConfigs", "cdiconfigs.cdi.kubevirt.io"), | ||
table.Entry("CDIs", "cdis.cdi.kubevirt.io"), | ||
table.Entry("Datavolumes", "datavolumes.cdi.kubevirt.io"), | ||
table.Entry("[test_id:5056]CDIConfigs", "cdiconfigs.cdi.kubevirt.io"), | ||
table.Entry("[test_id:5057]CDIs", "cdis.cdi.kubevirt.io"), | ||
table.Entry("[test_id:5056]Datavolumes", "datavolumes.cdi.kubevirt.io"), | ||
) | ||
}) | ||
}) | ||
|
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 |
---|---|---|
|
@@ -672,7 +672,7 @@ var _ = Describe("[vendor:[email protected]][level:component]DataVolume tests", | |
Message: "Import Complete", | ||
Reason: "Completed", | ||
}}), | ||
table.Entry("succeed creating import dv from VDDK source", dataVolumeTestArguments{ | ||
table.Entry("[test_id:5077]succeed creating import dv from VDDK source", dataVolumeTestArguments{ | ||
name: "dv-import-vddk", | ||
size: "1Gi", | ||
url: vcenterURL, | ||
|
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 |
---|---|---|
|
@@ -158,11 +158,11 @@ var _ = Describe("[rfe_id:138][crit:high][vendor:[email protected]][level:compon | |
} | ||
}, | ||
Entry("[test_id:1368]succeed given a valid token", uploadImage, true, http.StatusOK), | ||
Entry("succeed given a valid token (async)", uploadImageAsync, true, http.StatusOK), | ||
Entry("succeed given a valid token (alpha)", uploadImageAlpha, true, http.StatusOK), | ||
Entry("succeed given a valid token (async alpha)", uploadImageAsyncAlpha, true, http.StatusOK), | ||
Entry("succeed given a valid token (form)", uploadForm, true, http.StatusOK), | ||
Entry("succeed given a valid token (form async)", uploadFormAsync, true, http.StatusOK), | ||
Entry("[test_id:5078]succeed given a valid token (async)", uploadImageAsync, true, http.StatusOK), | ||
Entry("[test_id:5079]succeed given a valid token (alpha)", uploadImageAlpha, true, http.StatusOK), | ||
Entry("[test_id:5080]succeed given a valid token (async alpha)", uploadImageAsyncAlpha, true, http.StatusOK), | ||
Entry("[test_id:5081]succeed given a valid token (form)", uploadForm, true, http.StatusOK), | ||
Entry("[test_id:5082]succeed given a valid token (form async)", uploadFormAsync, true, http.StatusOK), | ||
Entry("[posneg:negative][test_id:1369]fail given an invalid token", uploadImage, false, http.StatusUnauthorized), | ||
) | ||
|
||
|