blob: 0836006621660bbb91e5ed80d2de35e59a4d883d [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-CLOUDINIT] Basic NS with two multi-VDU VNF with cloudinit
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_cloudinit_ns_data.py
29
garciadeblas7f1bdbc2021-04-27 10:21:57 +020030Force Tags hackfest_cloudinit cluster_main daily regression sanity
garciadeblas4cf45d72021-04-08 13:52:22 +020031
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}
37${username} ubuntu
garciaaled2532d32020-11-19 21:05:13 +000038${password} osm4u
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# ${ns_config} ${EMPTY}
43
44*** Test Cases ***
45Create Hackfest Cloudinit VNF Descriptor
Felipe Vicensf96bb452020-06-22 08:12:30 +020046
47 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
48
49
50Create Hackfest Cloudinit NS Descriptor
Felipe Vicensf96bb452020-06-22 08:12:30 +020051
52 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
53
54
55Network Service Instance Test
Felipe Vicensf96bb452020-06-22 08:12:30 +020056
garciaaled2532d32020-11-19 21:05:13 +000057 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${EMPTY}
Felipe Vicensf96bb452020-06-22 08:12:30 +020058 Set Suite Variable ${ns_id} ${id}
59
60
61Get Vnf Ip Address
Felipe Vicensf96bb452020-06-22 08:12:30 +020062
63 ${ip_addr} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index}
64 log ${ip_addr}
65 Set Suite Variable ${vnf_ip_addr} ${ip_addr}
66
67
68Test SSH Access
Felipe Vicensf96bb452020-06-22 08:12:30 +020069
70 Sleep 30s Waiting ssh daemon to be up
71 Test SSH Connection ${vnf_ip_addr} ${username} ${password} ${privatekey}
72
73
74Check Remote File Injected Via Cloud-init
Felipe Vicensf96bb452020-06-22 08:12:30 +020075
76 ${stdout}= Execute Remote Command Check Rc Return Output ${vnf_ip_addr} ${username} ${password} ${privatekey} sudo cat /root/helloworld.txt
77 log ${stdout}
78
79
80Delete NS Instance Test
garciadeblas4cf45d72021-04-08 13:52:22 +020081 [Tags] cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020082
83 Delete NS ${ns_name}
84
85
86Delete NS Descriptor Test
garciadeblas4cf45d72021-04-08 13:52:22 +020087 [Tags] cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020088
89 Delete NSD ${nsd_name}
90
91
92Delete VNF Descriptor Test
garciadeblas4cf45d72021-04-08 13:52:22 +020093 [Tags] cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +020094
95 Delete VNFD ${vnfd_name}
96
97
98*** Keywords ***
garciadeblasd225e552020-10-02 16:10:14 +000099Suite Cleanup
Felipe Vicensf96bb452020-06-22 08:12:30 +0200100 [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim
101
garciadeblasd225e552020-10-02 16:10:14 +0000102 Run Keyword If Any Tests Failed Delete NS ${ns_name}
Felipe Vicensf96bb452020-06-22 08:12:30 +0200103
garciadeblasd225e552020-10-02 16:10:14 +0000104 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
Felipe Vicensf96bb452020-06-22 08:12:30 +0200105
garciadeblasd225e552020-10-02 16:10:14 +0000106 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}
Felipe Vicensf96bb452020-06-22 08:12:30 +0200107
108