blob: 0a76f819a29d0913f4f41d4cfef06caf0b31c78f [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 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 """
aticig15db6142022-01-24 12:51:26 +030031 vars = {"var1": "VAR1", "var2": "VAR2", "var3": "VAR3"}
32 expected = {"key1": "parsing var1='VAR1'", "key2": "parsing var2='VAR2'"}
bravof73bac502021-05-11 07:38:47 -040033 result = parse_job(text_to_parse, vars)
aticig15db6142022-01-24 12:51:26 +030034 self.assertEqual(result, expected, "Error at jinja2 parse")
tiernob996d942020-07-03 14:52:28 +000035
36
garciadeblas5697b8b2021-03-24 09:17:02 +010037if __name__ == "__main__":
tiernob996d942020-07-03 14:52:28 +000038 asynctest.main()