Add sanity tag to hackfest_basic and hackfest_cloudinit
[osm/tests.git] / robot-systest / testsuite / hackfest_cloudinit.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     [HACKFEST-CLOUDINIT] Basic NS with two multi-VDU VNF with cloudinit
15
16 Library   OperatingSystem
17 Library   String
18 Library   Collections
19 Library   Process
20 Library   SSHLibrary
21
22 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
23 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
24 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
25 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/connectivity_lib.robot
26 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
27
28 Variables   %{ROBOT_DEVOPS_FOLDER}/resources/hackfest_cloudinit_ns_data.py
29
30 Force Tags   hackfest_cloudinit   cluster_main   daily   regression   sanity
31
32 Suite Teardown   Run Keyword And Ignore Error   Suite Cleanup
33
34
35 *** Variables ***
36 ${ns_id}   ${EMPTY}
37 ${username}   ubuntu
38 ${password}   osm4u
39 ${vnf_member_index}   1
40 ${vnf_ip_addr}   ${EMPTY}
41 ${ns_config}   {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
42 # ${ns_config}   ${EMPTY}
43
44 *** Test Cases ***
45 Create Hackfest Cloudinit VNF Descriptor
46
47     Create VNFD   '%{PACKAGES_FOLDER}/${vnfd_pkg}'
48
49
50 Create Hackfest Cloudinit NS Descriptor
51
52     Create NSD   '%{PACKAGES_FOLDER}/${nsd_pkg}'
53
54
55 Network Service Instance Test
56
57     ${id}=   Create Network Service   ${nsd_name}   %{VIM_TARGET}   ${ns_name}   ${ns_config}   ${EMPTY}
58     Set Suite Variable   ${ns_id}   ${id}
59
60
61 Get Vnf Ip Address
62
63     ${ip_addr}  Get Vnf Management Ip Address   ${ns_id}   ${vnf_member_index}
64     log   ${ip_addr}
65     Set Suite Variable   ${vnf_ip_addr}   ${ip_addr}
66
67
68 Test SSH Access
69
70     Sleep   30s   Waiting ssh daemon to be up
71     Test SSH Connection   ${vnf_ip_addr}   ${username}   ${password}   ${privatekey}
72
73
74 Check Remote File Injected Via Cloud-init
75
76     ${stdout}=   Execute Remote Command Check Rc Return Output   ${vnf_ip_addr}   ${username}   ${password}   ${privatekey}   sudo cat /root/helloworld.txt
77     log   ${stdout}
78
79
80 Delete NS Instance Test
81     [Tags]   cleanup
82
83     Delete NS   ${ns_name}
84
85
86 Delete NS Descriptor Test
87     [Tags]   cleanup
88
89     Delete NSD   ${nsd_name}
90
91
92 Delete VNF Descriptor Test
93     [Tags]   cleanup
94
95     Delete VNFD   ${vnfd_name}
96
97
98 *** Keywords ***
99 Suite Cleanup
100     [Documentation]  Test Suit Cleanup: Deleting Descriptor, instance and vim
101
102     Run Keyword If Any Tests Failed  Delete NS   ${ns_name}
103
104     Run Keyword If Any Tests Failed  Delete NSD   ${nsd_name}
105
106     Run Keyword If Any Tests Failed  Delete VNFD   ${vnfd_name}
107
108