blob: 67b460db65818c542200494901bcd83faa93d614 [file] [log] [blame]
tiernob996d942020-07-03 14:52:28 +00001##
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
18import asynctest
bravof73bac502021-05-11 07:38:47 -040019from osm_lcm.prometheus import parse_job
tiernob996d942020-07-03 14:52:28 +000020
garciadeblas5697b8b2021-03-24 09:17:02 +010021__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
tiernob996d942020-07-03 14:52:28 +000022
23
24class TestPrometheus(asynctest.TestCase):
tiernob996d942020-07-03 14:52:28 +000025
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 """
bravof73bac502021-05-11 07:38:47 -040032 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')
tiernob996d942020-07-03 14:52:28 +000039
40
garciadeblas5697b8b2021-03-24 09:17:02 +010041if __name__ == "__main__":
tiernob996d942020-07-03 14:52:28 +000042 asynctest.main()