b0d66d8c65c4a51e1aaae72deba15dc462fd2d48
[osm/tests.git] / robot-systest / testsuite / basic_05-instantiation_parameters_in_cloud_init.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-05] Instantiation parameters in cloud-init.
15
16 Library   OperatingSystem
17 Library   SSHLibrary
18
19 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
20 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
21 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
22 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
23
24 Variables   %{ROBOT_DEVOPS_FOLDER}/resources/basic_05-instantiation_parameters_in_cloud_init_data.py
25
26 Force Tags   basic_05   cluster_main   daily   regression
27
28 Suite Teardown   Run Keyword And Ignore Error   Suite Cleanup
29
30
31 *** Variables ***
32 ${username}   ubuntu
33 ${new_password}   newpassword
34 ${vnf_member_index}   1
35 ${ns_config}   {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ], additionalParamsForVnf: [ { member-vnf-index: "${vnf_member_index}", additionalParams: { password: "${new_password}" } } ] }
36
37
38 *** Test Cases ***
39 Create Cloudinit VNF Descriptor
40
41     Create VNFD  '%{PACKAGES_FOLDER}/${vnfd_pkg}'
42
43
44 Create Cloudinit NS Descriptor
45
46     Create NSD  '%{PACKAGES_FOLDER}/${nsd_pkg}'
47
48
49 Instantiate Cloudinit Network Service Using Instantiation Parameters
50     [Documentation]     Instantiates the NS using the instantiation parameter 'additionalParamsForVnf' to change the password of the default user.
51
52     ${id}=  Create Network Service  ${nsd_name}  %{VIM_TARGET}  ${ns_name}  ${ns_config}  ${EMPTY}
53     Set Suite Variable  ${ns_id}  ${id}
54
55
56 Get Management Ip Addresses
57
58     ${ip_addr}  Get Vnf Management Ip Address  ${ns_id}  ${vnf_member_index}
59     log  ${ip_addr}
60     Set Suite Variable  ${vnf_ip_addr}  ${ip_addr}
61
62
63 Test SSH Access With The New Password
64     [Documentation]     Test SSH access with the new password configured via cloud-init.
65
66     Variable Should Exist  ${vnf_ip_addr}  msg=IP address of the management VNF is not available
67     Sleep  30s  Waiting ssh daemon to be up
68     Test SSH Connection  ${vnf_ip_addr}  ${username}  ${new_password}  ${EMPTY}
69
70
71 Delete NS Instance
72     [Tags]   cleanup
73
74     Delete NS  ${ns_name}
75
76
77 Delete NS Descriptor
78     [Tags]   cleanup
79
80     Delete NSD  ${nsd_name}
81
82
83 Delete VNF Descriptor
84     [Tags]   cleanup
85
86     Delete VNFD  ${vnfd_name}
87
88
89 *** Keywords ***
90 Suite Cleanup
91     [Documentation]  Test Suite Cleanup: Deleting descriptors and NS instance
92
93     Run Keyword If Any Tests Failed  Delete NS  ${ns_name}
94
95     Run Keyword If Any Tests Failed  Delete NSD  ${nsd_name}
96
97     Run Keyword If Any Tests Failed  Delete VNFD  ${vnfd_name}
98