Updated VNF member identifier
[osm/tests.git] / robot-systest / testsuite / basic_09-manual_vdu_scaling.robot
1 #   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 ***
14 Documentation     [BASIC-09] Manual VNF/VDU Scaling.
15
16 Library   OperatingSystem
17 Library   String
18 Library   Collections
19
20 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
21 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
22 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
23 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
24
25 Force Tags   basic_09   cluster_main   daily   regression
26
27 Suite Teardown   Run Keyword And Ignore Error   Suite Cleanup
28
29
30 *** Variables ***
31 # NS and VNF descriptor package folder and ids
32 ${vnfd_pkg}   hackfest_basic_metrics_vnf
33 ${vnfd_name}   hackfest_basic_metrics-vnf
34 ${nsd_pkg}   hackfest_basic_metrics_ns
35 ${nsd_name}   hackfest_basic-ns-metrics
36
37 # NS instance name and configuration
38 ${ns_name}   basic_09_manual_scaling_test
39 ${ns_config}   {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
40 ${scaling_group}   vdu_autoscale
41 ${vnf_member_index}  vnf
42
43 # SSH public key file
44 ${publickey}   %{HOME}/.ssh/id_rsa.pub
45
46
47 *** Test Cases ***
48 Create Scaling VNF Descriptor
49     [Tags]   prepare
50     Create VNFD  '%{PACKAGES_FOLDER}/${vnfd_pkg}'
51
52
53 Create Scaling NS Descriptor
54     [Tags]   prepare
55     Create NSD  '%{PACKAGES_FOLDER}/${nsd_pkg}'
56
57
58 Instantiate Scaling Network Service
59     [Tags]   prepare
60     ${id}=  Create Network Service  ${nsd_name}  %{VIM_TARGET}  ${ns_name}  ${ns_config}  ${publickey}
61
62 Get Ns Id
63     [Tags]   verify
64     ${id}=   Get Ns Id   ${ns_name}
65     Set Suite Variable   ${ns_id}   ${id}
66
67 Get Vnf Id
68     [Tags]   verify
69     Variable Should Exist  ${ns_id}  msg=Network service instance is not available
70     @{vnfr_list}=  Get Ns Vnfr Ids  ${ns_id}
71     Log List  ${vnfr_list}
72     Set Suite Variable  ${vnf_id}  ${vnfr_list}[0]
73
74
75 Get Vdus Before Scale Out
76     [Tags]   verify
77     [Documentation]     Get the number of VDU records before the manual scaling.
78
79     @{vdur_list}=  Get Vnf Vdur Names  ${vnf_id}
80     Log List  ${vdur_list}
81     ${vdurs}=  Get Length  ${vdur_list}
82     Set Suite Variable  ${initial_vdur_count}  ${vdurs}
83
84
85 Perform Manual Vdu Scale Out
86     [Tags]   verify
87     Variable Should Exist  ${ns_id}  msg=Network service instance is not available
88     ${ns_op_id}=  Execute Manual VNF Scale  ${ns_name}  ${vnf_member_index}  ${scaling_group}  SCALE_OUT
89
90
91 Check Vdus After Scale Out
92     [Tags]   verify
93     [Documentation]     Check whether there is one more VDU after scaling or not.
94
95     Variable Should Exist  ${ns_id}  msg=Network service instance is not available
96     @{vdur_list}=  Get Vnf Vdur Names  ${vnf_id}
97     Log List  ${vdur_list}
98     ${vdurs}=  Get Length  ${vdur_list}
99     Run Keyword Unless  ${vdurs} == ${initial_vdur_count} + 1  Fail  msg=There is no new VDU records in the VNF after Scale Out
100
101
102 Perform Manual Vdu Scale In
103     [Tags]   verify
104     Variable Should Exist  ${ns_id}  msg=Network service instance is not available
105     ${ns_op_id}=  Execute Manual VNF Scale  ${ns_name}  ${vnf_member_index}  ${scaling_group}  SCALE_IN
106
107
108 Check Vdus After Scaling In
109     [Tags]   verify
110     [Documentation]     Check whether there is one less VDU after scaling or not.
111
112     Variable Should Exist  ${ns_id}  msg=Network service instance is not available
113     @{vdur_list}=  Get Vnf Vdur Names  ${vnf_id}
114     Log List  ${vdur_list}
115     ${vdurs}=  Get Length  ${vdur_list}
116     Run Keyword Unless  ${vdurs} == ${initial_vdur_count}  Fail  msg=There is the same number of VDU records in the VNF after Scale In
117
118
119 Delete NS Instance
120     [Tags]   cleanup
121
122     Delete NS  ${ns_name}
123
124
125 Delete NS Descriptor
126     [Tags]   cleanup
127
128     Delete NSD  ${nsd_name}
129
130
131 Delete VNF Descriptor
132     [Tags]   cleanup
133
134     Delete VNFD  ${vnfd_name}
135
136
137 *** Keywords ***
138 Suite Cleanup
139     [Documentation]  Test Suite Cleanup: Deleting descriptors and NS instance
140
141     Run Keyword If Any Tests Failed  Delete NS  ${ns_name}
142
143     Run Keyword If Any Tests Failed  Delete NSD  ${nsd_name}
144
145     Run Keyword If Any Tests Failed  Delete VNFD  ${vnfd_name}
146