Prohibit the importation of a list of libraries
[yardstick.git] / yardstick / common / constants.py
1 ##############################################################################
2 # Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 from __future__ import absolute_import
10
11 import errno
12 import os
13 from functools import reduce
14
15 import pkg_resources
16
17 # this module must only import other modules that do
18 # not require loggers to be created, so this cannot
19 # include yardstick.common.utils
20 from yardstick.common.yaml_loader import yaml_load
21
22 dirname = os.path.dirname
23 abspath = os.path.abspath
24 join = os.path.join
25 sep = os.path.sep
26
27 CONF = {}
28
29
30 def get_param(key, default=''):
31
32     # we have to defer this to runtime so that we can mock os.environ.get in unittests
33     conf_file = os.environ.get('CONF_FILE', '/etc/yardstick/yardstick.yaml')
34
35     # don't re-parse yaml for each lookup
36     if not CONF:
37         # do not use yardstick.common.utils.parse_yaml
38         # since yardstick.common.utils creates a logger
39         # and so it cannot be imported before this code
40         try:
41             with open(conf_file) as f:
42                 value = yaml_load(f)
43         except (IOError, OSError) as e:
44             if e.errno != errno.ENOENT:
45                 raise
46         else:
47             CONF.update(value)
48     try:
49         return reduce(lambda a, b: a[b], key.split('.'), CONF)
50     except KeyError:
51         if not default:
52             raise
53         return default
54
55
56 try:
57     SERVER_IP = get_param('api.server_ip')
58 except KeyError:
59     try:
60         from pyroute2 import IPDB
61     except ImportError:
62         SERVER_IP = '172.17.0.1'
63     else:
64         with IPDB() as ip:
65             try:
66                 SERVER_IP = ip.routes['default'].gateway
67             except KeyError:
68                 # during unittests ip.routes['default'] can be invalid
69                 SERVER_IP = '127.0.0.1'
70
71 if not SERVER_IP:
72     SERVER_IP = '127.0.0.1'
73
74
75 # dir
76 CONF_DIR = get_param('dir.conf', '/etc/yardstick')
77 IMAGE_DIR = get_param('dir.images', '/home/opnfv/images/')
78 REPOS_DIR = get_param('dir.repos', '/home/opnfv/repos/yardstick')
79 RELENG_DIR = get_param('dir.releng', '/home/opnfv/repos/releng')
80 LOG_DIR = get_param('dir.log', '/tmp/yardstick/')
81 YARDSTICK_ROOT_PATH = dirname(
82     dirname(abspath(pkg_resources.resource_filename(__name__, "")))) + sep
83 TASK_LOG_DIR = get_param('dir.tasklog', '/var/log/yardstick/')
84 CONF_SAMPLE_DIR = join(REPOS_DIR, 'etc/yardstick/')
85 ANSIBLE_DIR = join(REPOS_DIR, 'ansible')
86 SAMPLE_CASE_DIR = join(REPOS_DIR, 'samples')
87 TESTCASE_DIR = join(YARDSTICK_ROOT_PATH, 'tests/opnfv/test_cases/')
88 TESTSUITE_DIR = join(YARDSTICK_ROOT_PATH, 'tests/opnfv/test_suites/')
89 DOCS_DIR = join(REPOS_DIR, 'docs/testing/user/userguide/')
90 OPENSTACK_CONF_DIR = '/etc/openstack'
91
92 # file
93 OPENRC = get_param('file.openrc', '/etc/yardstick/openstack.creds')
94 ETC_HOSTS = get_param('file.etc_hosts', '/etc/hosts')
95 CONF_FILE = join(CONF_DIR, 'yardstick.conf')
96 POD_FILE = join(CONF_DIR, 'pod.yaml')
97 CLOUDS_CONF = join(OPENSTACK_CONF_DIR, 'clouds.yml')
98 K8S_CONF_FILE = join(CONF_DIR, 'admin.conf')
99 CONF_SAMPLE_FILE = join(CONF_SAMPLE_DIR, 'yardstick.conf.sample')
100 FETCH_SCRIPT = get_param('file.fetch_script', 'utils/fetch_os_creds.sh')
101 FETCH_SCRIPT = join(RELENG_DIR, FETCH_SCRIPT)
102 CLEAN_IMAGES_SCRIPT = get_param('file.clean_image_script',
103                                 'tests/ci/clean_images.sh')
104 CLEAN_IMAGES_SCRIPT = join(REPOS_DIR, CLEAN_IMAGES_SCRIPT)
105 LOAD_IMAGES_SCRIPT = get_param('file.load_image_script',
106                                'tests/ci/load_images.sh')
107 LOAD_IMAGES_SCRIPT = join(REPOS_DIR, LOAD_IMAGES_SCRIPT)
108 DEFAULT_OUTPUT_FILE = get_param('file.output_file', '/tmp/yardstick.out')
109 DEFAULT_HTML_FILE = get_param('file.html_file', '/tmp/yardstick.htm')
110 REPORTING_FILE = get_param('file.reporting_file', '/tmp/report.html')
111
112 # influxDB
113 INFLUXDB_IP = get_param('influxdb.ip', SERVER_IP)
114 INFLUXDB_PORT = get_param('influxdb.port', 8086)
115 INFLUXDB_USER = get_param('influxdb.username', 'root')
116 INFLUXDB_PASS = get_param('influxdb.password', 'root')
117 INFLUXDB_DB_NAME = get_param('influxdb.db_name', 'yardstick')
118 INFLUXDB_IMAGE = get_param('influxdb.image', 'tutum/influxdb')
119 INFLUXDB_TAG = get_param('influxdb.tag', '0.13')
120 INFLUXDB_DASHBOARD_PORT = 8083
121
122 # grafana
123 GRAFANA_IP = get_param('grafana.ip', SERVER_IP)
124 GRAFANA_PORT = get_param('grafana.port', 3000)
125 GRAFANA_USER = get_param('grafana.username', 'admin')
126 GRAFANA_PASS = get_param('grafana.password', 'admin')
127 GRAFANA_IMAGE = get_param('grafana.image', 'grafana/grafana')
128 GRAFANA_TAG = get_param('grafana.tag', '4.4.3')
129 GRAFANA_MAPPING_PORT = 1948
130
131 # api
132 API_PORT = 5000
133 DOCKER_URL = 'unix://var/run/docker.sock'
134 INSTALLERS = ['apex', 'compass', 'fuel', 'joid']
135 SQLITE = 'sqlite:////tmp/yardstick.db'
136
137 API_SUCCESS = 1
138 API_ERROR = 2
139 TASK_NOT_DONE = 0
140 TASK_DONE = 1
141 TASK_FAILED = 2
142
143 BASE_URL = 'http://localhost:5000'
144 ENV_ACTION_API = BASE_URL + '/yardstick/env/action'
145 ASYNC_TASK_API = BASE_URL + '/yardstick/asynctask'
146
147 # general
148 TESTCASE_PRE = 'opnfv_yardstick_'
149 TESTSUITE_PRE = 'opnfv_'