67b460db65818c542200494901bcd83faa93d614
[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
26 def test_parse_job(self):
27 text_to_parse = """
28 # yaml format with jinja2
29 key1: "parsing var1='{{ var1 }}'"
30 key2: "parsing var2='{{ var2 }}'"
31 """
32 vars = {'var1': 'VAR1', 'var2': 'VAR2', 'var3': 'VAR3'}
33 expected = {
34 'key1': "parsing var1='VAR1'",
35 'key2': "parsing var2='VAR2'"
36 }
37 result = parse_job(text_to_parse, vars)
38 self.assertEqual(result, expected, 'Error at jinja2 parse')
39
40
41 if __name__ == "__main__":
42 asynctest.main()