blob: b3b51ebbfa7b36a1cfdf4461831209164c1df2e3 [file] [log] [blame]
Alexis Romerodd1b09d2022-03-16 06:51:43 +01001# 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 [BASIC-24] VNF with two VDUs belonging to an Openstack server group
Alexis Romerodd1b09d2022-03-16 06:51:43 +010015
16Library OperatingSystem
17Library String
18Library Collections
19Library Process
20
21Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
22Resource %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
23Resource %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
24Resource %{ROBOT_DEVOPS_FOLDER}/lib/vnf_lib.robot
25Resource %{ROBOT_DEVOPS_FOLDER}/lib/openstack_lib.robot
26
27Force Tags basic_24 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} affinity_basic_vnf
36${vnfd_name} affinity_basic-vnf
37${nsd_pkg} affinity_basic_ns
38${nsd_name} affinity_basic-ns
39
40# NS instance name and configuration
41${ns_name} basic_24
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} affinity-basic-1
52${success_return_code} 0
53
54*** Test Cases ***
55Create VNF Package
56
57 Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}'
58
59
60Create NS Package
61
62 Create NSD '%{PACKAGES_FOLDER}/${nsd_pkg}'
63
64
65Network Service Instance Test
66
67 ${id}= Create Network Service ${nsd_name} %{VIM_TARGET} ${ns_name} ${ns_config} ${publickey}
68 Set Suite Variable ${ns_id} ${id}
69
70
71Check Vnf Affinity Groups
72
73 Variable Should Exist ${ns_id} msg=NS is not available
74 ${vnf_id} Get Vnf Id ${ns_id} ${vnf_member_index}
75 @{vdur_id_list} Get VDU list from VNF ${vnf_id}
76 FOR ${vdur_id} IN @{vdur_id_list}
77 ${server_group_name} Get VDU Affinity Group Name ${ns_name} ${vnf_id} ${vdur_id}
78 ${vm_vim_id} Get VDU VIM Id ${vnf_id} ${vdur_id}
79 Check VM In Server Group ${vm_vim_id} ${server_group_name}
80 END
81
82
83Delete NS Instance Test
84 [Tags] cleanup
85
86 Delete NS ${ns_name}
87
88
89Delete NS Descriptor Test
90 [Tags] cleanup
91
92 Delete NSD ${nsd_name}
93
94
95Delete VNF Descriptor Test
96 [Tags] cleanup
97
98 Delete VNFD ${vnfd_name}
99
100
101*** Keywords ***
102Suite Cleanup
garciadeblasf4ebaa82022-06-23 13:33:26 +0200103 [Documentation] Test Suit Cleanup: Deleting Descriptor, instance and vim
Alexis Romerodd1b09d2022-03-16 06:51:43 +0100104
105 Run Keyword If Any Tests Failed Delete NS ${ns_name}
106
107 Run Keyword If Any Tests Failed Delete NSD ${nsd_name}
108
109 Run Keyword If Any Tests Failed Delete VNFD ${vnfd_name}
110