diff options
Diffstat (limited to 'openecomp-bdd/features/Onboarding')
10 files changed, 0 insertions, 382 deletions
diff --git a/openecomp-bdd/features/Onboarding/ArchiveItem/ArchiveVlm.feature b/openecomp-bdd/features/Onboarding/ArchiveItem/ArchiveVlm.feature deleted file mode 100644 index f4b524b372..0000000000 --- a/openecomp-bdd/features/Onboarding/ArchiveItem/ArchiveVlm.feature +++ /dev/null @@ -1,42 +0,0 @@ -Feature: Archive and Restore VLM - - Scenario: Archive VLM with Draft - When I want to create a VLM - Then I want to create input data - Then I want to update the input property "name" with a random value - Then I want to update the input property "type" with value "Universal" - Then I want to create for path "/vendor-license-models/{item.id}/versions/{item.versionId}/license-key-groups" with the input data from the context - Then I want to commit this Item - - Then I want to archive this item - Then I want to list Archived VLMs - Then I want to check that item exits in response - - Scenario: Archive Already Archived VLM - Negative - When I want to create a VLM - Then I want to create input data - Then I want to update the input property "name" with a random value - Then I want to update the input property "type" with value "Universal" - Then I want to create for path "/vendor-license-models/{item.id}/versions/{item.versionId}/license-key-groups" with the input data from the context - Then I want to submit this VLM - - Then I want to archive this item - Then I want to list Archived VLMs - Then I want to check that item exits in response - Then I want the following to fail with error message "Archive item failed, item {item.id} is already Archived" - Then I want to archive this item - - - Scenario: Archive Certified VLM - When I want to create a VLM - Then I want to create input data - Then I want to update the input property "name" with a random value - Then I want to update the input property "type" with value "Universal" - Then I want to create for path "/vendor-license-models/{item.id}/versions/{item.versionId}/license-key-groups" with the input data from the context - Then I want to submit this VLM - - Then I want to archive this item - Then I want to list Archived VLMs - Then I want to check that item exits in response - Then I want to list Active VLMs - Then I want to check that item does not exits in response diff --git a/openecomp-bdd/features/Onboarding/ArchiveItem/ArchiveVsp.feature b/openecomp-bdd/features/Onboarding/ArchiveItem/ArchiveVsp.feature deleted file mode 100644 index 2cc057469f..0000000000 --- a/openecomp-bdd/features/Onboarding/ArchiveItem/ArchiveVsp.feature +++ /dev/null @@ -1,58 +0,0 @@ -Feature: Archive and Restore VSP - - Background: Init - Given I want to create a VLM - - Scenario: Archive VSP with Draft - When I want to create a VSP with onboarding type "NetworkPackage" - When I want to upload a NetworkPackage for this VSP from path "resources/uploads/BASE_MUX.zip" - And I want to process the NetworkPackage file for this VSP - - Then I want to commit this Item - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 - Then I want to make sure this Item has status "Draft" - - Then I want to archive this item - Then I want to list Archived VSPs - Then I want to check that item exits in response - Then I want to list Active VSPs - Then I want to check that item does not exits in response - - Scenario: Archive Already Archived VSP - Negative - When I want to create a VSP with onboarding type "NetworkPackage" - When I want to upload a NetworkPackage for this VSP from path "resources/uploads/BASE_MUX.zip" - And I want to process the NetworkPackage file for this VSP - Then I want to commit this Item - - Then I want to archive this item - Then I want to list Archived VSPs - Then I want to check that item exits in response - Then I want to list Active VSPs - Then I want to check that item does not exits in response - - Then I want the following to fail with error message "Archive item failed, item {item.id} is already Archived" - Then I want to archive this item - - - Scenario: Archive Certified VSP - When I want to create a VSP with onboarding type "NetworkPackage" - Then I want to make sure this Item has status "Draft" - When I want to upload a NetworkPackage for this VSP from path "resources/uploads/BASE_MUX.zip" - And I want to process the NetworkPackage file for this VSP - - Then I want to commit this Item - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 - Then I want to make sure this Item has status "Draft" - - When I want to submit this VSP - Then I want to make sure this Item has status "Certified" - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 - - Then I want to archive this item - Then I want to list Archived VSPs - Then I want to check that item exits in response - Then I want to list Active VSPs - Then I want to check that item does not exits in response
\ No newline at end of file diff --git a/openecomp-bdd/features/Onboarding/ArchiveItem/FilterArchivedVSPpackage.feature b/openecomp-bdd/features/Onboarding/ArchiveItem/FilterArchivedVSPpackage.feature deleted file mode 100644 index f68eece6a8..0000000000 --- a/openecomp-bdd/features/Onboarding/ArchiveItem/FilterArchivedVSPpackage.feature +++ /dev/null @@ -1,40 +0,0 @@ -Feature: Filter Archived VSP Package Details - - Background: Init - Given I want to create a VLM - - Scenario: Active VSP Package - When I want to create a VSP with onboarding type "NetworkPackage" - Then I want to make sure this Item has status "Draft" - - When I want to upload a NetworkPackage for this VSP from path "resources/uploads/BASE_MUX.zip" - And I want to process the NetworkPackage file for this VSP - Then I want to commit this Item - Then I want to submit this VSP - Then I want to package this VSP - Then I want to make sure this Item has status "Certified" - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 - - Then I want to list Active VSPs packages - Then I want to check that VSP package exits in response - - - Scenario: Archived VSP Package - When I want to create a VSP with onboarding type "NetworkPackage" - Then I want to make sure this Item has status "Draft" - - When I want to upload a NetworkPackage for this VSP from path "resources/uploads/BASE_MUX.zip" - And I want to process the NetworkPackage file for this VSP - Then I want to commit this Item - Then I want to submit this VSP - Then I want to package this VSP - Then I want to make sure this Item has status "Certified" - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 - Then I want to archive this item - - Then I want to list Archived VSPs packages - Then I want to check that VSP package exits in response - - diff --git a/openecomp-bdd/features/Onboarding/DeleteItem/DeleteVLMCertified.feature b/openecomp-bdd/features/Onboarding/DeleteItem/DeleteVLMCertified.feature deleted file mode 100644 index 4eb31aeafe..0000000000 --- a/openecomp-bdd/features/Onboarding/DeleteItem/DeleteVLMCertified.feature +++ /dev/null @@ -1,24 +0,0 @@ -Feature: Delete VLM Certified - - Scenario: Delete VLM that was certified - negative - When I want to create a VLM - Then I want to create input data - Then I want to update the input property "name" with a random value - Then I want to update the input property "type" with value "Universal" - Then I want to create for path "/vendor-license-models/{item.id}/versions/{item.versionId}/license-key-groups" with the input data from the context - Then I want to copy to property "lastProcessId" from response data path "value" - Then I want to commit this Item - - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 - Then I want to make sure this Item has status "Draft" - When I want to submit this VLM - Then I want to make sure this Item has status "Certified" - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 - - Then I want the following to fail with error message "VLM has been certified and cannot be deleted." - Then I want to delete this VLM - - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 diff --git a/openecomp-bdd/features/Onboarding/DeleteItem/DeleteVLMDraft.feature b/openecomp-bdd/features/Onboarding/DeleteItem/DeleteVLMDraft.feature deleted file mode 100644 index ad8bec50d3..0000000000 --- a/openecomp-bdd/features/Onboarding/DeleteItem/DeleteVLMDraft.feature +++ /dev/null @@ -1,24 +0,0 @@ -Feature: Delete VLM - -Scenario: Delete VLM with only draft - When I want to create a VLM - Then I want to create input data - Then I want to update the input property "name" with a random value - Then I want to update the input property "type" with value "Universal" - Then I want to create for path "/vendor-license-models/{item.id}/versions/{item.versionId}/license-key-groups" with the input data from the context - Then I want to copy to property "lastProcessId" from response data path "value" - Then I want to commit this Item - - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 - Then I want to make sure this Item has status "Draft" - - Then I want to delete this VLM - - Then I want the following to fail with error code "ENTITY_NOT_FOUND" - Then I want to get path "/items/{item.id}/versions" - - - - - diff --git a/openecomp-bdd/features/Onboarding/DeleteItem/DeleteVSPCertified.feature b/openecomp-bdd/features/Onboarding/DeleteItem/DeleteVSPCertified.feature deleted file mode 100644 index 35a506a010..0000000000 --- a/openecomp-bdd/features/Onboarding/DeleteItem/DeleteVSPCertified.feature +++ /dev/null @@ -1,29 +0,0 @@ -Feature: Delete VSP Draft - - Background: Init - Given I want to create a VLM - - Scenario: Delete VSP with only draft - When I want to create a VSP with onboarding type "NetworkPackage" - Then I want to make sure this Item has status "Draft" - - When I want to upload a NetworkPackage for this VSP from path "resources/uploads/BASE_MUX.zip" - And I want to process the NetworkPackage file for this VSP - - Then I want to commit this Item - - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 - Then I want to make sure this Item has status "Draft" - - When I want to submit this VSP - Then I want to make sure this Item has status "Certified" - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 - - Then I want the following to fail with error message "VSP has been certified and cannot be deleted." - Then I want to delete this VSP - - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 - diff --git a/openecomp-bdd/features/Onboarding/DeleteItem/DeleteVSPDraft.feature b/openecomp-bdd/features/Onboarding/DeleteItem/DeleteVSPDraft.feature deleted file mode 100644 index 5248131618..0000000000 --- a/openecomp-bdd/features/Onboarding/DeleteItem/DeleteVSPDraft.feature +++ /dev/null @@ -1,22 +0,0 @@ -Feature: Delete VSP Certified - - Background: Init - Given I want to create a VLM - - Scenario: Delete VSP with certified - negative - When I want to create a VSP with onboarding type "NetworkPackage" - Then I want to make sure this Item has status "Draft" - - When I want to upload a NetworkPackage for this VSP from path "resources/uploads/BASE_MUX.zip" - And I want to process the NetworkPackage file for this VSP - - Then I want to commit this Item - - Then I want to get path "/items/{item.id}/versions" - Then I want to check property "listCount" for value 1 - Then I want to make sure this Item has status "Draft" - - Then I want to delete this VSP - - Then I want the following to fail with error code "ENTITY_NOT_FOUND" - Then I want to get path "/items/{item.id}/versions" diff --git a/openecomp-bdd/features/Onboarding/ListItems/ListItemsFilters.feature b/openecomp-bdd/features/Onboarding/ListItems/ListItemsFilters.feature deleted file mode 100644 index 8b0a23213d..0000000000 --- a/openecomp-bdd/features/Onboarding/ListItems/ListItemsFilters.feature +++ /dev/null @@ -1,86 +0,0 @@ -Feature: List items with various filters - - Background: Init - create various items in order to test list items filters - Given I want to set the user to "cs0008" - Given I want to create a VLM - Then I want to copy to property "noPermissionDraftVlmId" from response data path "itemId" - - Given I want to create a VLM - Then I want to copy to property "noPermissionCertifiedVlmId" from response data path "itemId" - And I want to submit this VLM - - Given I want to set the user to "mb1001" - - Given I want to create a VLM - Then I want to copy to property "draftVlmId" from response data path "itemId" - - Given I want to create a VLM - Then I want to copy to property "certifiedVlmId" from response data path "itemId" - And I want to submit this VLM - - Given I want to create a VLM - Then I want to copy to property "archivedDraftVlmId" from response data path "itemId" - And I want to archive this item - - Given I want to create a VLM - Then I want to copy to property "archivedCertifiedVlmId" from response data path "itemId" - And I want to submit this VLM - And I want to archive this item - - Given I want to create a VSP with onboarding type "NetworkPackage" - Then I want to copy to property "npDraftVspId" from response data path "itemId" - - Given I want to create a VSP with onboarding type "Manual" - Then I want to copy to property "manualDraftVspId" from response data path "itemId" - - Scenario: List workspace items - active, draft, editable by the user - When I want to get path "/items?itemStatus=ACTIVE&versionStatus=Draft&permission=Owner,Contributor" - - Then I want to check that element in the response list with "id" equals to value of saved property "draftVlmId" exists - And I want to check that element in the response list with "id" equals to value of saved property "npDraftVspId" exists - And I want to check that element in the response list with "id" equals to value of saved property "manualDraftVspId" exists - - But I want to check that element in the response list with "id" equals to value of saved property "noPermissionDraftVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "noPermissionCertifiedVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "certifiedVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "archivedDraftVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "archivedCertifiedVlmId" does not exist - - Scenario: List catalog items - active, certified - When I want to get path "/items?itemStatus=ACTIVE&versionStatus=Certified" - - Then I want to check that element in the response list with "id" equals to value of saved property "noPermissionCertifiedVlmId" exists - And I want to check that element in the response list with "id" equals to value of saved property "certifiedVlmId" exists - - But I want to check that element in the response list with "id" equals to value of saved property "draftVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "npDraftVspId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "manualDraftVspId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "noPermissionDraftVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "archivedDraftVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "archivedCertifiedVlmId" does not exist - - Scenario: List archived certified items - When I want to get path "/items?itemStatus=ARCHIVED&versionStatus=Certified" - - Then I want to check that element in the response list with "id" equals to value of saved property "archivedCertifiedVlmId" exists - - But I want to check that element in the response list with "id" equals to value of saved property "archivedDraftVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "noPermissionCertifiedVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "certifiedVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "draftVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "npDraftVspId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "manualDraftVspId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "noPermissionDraftVlmId" does not exist - - Scenario: List only active draft manual vsps + vlms owned by the user - When I want to get path "/items?itemStatus=ACTIVE&versionStatus=Draft&onboardingMethod=Manual&permission=Owner" - - Then I want to check that element in the response list with "id" equals to value of saved property "draftVlmId" exists - And I want to check that element in the response list with "id" equals to value of saved property "manualDraftVspId" exists - - But I want to check that element in the response list with "id" equals to value of saved property "npDraftVspId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "noPermissionDraftVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "noPermissionCertifiedVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "certifiedVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "archivedDraftVlmId" does not exist - And I want to check that element in the response list with "id" equals to value of saved property "archivedCertifiedVlmId" does not exist diff --git a/openecomp-bdd/features/Onboarding/ListItems/ListItemsFiltersFailures.feature b/openecomp-bdd/features/Onboarding/ListItems/ListItemsFiltersFailures.feature deleted file mode 100644 index 53807af47a..0000000000 --- a/openecomp-bdd/features/Onboarding/ListItems/ListItemsFiltersFailures.feature +++ /dev/null @@ -1,24 +0,0 @@ -Feature: List items with incorrect filter values - - Scenario: Filter by incorrect item type - negative - When I want the following to fail with error code "GENERAL_ERROR_REST_ID" - Then I want to get path "/items?itemType=bsp" - - Scenario: Filter by incorrect permission - negative - When I want the following to fail with error code "GENERAL_ERROR_REST_ID" - Then I want to get path "/items?permission=Contributer" - - Scenario: Filter by incorrect version status - negative - When I want the following to fail with error code "GENERAL_ERROR_REST_ID" - Then I want to get path "/items?versionStatus=Draftt" - - Scenario: Filter by incorrect item status - negative - When I want the following to fail with error code "GENERAL_ERROR_REST_ID" - Then I want to get path "/items?itemStatus=active" - - Scenario: Filter by incorrect onboarding method - negative - When I want the following to fail with error code "GENERAL_ERROR_REST_ID" - Then I want to get path "/items?onboardingMethod=heat" - - Then I want to print the context data - diff --git a/openecomp-bdd/features/Onboarding/UniqueValue.feature b/openecomp-bdd/features/Onboarding/UniqueValue.feature deleted file mode 100644 index 31e41b9931..0000000000 --- a/openecomp-bdd/features/Onboarding/UniqueValue.feature +++ /dev/null @@ -1,33 +0,0 @@ -Feature: Unique value - - Scenario: List unique types - When I want to get path "/unique-types" - Then I want to check property "listCount" for value 2 - And I want to check property "results[0]" for value "VspName" - And I want to check property "results[1]" for value "VlmName" - - Scenario: Get unique value - non existing type (negative) - Given I want the following to fail with error code "UNIQUE_TYPE_NOT_FOUND" - When I want to get path "/unique-types/nonExistingType/values/someValue" - - Scenario: Get unique value - non existing VLM name - When I want to get path "/unique-types/VlmName/values/nonExistingName" - Then I want to check property "occupied" to be false - - Scenario: Get unique value - non existing VSP name - When I want to get path "/unique-types/VspName/values/nonExistingName" - Then I want to check property "occupied" to be false - - Scenario: Get unique value - existing VLM name - Given I want to create a VLM - - When I want to get path "/unique-types/VlmName/values/{vlm.name}" - Then I want to check property "occupied" to be true - - Scenario: Get unique value - existing VSP name - Given I want to create a VLM - And I want to create a VSP with onboarding type "NetworkPackage" - And I want to get path "/vendor-software-products/{item.id}/versions/{item.versionId}" - - When I want to get path "/unique-types/VspName/values/{responseData.name}" - Then I want to check property "occupied" to be true
\ No newline at end of file |