X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=robot-systest%2Ftestsuite%2Fbasic_17-delete_vnf_package.robot;h=253665cddf3aaf3973fac4c7e964ed1e01044914;hb=9f608b166915ad30c4324e9a3a1f82ce6054785f;hp=0cd13f81d099cb7f4289911ac82d1b535d29147f;hpb=499c86752f877c0007a0e4dde69c213d828047d0;p=osm%2Ftests.git diff --git a/robot-systest/testsuite/basic_17-delete_vnf_package.robot b/robot-systest/testsuite/basic_17-delete_vnf_package.robot index 0cd13f8..253665c 100644 --- a/robot-systest/testsuite/basic_17-delete_vnf_package.robot +++ b/robot-systest/testsuite/basic_17-delete_vnf_package.robot @@ -1,3 +1,4 @@ +*** Comments *** # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -10,57 +11,58 @@ # See the License for the specific language governing permissions and # limitations under the License. + *** Settings *** +Documentation [BASIC-17] Delete VNF Package Before NS Package. + Library OperatingSystem Library String Library Collections Library Process Library SSHLibrary -Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot -Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot +Resource ../lib/vnfd_lib.resource +Resource ../lib/nsd_lib.resource -Variables %{ROBOT_DEVOPS_FOLDER}/resources/basic_17-delete_vnf_package_data.py +Test Tags basic_17 cluster_main daily regression azure Suite Teardown Run Keyword And Ignore Error Suite Cleanup -*** Test Cases *** -Create VNF Package - [Tags] hackfest_basic sanity regression +*** Variables *** +# NS and VNF descriptor package folder and ids +${VNFD_PKG} hackfest_basic_vnf +${VNFD_NAME} hackfest_basic-vnf +${NSD_PKG} hackfest_basic_ns +${NSD_NAME} hackfest_basic-ns - Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' +*** Test Cases *** +Create VNF Package + [Documentation] Upload VNF package for the testsuite. + Create VNFD '%{PACKAGES_FOLDER}/${VNFD_PKG}' Create NS Package - [Tags] hackfest_basic sanity regression - - Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' - + [Documentation] Upload NS package for the testsuite. + Create NSD '%{PACKAGES_FOLDER}/${NSD_PKG}' Cannot Delete VNF Package - [Tags] hackfest_basic sanity regression cleanup - - Assert Failure Delete VNFD ${vnfd_name} - + [Documentation] Assert that the VNF package cannot be deleted without deleting the corresponding NS package using it. + Assert Failure Delete VNFD ${VNFD_NAME} Delete NS Package - [Tags] hackfest_basic sanity regression cleanup - - Delete NSD ${nsd_name} - + [Documentation] Delete NS package from OSM. + [Tags] cleanup + Delete NSD ${NSD_NAME} Delete VNF Package - [Tags] hackfest_basic sanity regression cleanup - - Delete VNFD ${vnfd_name} + [Documentation] Delete VNF package from OSM. + [Tags] cleanup + Delete VNFD ${VNFD_NAME} *** Keywords *** Suite Cleanup - [Documentation] Test Suit Cleanup: Deleting NS and VNF packages - - Run Keyword If Any Tests Failed Delete NSD ${nsd_name} - Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name} - - + [Documentation] Test Suit Cleanup: Deleting NS and VNF packages + Run Keyword If Any Tests Failed Delete NSD ${NSD_NAME} + Run Keyword If Any Tests Failed Delete VNFD ${VNFD_NAME}