X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Ftests.git;a=blobdiff_plain;f=robot-systest%2Ftestsuite%2Fhackfest_cloudinit.robot;h=87df100850642151756d5f79633f64abf627dc5d;hp=2fb79faed4d12db59b297b185bf5b4fd836d769a;hb=f25782945b1e3db0a2442c572a5f8607bb42460e;hpb=d225e550e79fdbb9f667975102b17232eca893c1 diff --git a/robot-systest/testsuite/hackfest_cloudinit.robot b/robot-systest/testsuite/hackfest_cloudinit.robot index 2fb79fa..87df100 100644 --- a/robot-systest/testsuite/hackfest_cloudinit.robot +++ b/robot-systest/testsuite/hackfest_cloudinit.robot @@ -11,6 +11,8 @@ # limitations under the License. *** Settings *** +Documentation [HACKFEST-CLOUDINIT] Basic NS with two multi-VDU VNF with cloudinit + Library OperatingSystem Library String Library Collections @@ -23,42 +25,49 @@ Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot Resource %{ROBOT_DEVOPS_FOLDER}/lib/connectivity_lib.robot Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot -Variables %{ROBOT_DEVOPS_FOLDER}/resources/hackfest_cloudinit_ns_data.py +Force Tags hackfest_cloudinit cluster_main daily regression sanity Suite Teardown Run Keyword And Ignore Error Suite Cleanup *** Variables *** -${ns_id} ${EMPTY} +# NS and VNF descriptor package folder and ids +${vnfd_pkg} hackfest_cloudinit_vnf +${vnfd_name} hackfest_cloudinit-vnf +${nsd_pkg} hackfest_cloudinit_ns +${nsd_name} hackfest_cloudinit-ns + +# NS instance name and configuration +${ns_name} hfcloudinit +${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } + +# SSH user and password ${username} ubuntu -${password} ${EMPTY} -${vnf_member_index} 1 +${password} osm4u + +${ns_id} ${EMPTY} +${vnf_member_index} vnf1 ${vnf_ip_addr} ${EMPTY} -${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } -# ${ns_config} ${EMPTY} + *** Test Cases *** Create Hackfest Cloudinit VNF Descriptor - [Tags] hackfest_cloudinit sanity regression Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' Create Hackfest Cloudinit NS Descriptor - [Tags] hackfest_cloudinit sanity regression Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}' Network Service Instance Test - [Tags] hackfest_cloudinit sanity regression - ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey} + ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${EMPTY} Set Suite Variable ${ns_id} ${id} Get Vnf Ip Address - [Tags] hackfest_cloudinit sanity regression ${ip_addr} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index} log ${ip_addr} @@ -66,33 +75,31 @@ Get Vnf Ip Address Test SSH Access - [Tags] hackfest_cloudinit sanity regression Sleep 30s Waiting ssh daemon to be up - Test SSH Connection ${vnf_ip_addr} ${username} ${password} ${privatekey} + Test SSH Connection ${vnf_ip_addr} ${username} ${password} ${EMPTY} Check Remote File Injected Via Cloud-init - [Tags] hackfest_cloudinit sanity regression - ${stdout}= Execute Remote Command Check Rc Return Output ${vnf_ip_addr} ${username} ${password} ${privatekey} sudo cat /root/helloworld.txt + ${stdout}= Execute Remote Command Check Rc Return Output ${vnf_ip_addr} ${username} ${password} ${EMPTY} sudo cat /root/helloworld.txt log ${stdout} Delete NS Instance Test - [Tags] hackfest_cloudinit sanity regression cleanup + [Tags] cleanup Delete NS ${ns_name} Delete NS Descriptor Test - [Tags] hackfest_cloudinit sanity regression cleanup + [Tags] cleanup Delete NSD ${nsd_name} Delete VNF Descriptor Test - [Tags] hackfest_cloudinit sanity regression cleanup + [Tags] cleanup Delete VNFD ${vnfd_name}