X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Ftests.git;a=blobdiff_plain;f=robot-systest%2Ftestsuite%2Fbasic_21-support_of_volumes.robot;fp=robot-systest%2Ftestsuite%2Fbasic_21-support_of_volumes.robot;h=4dbea4a92c37799e7741002db022e27c3d229291;hp=c8918a69328a46ec7ccae2ba9207dd6e499ca7de;hb=23ff8f980f66ef57fb4d254336a018e3a697a187;hpb=5e001f506b744021d5ef25999c9da28cf56d8fbc diff --git a/robot-systest/testsuite/basic_21-support_of_volumes.robot b/robot-systest/testsuite/basic_21-support_of_volumes.robot index c8918a6..4dbea4a 100644 --- a/robot-systest/testsuite/basic_21-support_of_volumes.robot +++ b/robot-systest/testsuite/basic_21-support_of_volumes.robot @@ -1,4 +1,3 @@ -*** 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 @@ -11,7 +10,6 @@ # See the License for the specific language governing permissions and # limitations under the License. - *** Settings *** Documentation [BASIC-21] NS with only one VDU and several volumes @@ -21,138 +19,140 @@ Library Collections Library Process Library SSHLibrary -Resource ../lib/vnfd_lib.resource -Resource ../lib/vnf_lib.resource -Resource ../lib/nsd_lib.resource -Resource ../lib/ns_lib.resource -Resource ../lib/ssh_lib.resource -Resource ../lib/openstack_lib.resource +Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot +Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnf_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 %{ROBOT_DEVOPS_FOLDER}/lib/openstack_lib.robot + +Force Tags basic_21 cluster_main daily regression -Test Tags basic_21 cluster_main daily regression Suite Teardown Run Keyword And Ignore Error Suite Cleanup *** Variables *** # NS and VNF descriptor package folder and ids -${VNFD_PKG} several_volumes_vnf -${VNFD_NAME} several_volumes-vnf -${NSD_PKG} several_volumes_ns -${NSD_NAME} several_volumes-ns +${vnfd_pkg} several_volumes_vnf +${vnfd_name} several_volumes-vnf +${nsd_pkg} several_volumes_ns +${nsd_name} several_volumes-ns # NS instance name and configuration -${NS_NAME} basic_21 -${NS_CONFIG} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } +${ns_name} basic_21 +${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } # SSH keys and username to be used -${PUBLICKEY} %{HOME}/.ssh/id_rsa.pub -${PRIVATEKEY} %{HOME}/.ssh/id_rsa -${USERNAME} ubuntu -${PASSWORD} ${EMPTY} +${publickey} %{HOME}/.ssh/id_rsa.pub +${privatekey} %{HOME}/.ssh/id_rsa +${username} ubuntu +${password} ${EMPTY} -${VNF_MEMBER_INDEX} vnf-several-volumes -${SUCCESS_RETURN_CODE} 0 +${vnf_member_index} vnf-several-volumes +${success_return_code} 0 *** Test Cases *** Create VNF Descriptor - [Documentation] Upload VNF package for the testsuite. [Tags] prepare - Create VNFD '%{PACKAGES_FOLDER}/${VNFD_PKG}' + Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' + Create NS Descriptor - [Documentation] Upload NS package for the testsuite. [Tags] prepare - Create NSD '%{PACKAGES_FOLDER}/${NSD_PKG}' + Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' + Network Service Instance Test - [Documentation] Instantiate NS for the testsuite. [Tags] prepare - ${id}= Create Network Service ${NSD_NAME} %{VIM_TARGET} ${NS_NAME} ${NS_CONFIG} ${PUBLICKEY} - Set Suite Variable ${NS_ID} ${id} + ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} + Set Suite Variable ${ns_id} ${id} Get NS Id - [Documentation] Get NS identifier and stores as suite variable to be used later on. [Tags] verify cleanup - ${variables}= Get Variables - IF not "\${ns_id}" in ${variables} - ${id}= Get Ns Id ${NS_NAME} - Set Suite Variable ${NS_ID} ${id} + ${variables} Get Variables + IF not "\${ns_id}" in "${variables}" + ${id}= Get Ns Id ${ns_name} + Set Suite Variable ${ns_id} ${id} END Get Volumes From VNFD - [Documentation] Get from VNF descriptor the expected number of volumes in the VNF. [Tags] verify - ${rc} ${stdout}= Run And Return RC And Output osm vnfpkg-show ${VNFD_NAME} --literal | yq '.vdu[0]."virtual-storage-desc" | length' - Should Be Equal As Integers ${rc} ${SUCCESS_RETURN_CODE} msg=${stdout} values=False + ${rc} ${stdout}= Run and Return RC and Output osm vnfpkg-show ${vnfd_name} --literal | yq '.vdu[0]."virtual-storage-desc" | length' + Should Be Equal As Integers ${rc} ${success_return_code} msg=${stdout} values=False ${num_virtual_storage}= Convert To Integer ${stdout} - Set Suite Variable ${VNF_NUM_VOLUMES} ${num_virtual_storage} - Log ${VNF_NUM_VOLUMES} + Set Suite Variable ${vnf_num_volumes} ${num_virtual_storage} + Log ${vnf_num_volumes} + Get VNF IP Address - [Documentation] Get the mgmt IP address of the VNF. [Tags] verify - Variable Should Exist ${NS_ID} msg=NS is not available - ${ip_addr}= Get Vnf Management Ip Address ${NS_ID} ${VNF_MEMBER_INDEX} + Variable Should Exist ${ns_id} msg=NS is not available + ${ip_addr}= Get Vnf Management Ip Address ${ns_id} ${vnf_member_index} Log ${ip_addr} - Set Suite Variable ${VNF_IP_ADDR} ${ip_addr} - -# Get Persistent Volume Id -# [Documentation] Get VIM volume identifier of the persistent volume of the VNF. -# [Tags] cleanup -# Variable Should Exist ${ns_id} msg=NS is not available -# ${vnfs_list}= Get Ns Vnf List ${ns_id} -# ${vim_id}= Get VNF VIM ID ${vnfs_list}[0] -# ${volumes_attached}= Get Server Property ${vim_id} volumes_attached -# ${match}= Get Regexp Matches ${volumes_attached} '([0-9a-f\-]+)' 1 -# Set Suite Variable ${PERSISTENT_VOLUME_ID} ${match}[0] + Set Suite Variable ${vnf_ip_addr} ${ip_addr} + + +#Get Persistent Volume Id +# [Tags] cleanup +# Variable Should Exist ${ns_id} msg=NS is not available +# ${vnfs_list}= Get Ns Vnf List ${ns_id} +# ${vim_id}= Get VNF VIM ID ${vnfs_list}[0] +# ${volumes_attached}= Get Server Property ${vim_id} volumes_attached +# ${match}= Get Regexp Matches ${volumes_attached} '([0-9a-f\-]+)' 1 +# Set Suite Variable ${volume_id} ${match}[0] + Check VDU disks - [Documentation] Check that the number of volumes is the expected one. [Tags] verify - Variable Should Exist ${VNF_IP_ADDR} msg=VNF is not available + Variable Should Exist ${vnf_ip_addr} msg=VNF is not available Sleep 30 seconds Wait for SSH daemon to be up - ${stdout}= Execute Remote Command Check Rc Return Output ${VNF_IP_ADDR} ${USERNAME} ${PASSWORD} ${PRIVATEKEY} sudo lsblk -l + ${stdout}= Execute Remote Command Check Rc Return Output ${vnf_ip_addr} ${username} ${password} ${privatekey} sudo lsblk -l Log ${stdout} ${lines}= Get Lines Containing String ${stdout} disk ${num_lines}= Get Line Count ${lines} - IF ${num_lines} < ${VNF_NUM_VOLUMES} Fail msg=Number of disks (${num_lines}) is less than specified in VDU (${VNF_NUM_VOLUMES}) + Run Keyword If ${num_lines} < ${vnf_num_volumes} Fail msg=Number of disks (${num_lines}) is less than specified in VDU (${vnf_num_volumes}) + Delete NS Instance Test - [Documentation] Delete NS instance. [Tags] cleanup - Delete NS ${NS_NAME} - -# Check Persistent Volume Was Deleted -# [Documentation] Check that the persistent volume was deleted. -# [Tags] cleanup -# Variable Should Exist ${PERSISTENT_VOLUME_ID} msg=Volume is not available -# ${exists}= Check If Volume Exists ${PERSISTENT_VOLUME_ID} -# Log ${exists} -# IF ${exists}==0 -# Fail msg=Persistent volume was deleted -# Set Suite Variable ${PERSISTENT_VOLUME_ID} ${EMPTY}} -# ELSE -# Log Persistent volume still exists, deleting... -# Delete Volume ${PERSISTENT_VOLUME_ID} -# Set Suite Variable ${PERSISTENT_VOLUME_ID} ${EMPTY}} -# END + Delete NS ${ns_name} + + +#Check Persistent Volume Was Deleted +# [Tags] cleanup +# Variable Should Exist ${volume_id} msg=Volume is not available +# ${exists}= Check If Volume Exists ${volume_id} +# Log ${exists} +# IF ${exists}==0 +# Fail msg=Persistent volume was deleted +# Set Suite Variable ${volume_id} ${EMPTY}} +# ELSE +# Log Persistent volume still exists, deleting... +# Delete Volume ${volume_id} +# Set Suite Variable ${volume_id} ${EMPTY}} +# END + Delete NS Descriptor Test - [Documentation] Delete NS package from OSM. [Tags] cleanup - Delete NSD ${NSD_NAME} + Delete NSD ${nsd_name} + Delete VNF Descriptor Test - [Documentation] Delete VNF package from OSM. [Tags] cleanup - Delete VNFD ${VNFD_NAME} + Delete VNFD ${vnfd_name} *** Keywords *** Suite Cleanup [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim - 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} + + 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} + # Run Keyword If Any Tests Failed Check Volume Was Deleted