X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=robot-systest%2Ftestsuite%2Fbasic_09-manual_vdu_scaling.robot;h=7989d9896bebf912d837f4c031be1c9f7520845a;hb=12136271111872aef81e5473c5c25ae2b3599403;hp=e695768a179f0b2a5dc24d46b02cfcc4fc12a528;hpb=d225e550e79fdbb9f667975102b17232eca893c1;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 e695768..7989d98 100644 --- a/robot-systest/testsuite/basic_09-manual_vdu_scaling.robot +++ b/robot-systest/testsuite/basic_09-manual_vdu_scaling.robot @@ -22,39 +22,46 @@ Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot -Variables %{ROBOT_DEVOPS_FOLDER}/resources/basic_09-manual_vdu_scaling_data.py +Force Tags basic_09 cluster_main daily regression 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 + +# 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 +# SSH public key file +${publickey} %{HOME}/.ssh/id_rsa.pub + *** Test Cases *** Create Scaling VNF Descriptor - [Tags] manual_scaling sanity regression Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' Create Scaling NS Descriptor - [Tags] manual_scaling sanity regression Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' Instantiate Scaling Network Service - [Tags] manual_scaling sanity regression ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} Set Suite Variable ${ns_id} ${id} Get Vnf Id - [Tags] manual_scaling sanity regression Variable Should Exist ${ns_id} msg=Network service instance is not available @{vnfr_list}= Get Ns Vnfr Ids ${ns_id} @@ -64,7 +71,6 @@ Get Vnf Id Get Vdus Before Scale Out [Documentation] Get the number of VDU records before the manual scaling. - [Tags] manual_scaling sanity regression @{vdur_list}= Get Vnf Vdur Names ${vnf_id} Log List ${vdur_list} @@ -73,7 +79,6 @@ Get Vdus Before Scale Out Perform Manual Vdu Scale Out - [Tags] manual_scaling sanity regression 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 @@ -81,7 +86,6 @@ Perform Manual Vdu Scale Out Check Vdus After Scale Out [Documentation] Check whether there is one more VDU after scaling or not. - [Tags] manual_scaling sanity regression Variable Should Exist ${ns_id} msg=Network service instance is not available @{vdur_list}= Get Vnf Vdur Names ${vnf_id} @@ -91,7 +95,6 @@ Check Vdus After Scale Out Perform Manual Vdu Scale In - [Tags] manual_scaling sanity regression 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 @@ -99,7 +102,6 @@ Perform Manual Vdu Scale In Check Vdus After Scaling In [Documentation] Check whether there is one less VDU after scaling or not. - [Tags] manual_scaling sanity regression Variable Should Exist ${ns_id} msg=Network service instance is not available @{vdur_list}= Get Vnf Vdur Names ${vnf_id} @@ -109,19 +111,19 @@ Check Vdus After Scaling In Delete NS Instance - [Tags] manual_scaling sanity regression cleanup + [Tags] cleanup Delete NS ${ns_name} Delete NS Descriptor - [Tags] manual_scaling sanity regression cleanup + [Tags] cleanup Delete NSD ${nsd_name} Delete VNF Descriptor - [Tags] manual_scaling sanity regression cleanup + [Tags] cleanup Delete VNFD ${vnfd_name}