blob: cd695adcf7f2da6d97742a22a47d8e125c64be54 [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 ***
garciadeblasf4ebaa82022-06-23 13:33:26 +020014Documentation [HACKFEST-CLOUDINIT] Basic NS with two multi-VDU VNF with cloudinit
garciadeblas4cf45d72021-04-08 13:52:22 +020015
Felipe Vicensf96bb452020-06-22 08:12:30 +020016Library OperatingSystem
17Library String
18Library Collections
19Library Process
20Library SSHLibrary
21
garciadeblas23ff8f92023-12-11 16:26:40 +010022Resource %{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
Felipe Vicensf96bb452020-06-22 08:12:30 +020027
garciadeblas23ff8f92023-12-11 16:26:40 +010028Force Tags hackfest_cloudinit cluster_main daily regression sanity azure
garciadeblas4cf45d72021-04-08 13:52:22 +020029
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
garciadeblas23ff8f92023-12-11 16:26:40 +010035${vnfd_pkg} hackfest_cloudinit_vnf
36${vnfd_name} hackfest_cloudinit-vnf
37${nsd_pkg} hackfest_cloudinit_ns
38${nsd_name} hackfest_cloudinit-ns
almagiab4697d32021-05-25 08:56:17 +020039
40# NS instance name and configuration
garciadeblas23ff8f92023-12-11 16:26:40 +010041${ns_name} hfcloudinit
42${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
almagiab4697d32021-05-25 08:56:17 +020043
44# SSH user and password
garciadeblas23ff8f92023-12-11 16:26:40 +010045${username} ubuntu
46${password} osm4u
almagiab4697d32021-05-25 08:56:17 +020047
garciadeblas23ff8f92023-12-11 16:26:40 +010048${ns_id} ${EMPTY}
49${vnf_member_index} vnf1
50${vnf_ip_addr} ${EMPTY}
almagiab4697d32021-05-25 08:56:17 +020051
Felipe Vicensf96bb452020-06-22 08:12:30 +020052
53*** Test Cases ***
54Create Hackfest Cloudinit VNF Descriptor
garciadeblas23ff8f92023-12-11 16:26:40 +010055
56 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
57
Felipe Vicensf96bb452020-06-22 08:12:30 +020058
59Create Hackfest Cloudinit NS Descriptor
garciadeblas23ff8f92023-12-11 16:26:40 +010060
61 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
62
Felipe Vicensf96bb452020-06-22 08:12:30 +020063
64Network Service Instance Test
garciadeblas23ff8f92023-12-11 16:26:40 +010065
66 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${EMPTY}
67 Set Suite Variable ${ns_id} ${id}
68
Felipe Vicensf96bb452020-06-22 08:12:30 +020069
70Get Vnf Ip Address
garciadeblas23ff8f92023-12-11 16:26:40 +010071
72 ${ip_addr} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index}
garciadeblas321726f2022-12-21 11:43:06 +010073 Log ${ip_addr}
garciadeblas23ff8f92023-12-11 16:26:40 +010074 Set Suite Variable ${vnf_ip_addr} ${ip_addr}
75
Felipe Vicensf96bb452020-06-22 08:12:30 +020076
77Test SSH Access
garciadeblas23ff8f92023-12-11 16:26:40 +010078
Felipe Vicensf96bb452020-06-22 08:12:30 +020079 Sleep 30s Waiting ssh daemon to be up
garciadeblas23ff8f92023-12-11 16:26:40 +010080 Test SSH Connection ${vnf_ip_addr} ${username} ${password} ${EMPTY}
81
Felipe Vicensf96bb452020-06-22 08:12:30 +020082
83Check Remote File Injected Via Cloud-init
garciadeblas23ff8f92023-12-11 16:26:40 +010084
85 ${stdout}= Execute Remote Command Check Rc Return Output ${vnf_ip_addr} ${username} ${password} ${EMPTY} sudo cat /root/helloworld.txt
garciadeblas321726f2022-12-21 11:43:06 +010086 Log ${stdout}
Felipe Vicensf96bb452020-06-22 08:12:30 +020087
garciadeblas23ff8f92023-12-11 16:26:40 +010088
Felipe Vicensf96bb452020-06-22 08:12:30 +020089Delete NS Instance Test
garciadeblas4cf45d72021-04-08 13:52:22 +020090 [Tags] cleanup
garciadeblas23ff8f92023-12-11 16:26:40 +010091
92 Delete NS ${ns_name}
93
Felipe Vicensf96bb452020-06-22 08:12:30 +020094
95Delete NS Descriptor Test
garciadeblas4cf45d72021-04-08 13:52:22 +020096 [Tags] cleanup
garciadeblas23ff8f92023-12-11 16:26:40 +010097
98 Delete NSD ${nsd_name}
99
Felipe Vicensf96bb452020-06-22 08:12:30 +0200100
101Delete VNF Descriptor Test
garciadeblas4cf45d72021-04-08 13:52:22 +0200102 [Tags] cleanup
garciadeblas23ff8f92023-12-11 16:26:40 +0100103
104 Delete VNFD ${vnfd_name}
Felipe Vicensf96bb452020-06-22 08:12:30 +0200105
106
107*** Keywords ***
garciadeblasd225e552020-10-02 16:10:14 +0000108Suite Cleanup
garciadeblasf4ebaa82022-06-23 13:33:26 +0200109 [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim
garciadeblas23ff8f92023-12-11 16:26:40 +0100110
111 Run Keyword If Any Tests Failed Delete NS ${ns_name}
112
113 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
114
115 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}
116
117