1 # Licensed under the Apache License, Version 2.0 (the "License");
2 # you may not use this file except in compliance with the License.
3 # You may obtain a copy of the License at
5 # http://www.apache.org/licenses/LICENSE-2.0
7 # Unless required by applicable law or agreed to in writing, software
8 # distributed under the License is distributed on an "AS IS" BASIS,
9 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 # See the License for the specific language governing permissions and
11 # limitations under the License.
14 Library OperatingSystem
20 Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
21 Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
22 Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
23 Resource %{ROBOT_DEVOPS_FOLDER}/lib/connectivity_lib.robot
24 Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
26 Variables %{ROBOT_DEVOPS_FOLDER}/resources/hackfest_basic_ns_data.py
28 Suite Teardown Run Keyword And Ignore Error Test Cleanup
36 ${vnf_ip_addr} ${EMPTY}
37 ${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
38 # ${ns_config} ${EMPTY}
41 Create Hackfest Basic VNF Descriptor
44 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
47 Create Hackfest Basic NS Descriptor
50 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
52 Network Service Instance Test
55 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey}
56 Set Suite Variable ${ns_id} ${id}
62 ${ip_addr} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index}
64 Set Suite Variable ${vnf_ip_addr} ${ip_addr}
68 Test Connectivity ${vnf_ip_addr}
72 Sleep 30s Waiting ssh daemon to be up
73 Test SSH Connection ${vnf_ip_addr} ${username} ${password} ${privatekey}
75 Delete NS Instance Test
76 [Tags] hackfest_basic cleanup
81 Delete NS Descriptor Test
82 [Tags] hackfest_basic cleanup
84 Delete NSD ${nsd_name}
87 Delete VNF Descriptor Test
88 [Tags] hackfest_basic cleanup
90 Delete VNFD ${vnfd_name}
95 [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim
97 Run Keyword If Test Failed Delete NS ${ns_name}
99 Run Keyword If Test Failed Delete NSD ${nsd_name}
101 Run Keyword If Test Failed Delete VNFD ${vnfd_name}