7e65c9e858f6014c3005cae26c3389ecbae19eba
[osm/tests.git] / robot-systest / testsuite / basic_08-disable_port_security_network_level.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-08] Disable port security at network level.
15
16 Library   OperatingSystem
17 Library   String
18 Library   Collections
19
20 Resource   %{ROBOT_DEVOPS_FOLDER}/lib/vim_lib.robot
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/prometheus_lib.robot
25
26 Variables   %{ROBOT_DEVOPS_FOLDER}/resources/basic_08-disable_port_security_network_level_data.py
27
28 Suite Teardown   Run Keyword And Ignore Error   Suite Cleanup
29
30
31 *** Variables ***
32 ${ns_config}   {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
33 ${port_disabled_msg}   port_security_enabled: false
34
35 *** Test Cases ***
36 Create VIM With Port Security Disabled
37     [Tags]  disable_port_security  sanity   regression
38
39     ${created_vim_account_id}=  Create VIM Target  ${vim_name}  ${vim_user}  ${vim_password}  ${vim_auth_url}  ${vim_tenant}  ${vim_account_type}  config=${vim_config}
40     Check for VIM Target Status  ${vim_name}  ${prometheus_host}  ${prometheus_port}
41
42 Create VNF Descriptor
43     [Tags]   disable_port_security   sanity   regression
44
45     Create VNFD  '%{PACKAGES_FOLDER}/${vnfd_pkg}'
46
47
48 Create NS Descriptor
49     [Tags]   disable_port_security   sanity   regression
50
51     Create NSD  '%{PACKAGES_FOLDER}/${nsd_pkg}'
52
53
54 Instantiate Network Service
55     [Tags]   disable_port_security   sanity   regression
56
57     ${id}=  Create Network Service  ${nsd_name}  ${vim_name}  ${ns_name}  ${ns_config}  ${publickey}
58     Set Suite Variable  ${ns_id}  ${id}
59
60
61 Check Port Security Is Disabled
62     [Tags]   disable_port_security   sanity   regression
63
64     ${rc}   ${disabled_ports}=   Run and Return RC and Output   osm ns-show ${ns_name} --literal | grep -c '${port_disabled_msg}'
65     Run Keyword Unless  ${disabled_ports} > 0  Fail  msg=Found '${disabled_ports}' matches for '${port_disabled_msg}'
66
67
68 Delete NS Instance
69     [Tags]   disable_port_security   sanity   regression  cleanup
70
71     Delete NS  ${ns_name}
72
73
74 Delete NS Descriptor
75     [Tags]   disable_port_security   sanity   regression  cleanup
76
77     Delete NSD  ${nsd_name}
78
79
80 Delete VNF Descriptor
81     [Tags]   disable_port_security   sanity   regression  cleanup
82
83     Delete VNFD  ${vnfd_name}
84
85
86 Delete VIM
87     [Tags]  disable_port_security  sanity   regression  cleanup
88
89     Delete VIM Target  ${vim_name}
90
91
92 *** Keywords ***
93 Suite Cleanup
94     [Documentation]  Test Suite Cleanup: Deleting descriptors and NS instance
95
96     Run Keyword If Any Tests Failed  Delete NS  ${ns_name}
97     Run Keyword If Any Tests Failed  Delete NSD  ${nsd_name}
98     Run Keyword If Any Tests Failed  Delete VNFD  ${vnfd_name}
99     Run Keyword If Any Tests Failed  Delete VIM Target  ${vim_name}