blob: c6bc06a3cd47de0efa4300f2b6278fe0f47b8d22 [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
garciadeblas4cf45d72021-04-08 13:52:22 +020028Force Tags hackfest_multivdu cluster_main daily regression
29
garciadeblasd225e552020-10-02 16:10:14 +000030Suite Teardown Run Keyword And Ignore Error Suite Cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020031
32
33*** Variables ***
almagiab4697d32021-05-25 08:56:17 +020034# NS and VNF descriptor package folder and ids
35${vnfd_pkg} hackfest_multivdu_vnf
36${vnfd_name} hackfest_multivdu-vnf
37${nsd_pkg} hackfest_multivdu_ns
38${nsd_name} hackfest_multivdu-ns
39
40# NS instance name and configuration
41${ns_name} hfmultivdu
42${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
43
44# SSH keys and username to be used
45${publickey} %{HOME}/.ssh/id_rsa.pub
46${privatekey} %{HOME}/.ssh/id_rsa
aguilarherna5d0100e2021-04-07 13:31:34 +000047${username} ubuntu
48${password} ${EMPTY}
almagiab4697d32021-05-25 08:56:17 +020049
50${ns_id} ${EMPTY}
Felipe Vicensf96bb452020-06-22 08:12:30 +020051${vnf_member_index} 1
52${vnf_ip_addr} ${EMPTY}
Felipe Vicensf96bb452020-06-22 08:12:30 +020053${wait_guard_for_vm_boot} 50s
almagiab4697d32021-05-25 08:56:17 +020054
Felipe Vicensf96bb452020-06-22 08:12:30 +020055
56*** Test Cases ***
57Create Hackfest multivdu VNF Descriptor
Felipe Vicensf96bb452020-06-22 08:12:30 +020058
59 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
60
61
62Create Hackfest Multivdu NS Descriptor
Felipe Vicensf96bb452020-06-22 08:12:30 +020063
64 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
65
66Network Service Instance Test
Felipe Vicensf96bb452020-06-22 08:12:30 +020067
68 ${status} ${message}= Run Keyword And Ignore Error Variable Should Exist ${publickey}
69 Run Keyword If "${status}" == "FAIL" Set Global Variable ${publickey} ${EMPTY}
70 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey}
71 Set Suite Variable ${ns_id} ${id}
72 Sleep ${wait_guard_for_vm_boot} Waiting for VM's daemons to be up and running
73
74Get Vnf Ip Address
Felipe Vicensf96bb452020-06-22 08:12:30 +020075
76 ${ip_addr} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index}
77 log ${ip_addr}
78 Set Suite Variable ${vnf_ip_addr} ${ip_addr}
79
80Test Ping
Felipe Vicensf96bb452020-06-22 08:12:30 +020081 Test Connectivity ${vnf_ip_addr}
82
83Test SSH Access
Felipe Vicensf96bb452020-06-22 08:12:30 +020084 ${status} ${message}= Run Keyword And Ignore Error Variable Should Exist ${privatekey}
85 Run Keyword If "${status}" == "FAIL" Set Global Variable ${privatekey} ${EMPTY}
86 Test SSH Connection ${vnf_ip_addr} ${username} ${password} ${privatekey}
87
88Delete NS Instance Test
garciadeblas4cf45d72021-04-08 13:52:22 +020089 [Tags] cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020090
91 Delete NS ${ns_name}
92
93
94Delete NS Descriptor Test
garciadeblas4cf45d72021-04-08 13:52:22 +020095 [Tags] cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020096
97 Delete NSD ${nsd_name}
98
99
100Delete VNF Descriptor Test
garciadeblas4cf45d72021-04-08 13:52:22 +0200101 [Tags] cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +0200102
103 Delete VNFD ${vnfd_name}
104
105
106*** Keywords ***
garciadeblasd225e552020-10-02 16:10:14 +0000107Suite Cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +0200108 [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim
109
garciadeblasd225e552020-10-02 16:10:14 +0000110 Run Keyword If Any Tests Failed Delete NS ${ns_name}
Felipe Vicensf96bb452020-06-22 08:12:30 +0200111
garciadeblasd225e552020-10-02 16:10:14 +0000112 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
Felipe Vicensf96bb452020-06-22 08:12:30 +0200113
garciadeblasd225e552020-10-02 16:10:14 +0000114 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}