Adds Robot test BASIC-08 for disabling port security
[osm/tests.git] / robot-systest / resources / basic_08-disable_port_security_network_level_data.py
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 import os
14 import yaml
15 from pathlib import Path
16
17 # Prometheus host and port
18 if os.environ.get("PROMETHEUS_HOSTNAME", False):
19 prometheus_host = os.environ.get("PROMETHEUS_HOSTNAME")
20 prometheus_port = "9090"
21 else:
22 prometheus_host = os.environ.get("OSM_HOSTNAME")
23 prometheus_port = "9091"
24
25 # VIM Configuration
26 vim_account_type = "openstack"
27 vim_name = "basic_08_vim_test"
28 # Get credentials from Openstack clouds file
29 os_cloud = os.environ.get("OS_CLOUD")
30 clouds_file_paths = ["./clouds.yaml", str(Path.home()) + "/.config/openstack/clouds.yaml", "/etc/openstack/clouds.yaml"]
31 for path in clouds_file_paths:
32 clouds_file_path = Path(path)
33 if clouds_file_path.exists(): break
34 if not clouds_file_path.exists(): raise Exception("Openstack clouds file not found")
35 with clouds_file_path.open() as clouds_file:
36 clouds = yaml.safe_load(clouds_file)
37 if not os_cloud in clouds["clouds"]: raise Exception("Openstack cloud '" + os_cloud + "' not found")
38 cloud = clouds["clouds"][os_cloud]
39 if not "username" in cloud["auth"]: raise Exception("Username not found in Openstack cloud '" + os_cloud + "'")
40 vim_user = cloud["auth"]["username"]
41 if not "password" in cloud["auth"]: raise Exception("Password not found in Openstack cloud '" + os_cloud + "'")
42 vim_password = cloud["auth"]["password"]
43 if not "auth_url" in cloud["auth"]: raise Exception("Auth url not found in Openstack cloud '" + os_cloud + "'")
44 vim_auth_url = cloud["auth"]["auth_url"]
45 if not "project_name" in cloud["auth"]: raise Exception("Project name not found in Openstack cloud '" + os_cloud + "'")
46 vim_tenant = cloud["auth"]["project_name"]
47 vim_user_domain_name = cloud["auth"]["user_domain_name"] if "user_domain_name" in cloud["auth"] else "Default"
48 vim_project_domain_name = cloud["auth"]["project_domain_name"] if "project_domain_name" in cloud["auth"] else "Default"
49 # Extra VIM config
50 vim_config = "'{project_domain_name: " + vim_project_domain_name + ", user_domain_name: " + vim_user_domain_name + ", vim_network_name: " + os.environ.get("VIM_MGMT_NET") + ", disable_network_port_security: True}'"
51
52 # Get ${HOME} from local machine
53 home = str(Path.home())
54 # NS and VNF descriptor package folder
55 vnfd_pkg = 'hackfest_multivdu_vnf'
56 nsd_pkg = 'hackfest_multivdu_ns'
57 # NS and VNF descriptor id
58 vnfd_name = 'hackfest_multivdu-vnf'
59 nsd_name = 'hackfest_multivdu-ns'
60 # NS instance name
61 ns_name = 'basic_08_disable_port_security_network_level_test'
62 # SSH keys to be used
63 publickey = home + '/.ssh/id_rsa.pub'
64 privatekey = home + '/.ssh/id_rsa'