blob: bc957d3dfe60a4c562c5d85be13655d5fa53e588 [file] [log] [blame]
aguilard218c67b2021-10-25 12:57:27 +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 ***
14Documentation [BASIC-21] NS with only one VDU and several volumes
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/ssh_lib.robot
26
27Force Tags basic_21 cluster_main daily regression
28
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} several_volumes_vnf
36${vnfd_name} several_volumes-vnf
37${nsd_pkg} several_volumes_ns
38${nsd_name} several_volumes-ns
39
40# NS instance name and configuration
41${ns_name} basic_21
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
47${username} ubuntu
48${password} ${EMPTY}
49
50${ns_id} ${EMPTY}
51${vnf_member_index} vnf-several-volumes
52${vnf_ip_addr} ${EMPTY}
aguilardd45d50a2021-11-05 14:26:42 +010053${success_return_code} 0
aguilard218c67b2021-10-25 12:57:27 +020054
55
56*** Test Cases ***
57Create VNF Descriptor
58
59 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
60
61
aguilardd45d50a2021-11-05 14:26:42 +010062Get Volumes From VNF
63
64 ${rc} ${stdout}= Run and Return RC and Output osm vnfpkg-show ${vnfd_name} --literal | yq '."virtual-storage-desc" | length'
65 Should Be Equal As Integers ${rc} ${success_return_code} msg=${stdout} values=False
66 ${num_virtual_storage}= Convert To Integer ${stdout}
67 Set Suite Variable ${vnf_num_volumes} ${num_virtual_storage}
68 log ${vnf_num_volumes}
69
70
aguilard218c67b2021-10-25 12:57:27 +020071Create NS Descriptor
72
73 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
74
75Network Service Instance Test
76
77 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey}
78 Set Suite Variable ${ns_id} ${id}
79
80
81Get Vnf Ip Address
82
83 Variable Should Exist ${ns_id} msg=NS is not available
84 ${ip_addr} Get Vnf Management Ip Address ${ns_id} ${vnf_member_index}
85 log ${ip_addr}
86 Set Suite Variable ${vnf_ip_addr} ${ip_addr}
87
88
89Check Vdu disks
90
91 Variable Should Exist ${vnf_ip_addr} msg=VNF is not available
92 Sleep 30 seconds Wait for SSH daemon to be up
aguilardd45d50a2021-11-05 14:26:42 +010093 ${stdout}= Execute Remote Command Check Rc Return Output ${vnf_ip_addr} ${username} ${password} ${privatekey} sudo lsblk -l
aguilard218c67b2021-10-25 12:57:27 +020094 log ${stdout}
aguilardd45d50a2021-11-05 14:26:42 +010095 ${lines}= Get Lines Containing String ${stdout} disk
96 ${num_lines}= Get Line Count ${lines}
97 Run Keyword If ${num_lines} < ${vnf_num_volumes} Fail msg=Number of disks (${num_lines}) is less than specified in VDU (${vnf_num_volumes})
aguilard218c67b2021-10-25 12:57:27 +020098
99
100Delete NS Instance Test
101 [Tags] cleanup
102
103 Delete NS ${ns_name}
104
105
106Delete NS Descriptor Test
107 [Tags] cleanup
108
109 Delete NSD ${nsd_name}
110
111
112Delete VNF Descriptor Test
113 [Tags] cleanup
114
115 Delete VNFD ${vnfd_name}
116
117
118*** Keywords ***
119Suite Cleanup
120 [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim
121
122 Run Keyword If Any Tests Failed Delete NS ${ns_name}
123
124 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
125
126 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}
127
128