Add PROMETHEUS_PORT
[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 from pathlib import Path
15 import yaml
16
17 from common_helpers import get_prometheus_info
18
19
20 # Prometheus host and port
21 (prometheus_host, prometheus_port) = get_prometheus_info()
22
23 # VIM Configuration
24 vim_account_type = "openstack"
25 vim_name = "basic_08_vim_test"
26
27 # Get credentials from Openstack clouds file
28 os_cloud = os.environ.get("OS_CLOUD")
29 clouds_file_paths = ["./clouds.yaml", str(Path.home()) + "/.config/openstack/clouds.yaml", "/etc/openstack/clouds.yaml"]
30 for path in clouds_file_paths:
31 clouds_file_path = Path(path)
32 if clouds_file_path.exists():
33 break
34 if not clouds_file_path.exists():
35 raise Exception("Openstack clouds file not found")
36 with clouds_file_path.open() as clouds_file:
37 clouds = yaml.safe_load(clouds_file)
38 if not os_cloud in clouds["clouds"]:
39 raise Exception("Openstack cloud '" + os_cloud + "' not found")
40 cloud = clouds["clouds"][os_cloud]
41 if not "username" in cloud["auth"]:
42 raise Exception("Username not found in Openstack cloud '" + os_cloud + "'")
43 vim_user = cloud["auth"]["username"]
44 if not "password" in cloud["auth"]:
45 raise Exception("Password not found in Openstack cloud '" + os_cloud + "'")
46 vim_password = cloud["auth"]["password"]
47 if not "auth_url" in cloud["auth"]:
48 raise Exception("Auth url not found in Openstack cloud '" + os_cloud + "'")
49 vim_auth_url = cloud["auth"]["auth_url"]
50 if not "project_name" in cloud["auth"]:
51 raise Exception("Project name not found in Openstack cloud '" + os_cloud + "'")
52 vim_tenant = cloud["auth"]["project_name"]
53 vim_user_domain_name = cloud["auth"]["user_domain_name"] if "user_domain_name" in cloud["auth"] else None
54 vim_project_domain_name = cloud["auth"]["project_domain_name"] if "project_domain_name" in cloud["auth"] else None
55 vim_insecure = True if "verify" in cloud and not cloud["verify"] else None
56
57 # Extra VIM config
58 vim_config_dict = {}
59 vim_config_dict["vim_network_name"] = os.environ.get("VIM_MGMT_NET")
60 if vim_project_domain_name:
61 vim_config_dict["project_domain_name"] = vim_project_domain_name
62 if vim_user_domain_name:
63 vim_config_dict["user_domain_name"] = vim_user_domain_name
64 if vim_insecure:
65 vim_config_dict["insecure"] = True
66 vim_config_dict["disable_network_port_security"] = True
67 vim_config = "'{}'".format(yaml.safe_dump(vim_config_dict, default_flow_style=True, width=10000).rstrip('\r\n'))
68
69 # Get ${HOME} from local machine
70 home = str(Path.home())
71 # NS and VNF descriptor package folder
72 vnfd_pkg = 'hackfest_multivdu_vnf'
73 nsd_pkg = 'hackfest_multivdu_ns'
74 # NS and VNF descriptor id
75 vnfd_name = 'hackfest_multivdu-vnf'
76 nsd_name = 'hackfest_multivdu-ns'
77 # NS instance name
78 ns_name = 'basic_08_disable_port_security_network_level_test'
79 # SSH keys to be used
80 publickey = home + '/.ssh/id_rsa.pub'
81 privatekey = home + '/.ssh/id_rsa'