blob: 131c5ac50d568ee5996183fea86d3c9ff4369398 [file] [log] [blame]
Felipe Vicensf96bb452020-06-22 08:12:30 +02001# 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
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
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.
12
13*** Settings ***
garciadeblas4cf45d72021-04-08 13:52:22 +020014Documentation [HACKFEST-MULTIVDU] Basic NS with two multi-VDU VNF
15
Felipe Vicensf96bb452020-06-22 08:12:30 +020016Library OperatingSystem
17Library String
18Library Collections
19Library Process
20Library SSHLibrary
21
22Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
23Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
24Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
25Resource %{ROBOT_DEVOPS_FOLDER}/lib/connectivity_lib.robot
26Resource %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
27
28Variables %{ROBOT_DEVOPS_FOLDER}/resources/hackfest_multivdu_ns_data.py
29
garciadeblas4cf45d72021-04-08 13:52:22 +020030Force Tags hackfest_multivdu cluster_main daily regression
31
garciadeblasd225e552020-10-02 16:10:14 +000032Suite Teardown Run Keyword And Ignore Error Suite Cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020033
34
35*** Variables ***
36${ns_id} ${EMPTY}
aguilarherna5d0100e2021-04-07 13:31:34 +000037${username} ubuntu
38${password} ${EMPTY}
Felipe Vicensf96bb452020-06-22 08:12:30 +020039${vnf_member_index} 1
40${vnf_ip_addr} ${EMPTY}
41${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
42${wait_guard_for_vm_boot} 50s
43# ${ns_config} ${EMPTY}
44
45*** Test Cases ***
46Create Hackfest multivdu VNF Descriptor
Felipe Vicensf96bb452020-06-22 08:12:30 +020047
48 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
49
50
51Create Hackfest Multivdu NS Descriptor
Felipe Vicensf96bb452020-06-22 08:12:30 +020052
53 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
54
55Network Service Instance Test
Felipe Vicensf96bb452020-06-22 08:12:30 +020056
57 ${status} ${message}= Run Keyword And Ignore Error Variable Should Exist ${publickey}
58 Run Keyword If "${status}" == "FAIL" Set Global Variable ${publickey} ${EMPTY}
59 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey}
60 Set Suite Variable ${ns_id} ${id}
61 Sleep ${wait_guard_for_vm_boot} Waiting for VM's daemons to be up and running
62
63Get Vnf Ip Address
Felipe Vicensf96bb452020-06-22 08:12:30 +020064
65 ${ip_addr} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index}
66 log ${ip_addr}
67 Set Suite Variable ${vnf_ip_addr} ${ip_addr}
68
69Test Ping
Felipe Vicensf96bb452020-06-22 08:12:30 +020070 Test Connectivity ${vnf_ip_addr}
71
72Test SSH Access
Felipe Vicensf96bb452020-06-22 08:12:30 +020073 ${status} ${message}= Run Keyword And Ignore Error Variable Should Exist ${privatekey}
74 Run Keyword If "${status}" == "FAIL" Set Global Variable ${privatekey} ${EMPTY}
75 Test SSH Connection ${vnf_ip_addr} ${username} ${password} ${privatekey}
76
77Delete NS Instance Test
garciadeblas4cf45d72021-04-08 13:52:22 +020078 [Tags] cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020079
80 Delete NS ${ns_name}
81
82
83Delete NS Descriptor Test
garciadeblas4cf45d72021-04-08 13:52:22 +020084 [Tags] cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020085
86 Delete NSD ${nsd_name}
87
88
89Delete VNF Descriptor Test
garciadeblas4cf45d72021-04-08 13:52:22 +020090 [Tags] cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020091
92 Delete VNFD ${vnfd_name}
93
94
95*** Keywords ***
garciadeblasd225e552020-10-02 16:10:14 +000096Suite Cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020097 [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim
98
garciadeblasd225e552020-10-02 16:10:14 +000099 Run Keyword If Any Tests Failed Delete NS ${ns_name}
Felipe Vicensf96bb452020-06-22 08:12:30 +0200100
garciadeblasd225e552020-10-02 16:10:14 +0000101 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
Felipe Vicensf96bb452020-06-22 08:12:30 +0200102
garciadeblasd225e552020-10-02 16:10:14 +0000103 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}