Pin pylint version to 3.1.1 in tox.ini
[osm/LCM.git] / osm_lcm / tests / test_prometheus.py
1 ##
2 # Licensed under the Apache License, Version 2.0 (the "License"); you may
3 # not use this file except in compliance with the License. You may obtain
4 # a copy of the License at
5 #
6 # http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
10 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
11 # License for the specific language governing permissions and limitations
12 # under the License.
13 #
14 # For those usages not covered by the Apache License, Version 2.0 please
15 # contact: alfonso.tiernosepulveda@telefonica.com
16 ##
17
18 import asynctest
19 from osm_lcm.prometheus import parse_job
20
21 __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
22
23
24 class TestPrometheus(asynctest.TestCase):
25 def test_parse_job(self):
26 text_to_parse = """
27 # yaml format with jinja2
28 key1: "parsing var1='{{ var1 }}'"
29 key2: "parsing var2='{{ var2 }}'"
30 """
31 vars = {"var1": "VAR1", "var2": "VAR2", "var3": "VAR3"}
32 expected = {"key1": "parsing var1='VAR1'", "key2": "parsing var2='VAR2'"}
33 result = parse_job(text_to_parse, vars)
34 self.assertEqual(result, expected, "Error at jinja2 parse")
35
36
37 if __name__ == "__main__":
38 asynctest.main()