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