dec84fa0caaf1cdcb99a24efebec56a173e171b9
[osm/tests.git] / robot-systest / testsuite / epa_01-epa_sriov.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     [EPA-01] EPA+SRIOV without underlay.
15
16 Library   OperatingSystem
17 Library   String
18 Library   Collections
19 Library   SSHLibrary
20
21 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
22 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
23 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
24 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
25
26 Variables   %{ROBOT_DEVOPS_FOLDER}/resources/epa_01-epa_sriov_data.py
27
28 Force Tags   epa_01   cluster_epa   daily   regression
29
30 Suite Teardown   Run Keyword And Ignore Error   Suite Cleanup
31
32
33 *** Variables ***
34 ${ns_id}   ${EMPTY}
35 ${username}   ubuntu
36 ${password}   osm4u
37 ${vnf_member_index}   1
38 ${vnf_ip_addr}   ${EMPTY}
39 ${ns_config}   {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
40
41
42 *** Test Cases ***
43 Create VNF Descriptor
44
45     Create VNFD  '%{PACKAGES_FOLDER}/${vnfd_pkg}'
46
47
48 Create NS Descriptor
49
50     Create NSD  '%{PACKAGES_FOLDER}/${nsd_pkg}'
51
52
53 Instantiate Network Service
54
55     ${id}=  Create Network Service  ${nsd_name}  %{VIM_TARGET}  ${ns_name}  ${ns_config}  ${publickey}
56     Set Suite Variable  ${ns_id}  ${id}
57
58
59 Get VNF IP Address
60
61     ${ip_addr}=  Get Vnf Management Ip Address   ${ns_id}   ${vnf_member_index}
62     log   ${ip_addr}
63     Set Suite Variable   ${vnf_ip_addr}   ${ip_addr}
64
65
66 Check SR-IOV Interface
67
68     Sleep  30 seconds  Waiting for SSH daemon to be up
69     Execute Remote Command Check Rc Return Output   ${vnf_ip_addr}   ${username}   ${password}   ${privatekey}   lspci | grep "Ethernet controller" | grep -v "Virtio"
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