fix violation of import rule in TestAPI
[releng.git] / utils / test / testapi / opnfv_testapi / common / config.py
1 ##############################################################################
2 # Copyright (c) 2015 Orange
3 # guyrodrigue.koffi@orange.com / koffirodrigue@gmail.com
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 # feng.xiaowei@zte.com.cn remove prepare_put_request            5-30-2016
9 ##############################################################################
10 import ConfigParser
11
12
13 class ParseError(Exception):
14     """
15     Custom exception class for config file
16     """
17
18     def __init__(self, message):
19         self.msg = message
20
21     def __str__(self):
22         return 'error parsing config file : %s' % self.msg
23
24
25 class APIConfig:
26     """
27     The purpose of this class is to load values correctly from the config file.
28     Each key is declared as an attribute in __init__() and linked in parse()
29     """
30
31     def __init__(self):
32         self._default_config_location = "/etc/opnfv_testapi/config.ini"
33         self.mongo_url = None
34         self.mongo_dbname = None
35         self.api_port = None
36         self.api_debug_on = None
37         self._parser = None
38         self.swagger_base_url = None
39
40     def _get_parameter(self, section, param):
41         try:
42             return self._parser.get(section, param)
43         except ConfigParser.NoOptionError:
44             raise ParseError("[%s.%s] parameter not found" % (section, param))
45
46     def _get_int_parameter(self, section, param):
47         try:
48             return int(self._get_parameter(section, param))
49         except ValueError:
50             raise ParseError("[%s.%s] not an int" % (section, param))
51
52     def _get_bool_parameter(self, section, param):
53         result = self._get_parameter(section, param)
54         if str(result).lower() == 'true':
55             return True
56         if str(result).lower() == 'false':
57             return False
58
59         raise ParseError(
60             "[%s.%s : %s] not a boolean" % (section, param, result))
61
62     @staticmethod
63     def parse(config_location=None):
64         obj = APIConfig()
65
66         if config_location is None:
67             config_location = obj._default_config_location
68
69         obj._parser = ConfigParser.SafeConfigParser()
70         obj._parser.read(config_location)
71         if not obj._parser:
72             raise ParseError("%s not found" % config_location)
73
74         # Linking attributes to keys from file with their sections
75         obj.mongo_url = obj._get_parameter("mongo", "url")
76         obj.mongo_dbname = obj._get_parameter("mongo", "dbname")
77
78         obj.api_port = obj._get_int_parameter("api", "port")
79         obj.api_debug_on = obj._get_bool_parameter("api", "debug")
80         obj.swagger_base_url = obj._get_parameter("swagger", "base_url")
81
82         return obj
83
84     def __str__(self):
85         return "mongo_url = %s \n" \
86                "mongo_dbname = %s \n" \
87                "api_port = %s \n" \
88                "api_debug_on = %s \n" \
89                "swagger_base_url = %s \n" % (self.mongo_url,
90                                              self.mongo_dbname,
91                                              self.api_port,
92                                              self.api_debug_on,
93                                              self.swagger_base_url)