X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=robot-systest%2Ftestsuite%2Fbasic_09-manual_vdu_scaling.robot;h=1f76c71c8be97b02bd816b429f0fe9a2ff79a889;hb=d77060766d8e8aa3cd277324b0b6f732555d2007;hp=7989d9896bebf912d837f4c031be1c9f7520845a;hpb=576487e73575ad72071aa5680b8d17b2d8ff8027;p=osm%2Ftests.git diff --git a/robot-systest/testsuite/basic_09-manual_vdu_scaling.robot b/robot-systest/testsuite/basic_09-manual_vdu_scaling.robot index 7989d98..1f76c71 100644 --- a/robot-systest/testsuite/basic_09-manual_vdu_scaling.robot +++ b/robot-systest/testsuite/basic_09-manual_vdu_scaling.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,131 +11,132 @@ # See the License for the specific language governing permissions and # limitations under the License. + *** Settings *** -Documentation [BASIC-09] Manual VNF/VDU Scaling. +Documentation [BASIC-09] Manual VNF/VDU Scaling. Library OperatingSystem Library String Library Collections -Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot -Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot -Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot -Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot +Resource ../lib/vnfd_lib.resource +Resource ../lib/nsd_lib.resource +Resource ../lib/ns_lib.resource +Resource ../lib/ns_operation_lib.resource +Resource ../lib/ssh_lib.resource -Force Tags basic_09 cluster_main daily regression +Test Tags basic_09 cluster_main daily regression azure Suite Teardown Run Keyword And Ignore Error Suite Cleanup *** Variables *** # NS and VNF descriptor package folder and ids -${vnfd_pkg} hackfest_basic_metrics_vnf -${vnfd_name} hackfest_basic_metrics-vnf -${nsd_pkg} hackfest_basic_metrics_ns -${nsd_name} hackfest_basic-ns-metrics +${VNFD_PKG} hackfest_basic_metrics_vnf +${VNFD_NAME} hackfest_basic_metrics-vnf +${NSD_PKG} hackfest_basic_metrics_ns +${NSD_NAME} hackfest_basic-ns-metrics # NS instance name and configuration -${ns_name} basic_09_manual_scaling_test -${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } -${scaling_group} vdu_autoscale -${vnf_member_index} 1 +${NS_NAME} basic_09_manual_scaling_test +${NS_CONFIG} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } +${SCALING_GROUP} vdu_autoscale +${VNF_MEMBER_INDEX} vnf # SSH public key file -${publickey} %{HOME}/.ssh/id_rsa.pub +${PUBLICKEY} %{HOME}/.ssh/id_rsa.pub *** Test Cases *** Create Scaling VNF Descriptor - - Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' - + [Documentation] Upload VNF package for the testsuite. + [Tags] prepare + Create VNFD '%{PACKAGES_FOLDER}/${VNFD_PKG}' Create Scaling NS Descriptor - - Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' - + [Documentation] Upload NS package for the testsuite. + [Tags] prepare + Create NSD '%{PACKAGES_FOLDER}/${NSD_PKG}' Instantiate Scaling Network Service + [Documentation] Instantiate NS for the testsuite. + [Tags] prepare + ${id}= Create Network Service ${NSD_NAME} %{VIM_TARGET} ${NS_NAME} ${NS_CONFIG} ${PUBLICKEY} + Log ${id} - ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} - Set Suite Variable ${ns_id} ${id} - +Get Ns Id + [Documentation] Retrieve NS instance id to be used later on. + [Tags] verify + ${id}= Get Ns Id ${NS_NAME} + Set Suite Variable ${NS_ID} ${id} Get Vnf Id - - Variable Should Exist ${ns_id} msg=Network service instance is not available - @{vnfr_list}= Get Ns Vnfr Ids ${ns_id} - Log List ${vnfr_list} - Set Suite Variable ${vnf_id} ${vnfr_list}[0] - + [Documentation] Retrieve VNF instance id to be used later on. + [Tags] verify + Variable Should Exist ${NS_ID} msg=Network service instance is not available + @{vnfr_list}= Get Ns Vnfr Ids ${NS_ID} + Log List ${vnfr_list} + Set Suite Variable ${VNF_ID} ${vnfr_list}[0] Get Vdus Before Scale Out - [Documentation] Get the number of VDU records before the manual scaling. - - @{vdur_list}= Get Vnf Vdur Names ${vnf_id} - Log List ${vdur_list} - ${vdurs}= Get Length ${vdur_list} - Set Suite Variable ${initial_vdur_count} ${vdurs} - + [Documentation] Check the number of VDUs instances before the manual scaling. + [Tags] verify + @{vdur_list}= Get Vnf Vdur Names ${VNF_ID} + Log List ${vdur_list} + ${vdurs}= Get Length ${vdur_list} + Set Suite Variable ${INITIAL_VDUR_COUNT} ${vdurs} Perform Manual Vdu Scale Out - - Variable Should Exist ${ns_id} msg=Network service instance is not available - ${ns_op_id}= Execute Manual VNF Scale ${ns_name} ${vnf_member_index} ${scaling_group} SCALE_OUT - + [Documentation] Perform a manual scale-out operation of the VNF. + [Tags] verify + Variable Should Exist ${NS_ID} msg=Network service instance is not available + ${ns_op_id}= Execute Manual VNF Scale ${NS_NAME} ${VNF_MEMBER_INDEX} ${SCALING_GROUP} SCALE_OUT + Log ${ns_op_id} Check Vdus After Scale Out - [Documentation] Check whether there is one more VDU after scaling or not. - - Variable Should Exist ${ns_id} msg=Network service instance is not available - @{vdur_list}= Get Vnf Vdur Names ${vnf_id} - Log List ${vdur_list} - ${vdurs}= Get Length ${vdur_list} - Run Keyword Unless ${vdurs} == ${initial_vdur_count} + 1 Fail msg=There is no new VDU records in the VNF after Scale Out - + [Documentation] Check whether there is one more VDU after scaling out. + [Tags] verify + Variable Should Exist ${NS_ID} msg=Network service instance is not available + @{vdur_list}= Get Vnf Vdur Names ${VNF_ID} + Log List ${vdur_list} + ${vdurs}= Get Length ${vdur_list} + IF ${vdurs} != ${INITIAL_VDUR_COUNT} + 1 Fail msg=There is no new VDU records in the VNF after Scale Out Perform Manual Vdu Scale In - - Variable Should Exist ${ns_id} msg=Network service instance is not available - ${ns_op_id}= Execute Manual VNF Scale ${ns_name} ${vnf_member_index} ${scaling_group} SCALE_IN - + [Documentation] Perform a manual scale-in operation of the VNF. + [Tags] verify + Variable Should Exist ${NS_ID} msg=Network service instance is not available + ${ns_op_id}= Execute Manual VNF Scale ${NS_NAME} ${VNF_MEMBER_INDEX} ${SCALING_GROUP} SCALE_IN + Log ${ns_op_id} Check Vdus After Scaling In - [Documentation] Check whether there is one less VDU after scaling or not. - - Variable Should Exist ${ns_id} msg=Network service instance is not available - @{vdur_list}= Get Vnf Vdur Names ${vnf_id} - Log List ${vdur_list} - ${vdurs}= Get Length ${vdur_list} - Run Keyword Unless ${vdurs} == ${initial_vdur_count} Fail msg=There is the same number of VDU records in the VNF after Scale In - + [Documentation] Check whether there is one less VDU after scaling in. + [Tags] verify + Variable Should Exist ${NS_ID} msg=Network service instance is not available + @{vdur_list}= Get Vnf Vdur Names ${VNF_ID} + Log List ${vdur_list} + ${vdurs}= Get Length ${vdur_list} + IF ${vdurs} != ${INITIAL_VDUR_COUNT} Fail msg=There is the same number of VDU records in the VNF after Scale In Delete NS Instance + [Documentation] Delete NS instance. [Tags] cleanup - - Delete NS ${ns_name} - + Delete NS ${NS_NAME} Delete NS Descriptor + [Documentation] Delete NS package from OSM. [Tags] cleanup - - Delete NSD ${nsd_name} - + Delete NSD ${NSD_NAME} Delete VNF Descriptor + [Documentation] Delete VNF package from OSM. [Tags] cleanup - - Delete VNFD ${vnfd_name} + Delete VNFD ${VNFD_NAME} *** Keywords *** Suite Cleanup - [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance - - Run Keyword If Any Tests Failed Delete NS ${ns_name} - - Run Keyword If Any Tests Failed Delete NSD ${nsd_name} - - Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name} - + [Documentation] Test Suite Cleanup: Deleting descriptors and NS instance + Run Keyword If Any Tests Failed Delete NS ${NS_NAME} + Run Keyword If Any Tests Failed Delete NSD ${NSD_NAME} + Run Keyword If Any Tests Failed Delete VNFD ${VNFD_NAME}