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=c8918a69328a46ec7ccae2ba9207dd6e499ca7de;hp=4dbea4a92c37799e7741002db022e27c3d229291;hb=5e001f506b744021d5ef25999c9da28cf56d8fbc;hpb=b0db4577db692b0d6c9210099c58c808cbc993c1 diff --git a/robot-systest/testsuite/basic_21-support_of_volumes.robot b/robot-systest/testsuite/basic_21-support_of_volumes.robot index 4dbea4a..c8918a6 100644 --- a/robot-systest/testsuite/basic_21-support_of_volumes.robot +++ b/robot-systest/testsuite/basic_21-support_of_volumes.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,6 +11,7 @@ # 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 @@ -19,140 +21,138 @@ Library Collections Library Process Library SSHLibrary -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 +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 +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 -# [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] - + 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] 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} - Run Keyword If ${num_lines} < ${vnf_num_volumes} Fail msg=Number of disks (${num_lines}) is less than specified in VDU (${vnf_num_volumes}) - + 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 -# [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 ${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 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