X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=robot-systest%2Ftestsuite%2Fbasic_16-advanced_onboarding_and_scaling.robot;h=7cd462eb99ca162efdf6d51b73c06b2ea27951a8;hb=refs%2Fheads%2Fmaster;hp=78a1aa3060473d437629d29e168fa0a561fb4644;hpb=9dca3a87c3fdce0babbe6945f73c28dc75f40ae3;p=osm%2Ftests.git diff --git a/robot-systest/testsuite/basic_16-advanced_onboarding_and_scaling.robot b/robot-systest/testsuite/basic_16-advanced_onboarding_and_scaling.robot index 78a1aa3..7cd462e 100644 --- a/robot-systest/testsuite/basic_16-advanced_onboarding_and_scaling.robot +++ b/robot-systest/testsuite/basic_16-advanced_onboarding_and_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,128 +11,124 @@ # See the License for the specific language governing permissions and # limitations under the License. + *** Settings *** -Documentation [BASIC-16] Advanced onboarding with override and complex scaling (3 initial instances, scaled by two). +Documentation [BASIC-16] Advanced onboarding with override and complex scaling (3 initial instances, scaled by two). 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 -Variables %{ROBOT_DEVOPS_FOLDER}/resources/basic_16-advanced_onboarding_and_scaling_data.py +Test Tags basic_16 cluster_main daily regression azure Suite Teardown Run Keyword And Ignore Error Suite Cleanup *** Variables *** -${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } -${scaling_group} vdu_autoscale -${vnf_member_index} 1 - +# 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 -*** Test Cases *** -Create Scaling VNF Descriptor - [Tags] advanced_scaling sanity regression +# NS instance name and configuration +${NS_NAME} basic_16 +${NS_CONFIG} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } - Create VNFD Overriding Fields '%{PACKAGES_FOLDER}/${vnfd_pkg}' df.0.instantiation-level.0.vdu-level.0.number-of-instances=${init_instances};df.0.vdu-profile.0.min-number-of-instances=${min_instances};df.0.vdu-profile.0.max-number-of-instances=${max_instances};df.0.scaling-aspect.0.aspect-delta-details.deltas.0.vdu-delta.0.number-of-instances=${delta_instances} +# SSH public keys file +${PUBLICKEY} %{HOME}/.ssh/id_rsa.pub +# Initial, delta, min and max number of VDU instances +${INIT_INSTANCES} 3 +${MIN_INSTANCES} 3 +${MAX_INSTANCES} 5 +${DELTA_INSTANCES} 2 +${SCALING_GROUP} vdu_autoscale +${VNF_MEMBER_INDEX} vnf -Create Scaling NS Descriptor - [Tags] advanced_scaling sanity regression - Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' +*** Test Cases *** +Create Scaling VNF Descriptor + [Documentation] Upload VNF package for the testsuite. + Create VNFD Overriding Fields '%{PACKAGES_FOLDER}/${VNFD_PKG}' df.0.instantiation-level.0.vdu-level.0.number-of-instances=${INIT_INSTANCES};df.0.vdu-profile.0.min-number-of-instances=${MIN_INSTANCES};df.0.vdu-profile.0.max-number-of-instances=${MAX_INSTANCES};df.0.scaling-aspect.0.aspect-delta-details.deltas.0.vdu-delta.0.number-of-instances=${DELTA_INSTANCES} +Create Scaling NS Descriptor + [Documentation] Upload NS package for the testsuite. + Create NSD '%{PACKAGES_FOLDER}/${NSD_PKG}' Instantiate Scaling Network Service - [Tags] advanced_scaling sanity regression - - ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} - Set Suite Variable ${ns_id} ${id} - + [Documentation] Instantiate NS for the testsuite. + ${id}= Create Network Service ${NSD_NAME} %{VIM_TARGET} ${NS_NAME} ${NS_CONFIG} ${PUBLICKEY} + Set Suite Variable ${NS_ID} ${id} Get Vnf Id - [Tags] advanced_scaling sanity regression - - 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. + 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] Check Vdus Before Scale Out - [Documentation] Check the number of VDUs instances before the manual scaling. - [Tags] advanced_scaling sanity regression - - @{vdur_list}= Get Vnf Vdur Names ${vnf_id} - Log List ${vdur_list} - ${vdurs}= Get Length ${vdur_list} - Set Suite Variable ${initial_vdur_count} ${vdurs} - Run Keyword Unless ${init_instances} == ${initial_vdur_count} Fail msg=Instantiated VDUs (${initial_vdur_count}) don't match specified number in descriptor (${init_instances}) - + [Documentation] Check the number of VDUs instances 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} + IF ${INIT_INSTANCES} != ${INITIAL_VDUR_COUNT} Fail msg=Instantiated VDUs (${INITIAL_VDUR_COUNT}) don't match specified number in descriptor (${INIT_INSTANCES}) Perform Manual Vdu Scale Out - [Tags] advanced_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 - + [Documentation] Perform a manual scale-out operation of the VNF. + 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. - [Tags] advanced_scaling sanity regression - - 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} + ${delta_instances} Fail msg=VDU instances in the VNF (${vdurs}) don't match after Scale Out (${initial_vdur_count} + ${delta_instances}) - + [Documentation] Check whether there is one extra VDU after scaling out. + 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} + ${DELTA_INSTANCES} Fail msg=VDU instances in the VNF (${vdurs}) don't match after Scale Out (${INITIAL_VDUR_COUNT} + ${DELTA_INSTANCES}) Perform Manual Vdu Scale In - [Tags] advanced_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 - + [Documentation] Perform a manual scale-in operation of the VNF. + 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. - [Tags] advanced_scaling sanity regression - - 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. + 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 - [Tags] advanced_scaling sanity regression cleanup - - Delete NS ${ns_name} - + [Documentation] Delete NS intance. + [Tags] cleanup + Delete NS ${NS_NAME} Delete NS Descriptor - [Tags] advanced_scaling sanity regression cleanup - - Delete NSD ${nsd_name} - + [Documentation] Delete NS package from OSM. + [Tags] cleanup + Delete NSD ${NSD_NAME} Delete VNF Descriptor - [Tags] advanced_scaling sanity regression cleanup - - Delete VNFD ${vnfd_name} + [Documentation] Delete VNF package from OSM. + [Tags] cleanup + 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}