| tierno | b996d94 | 2020-07-03 14:52:28 +0000 | [diff] [blame] | 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 |
| bravof | 73bac50 | 2021-05-11 07:38:47 -0400 | [diff] [blame] | 19 | from osm_lcm.prometheus import parse_job |
| tierno | b996d94 | 2020-07-03 14:52:28 +0000 | [diff] [blame] | 20 | |
| garciadeblas | 5697b8b | 2021-03-24 09:17:02 +0100 | [diff] [blame] | 21 | __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>" |
| tierno | b996d94 | 2020-07-03 14:52:28 +0000 | [diff] [blame] | 22 | |
| 23 | |
| 24 | class TestPrometheus(asynctest.TestCase): |
| tierno | b996d94 | 2020-07-03 14:52:28 +0000 | [diff] [blame] | 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 | """ |
| aticig | 15db614 | 2022-01-24 12:51:26 +0300 | [diff] [blame] | 31 | vars = {"var1": "VAR1", "var2": "VAR2", "var3": "VAR3"} |
| 32 | expected = {"key1": "parsing var1='VAR1'", "key2": "parsing var2='VAR2'"} |
| bravof | 73bac50 | 2021-05-11 07:38:47 -0400 | [diff] [blame] | 33 | result = parse_job(text_to_parse, vars) |
| aticig | 15db614 | 2022-01-24 12:51:26 +0300 | [diff] [blame] | 34 | self.assertEqual(result, expected, "Error at jinja2 parse") |
| tierno | b996d94 | 2020-07-03 14:52:28 +0000 | [diff] [blame] | 35 | |
| 36 | |
| garciadeblas | 5697b8b | 2021-03-24 09:17:02 +0100 | [diff] [blame] | 37 | if __name__ == "__main__": |
| tierno | b996d94 | 2020-07-03 14:52:28 +0000 | [diff] [blame] | 38 | asynctest.main() |