blob: c610447bebf38affc7b4f674f44ff90dddcaee5f [file] [log] [blame]
Gabriel Cubab91fc762023-05-19 18:30:19 -05001# 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 ***
14Documentation [BASIC-31] Basic NS with two multi-VDU VNF
15
16Library 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
28Force Tags basic_31 cluster_main daily
29
30Suite Teardown Run Keyword And Ignore Error Suite Cleanup
31
32
33*** Variables ***
34# NS and VNF descriptor package folder and ids
35${vnfd_pkg} multivdu_multiattach_vnf
36${vnfd_name} multivdu_multiattach-vnf
37${nsd_pkg} multivdu_multiattach_ns
38${nsd_name} multivdu_multiattach-ns
39
40# NS instance name and configuration
41${ns_name} multivdu_multiattach
42${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
43
44# SSH keys and username to be used
vegall1d039862023-06-22 22:22:44 +000045${vdu0_username} ubuntu
46${vdu0_password} ${EMPTY}
47${vdu0_publickey} %{HOME}/.ssh/id_rsa.pub
48${vdu0_privatekey} %{HOME}/.ssh/id_rsa
49${vdu1_username} ubuntu
50${vdu1_password} osmpass
51${vdu1_publickey} ${EMPTY}
52${vdu1_privatekey} ${EMPTY}
Gabriel Cubab91fc762023-05-19 18:30:19 -050053
54${ns_id} ${EMPTY}
55${vnf_member_index} vnf
56${vnf_ip_addr} ${EMPTY}
57${wait_guard_for_vm_boot} 50s
58
59
60*** Test Cases ***
vegall1d039862023-06-22 22:22:44 +000061Create Multiattach VNF Descriptor
Gabriel Cubab91fc762023-05-19 18:30:19 -050062
63 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
64
65
vegall1d039862023-06-22 22:22:44 +000066Create Multiattach NS Descriptor
Gabriel Cubab91fc762023-05-19 18:30:19 -050067
68 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
69
70
71Network Service Instance Test
72
vegall1d039862023-06-22 22:22:44 +000073 ${status} ${message}= Run Keyword And Ignore Error Variable Should Exist ${vdu0_publickey}
74 Run Keyword If "${status}" == "FAIL" Set Global Variable ${vdu0_publickey} ${EMPTY}
75 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${vdu0_publickey}
Gabriel Cubab91fc762023-05-19 18:30:19 -050076 Set Suite Variable ${ns_id} ${id}
77 Sleep ${wait_guard_for_vm_boot} Waiting for VM's daemons to be up and running
78
79
80Get Vnf ID
81
82 ${_vnf_id}= Get Vnf Id ${ns_id} ${vnf_member_index}
83 Set Suite Variable ${vnf_id} ${_vnf_id}
84
85
86Get Vnf Management Ip Addresses
87
garciadeblas9553b6f2023-06-19 12:00:49 +020088 ${rc} ${vdu0_ip}= Run and Return RC and Output osm vnf-show ${vnf_id} --literal | yq -r '.vdur[0].interfaces[]."ip-address"'
89 ${rc} ${vdu1_ip}= Run and Return RC and Output osm vnf-show ${vnf_id} --literal | yq -r '.vdur[1].interfaces[]."ip-address"'
Gabriel Cubab91fc762023-05-19 18:30:19 -050090 Set Suite Variable ${mgmnt_ip_addr_0} ${vdu0_ip}
91 Set Suite Variable ${mgmnt_ip_addr_1} ${vdu1_ip}
92
93
94Ensure that VDUs can share data
95
vegall1d039862023-06-22 22:22:44 +000096 Execute Remote Command Check Rc Return Output ${mgmnt_ip_addr_0} ${vdu0_username} ${vdu0_password} ${vdu0_privatekey} sudo mkfs.ext3 -F /dev/vdb && sudo mkdir /shared && sudo mount /dev/vdb /shared && sudo chown ubuntu:ubuntu /shared && echo "osmtest" > /shared/test_file
97 Sleep 10s
98 Execute Remote Command Check Rc Return Output ${mgmnt_ip_addr_1} ${vdu1_username} ${vdu1_password} ${vdu1_privatekey} sudo mkdir /shared && sudo mount /dev/vdb /shared && ls /shared
99 Execute Remote Command Check Rc Return Output ${mgmnt_ip_addr_1} ${vdu1_username} ${vdu1_password} ${vdu1_privatekey} cat /shared/test_file
100 ${stdout}= Execute Remote Command Check Rc Return Output ${mgmnt_ip_addr_0} ${vdu0_username} ${vdu0_password} ${vdu0_privatekey} cat /shared/test_file
Gabriel Cubab91fc762023-05-19 18:30:19 -0500101 Log ${stdout}
102 Should Be Equal ${stdout} osmtest Shared data can't be read
103
104
105Delete NS Instance Test
106 [Tags] cleanup
107
108 Delete NS ${ns_name}
109
110
111Delete NS Descriptor Test
112 [Tags] cleanup
113
114 Delete NSD ${nsd_name}
115
116
117Delete VNF Descriptor Test
118 [Tags] cleanup
119
120 Delete VNFD ${vnfd_name}
121
122
123*** Keywords ***
124Suite Cleanup
125 [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim
126
127 Run Keyword If Any Tests Failed Delete NS ${ns_name}
128
129 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
130
131 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}