Mercurial > hgrepos > Python > libs > ConfigMix
annotate tests/test.py @ 338:933df3ffd428
Tests: add some more asserte to test_namespace_quoting
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Sat, 08 May 2021 18:48:42 +0200 |
| parents | 22b9dc539d6f |
| children | 176e22110fc5 |
| rev | line source |
|---|---|
| 93 | 1 # -*- coding: utf-8 -*- |
| 2 | |
| 3 import sys | |
| 4 import os | |
| 5 import unittest | |
|
116
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
6 import platform |
|
119
eefde3288fb8
FIX: YAML-file streams must be opened as UTF-8 text files; otherwise double encoding occurs for non-Unicode locales (e.g. Windows)
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
116
diff
changeset
|
7 import io |
| 93 | 8 |
| 9 sys.path.insert( | |
| 10 0, | |
| 11 os.path.abspath( | |
| 12 os.path.normpath(os.path.join(os.path.dirname(__file__), "..")))) | |
| 13 | |
| 14 import configmix | |
| 15 import configmix.ini | |
| 16 import configmix.yaml | |
|
122
21d92ff8cf31
Begin the handling of JSON-style configuration files
Franz Glasner <hg@dom66.de>
parents:
120
diff
changeset
|
17 import configmix.json |
| 93 | 18 import configmix.py |
|
195
28e6c1413947
Added support for TOML style configuration files
Franz Glasner <fzglas.hg@dom66.de>
parents:
183
diff
changeset
|
19 import configmix.toml |
| 93 | 20 from configmix.compat import u |
| 21 | |
| 22 | |
| 23 TESTDATADIR = os.path.join( | |
| 24 os.path.abspath(os.path.dirname(__file__)), | |
| 25 "data") | |
| 26 | |
| 27 | |
| 28 class T01Basic(unittest.TestCase): | |
| 29 | |
| 30 """Check with low-level internal interfaces""" | |
| 31 | |
| 32 def __check_types(self, cfg): | |
| 33 self.assertEqual(u("the value"), | |
| 34 cfg.get("key1")) | |
| 35 self.assertTrue(isinstance(cfg.get("key1"), type(u('')))) | |
| 36 self.assertEqual(2, cfg.get("key2")) | |
| 37 self.assertEqual(5.7, cfg.get("key3")) | |
| 38 self.assertTrue(isinstance(cfg.get("key1"), type(u('')))) | |
| 39 self.assertTrue(cfg.get("key4")) | |
| 40 self.assertTrue(isinstance(cfg.get("key4"), bool)) | |
| 41 self.assertFalse(cfg.get("key5")) | |
| 42 self.assertTrue(isinstance(cfg.get("key5"), bool)) | |
| 95 | 43 self.assertEqual(255, cfg.get("key6")) |
|
120
ba5970a2dcef
The default file encoding when reading INI style files with configmix.ini.load() is now "UTF-8".
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
119
diff
changeset
|
44 self.assertEqual(u("Umlaute: ÄÖÜäöüß"), |
|
ba5970a2dcef
The default file encoding when reading INI style files with configmix.ini.load() is now "UTF-8".
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
119
diff
changeset
|
45 cfg.get("key7")) |
| 93 | 46 |
|
144
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
47 def __check_comment(self, cfg): |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
48 # Check comments: low level comments are *not* filtered |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
49 self.assertEqual(u("Comment 1"), cfg.get("__comment1")) |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
50 self.assertEqual(u("Comment no 2"), cfg.get("__comment2")) |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
51 |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
52 def __check_no_comment(self, cfg): |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
53 |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
54 def _c(name): |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
55 def _f(): |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
56 cfg[u(name)] |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
57 return _f |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
58 |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
59 # Variables with leading underscores are *not* imported by default |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
60 self.assertRaises(KeyError, _c("__comment1")) |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
61 self.assertRaises(KeyError, _c("__comment2")) |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
62 |
|
97
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
63 def __check_tree(self, cfg): |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
64 self.assertEqual(u("in the root namespace"), |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
65 cfg.get("key1")) |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
66 self.assertEqual(u("in the root namespace -- too"), |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
67 cfg.get("key2")) |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
68 self.assertEqual(32, |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
69 cfg["tree1"]["key3"]) |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
70 self.assertEqual(u("get this as `tree1.tree2.key4'"), |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
71 cfg["tree1"]["tree2"]["key4"]) |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
72 self.assertTrue(cfg["tree1"]["tree2"]["key5"]) |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
73 |
| 93 | 74 def test01_ini_types(self): |
| 75 cfg = configmix.ini.load(os.path.join(TESTDATADIR, "conf1.ini")) | |
| 76 self.__check_types(cfg) | |
|
144
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
77 self.__check_comment(cfg) |
| 93 | 78 |
|
198
0b855758ba08
An additional TOML-related unittest (types)
Franz Glasner <fzglas.hg@dom66.de>
parents:
196
diff
changeset
|
79 def test01_toml_types(self): |
|
0b855758ba08
An additional TOML-related unittest (types)
Franz Glasner <fzglas.hg@dom66.de>
parents:
196
diff
changeset
|
80 cfg = configmix.toml.load(os.path.join(TESTDATADIR, "conf1.toml")) |
|
0b855758ba08
An additional TOML-related unittest (types)
Franz Glasner <fzglas.hg@dom66.de>
parents:
196
diff
changeset
|
81 self.__check_types(cfg) |
|
227
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
82 self.__check_comment(cfg) |
|
198
0b855758ba08
An additional TOML-related unittest (types)
Franz Glasner <fzglas.hg@dom66.de>
parents:
196
diff
changeset
|
83 |
| 93 | 84 def test02_py_types(self): |
| 85 cfg = configmix.py.load(os.path.join(TESTDATADIR, "conf1.py")) | |
| 86 self.__check_types(cfg) | |
|
144
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
87 self.__check_no_comment(cfg) |
| 93 | 88 |
| 89 def test03_yaml_types(self): | |
|
119
eefde3288fb8
FIX: YAML-file streams must be opened as UTF-8 text files; otherwise double encoding occurs for non-Unicode locales (e.g. Windows)
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
116
diff
changeset
|
90 with io.open(os.path.join(TESTDATADIR, "conf1.yml"), "rt", |
|
eefde3288fb8
FIX: YAML-file streams must be opened as UTF-8 text files; otherwise double encoding occurs for non-Unicode locales (e.g. Windows)
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
116
diff
changeset
|
91 encoding="utf-8") as f: |
| 93 | 92 cfg = configmix.yaml.safe_load(f) |
|
134
2f2e819e8d17
Check the return type of the JSON and YAML loading functions: they must be a dict alike
Franz Glasner <hg@dom66.de>
parents:
130
diff
changeset
|
93 if configmix.yaml.OrderedDict: |
|
2f2e819e8d17
Check the return type of the JSON and YAML loading functions: they must be a dict alike
Franz Glasner <hg@dom66.de>
parents:
130
diff
changeset
|
94 self.assertTrue(isinstance(cfg, configmix.yaml.OrderedDict)) |
| 93 | 95 self.__check_types(cfg) |
|
144
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
96 self.__check_comment(cfg) |
| 93 | 97 |
|
122
21d92ff8cf31
Begin the handling of JSON-style configuration files
Franz Glasner <hg@dom66.de>
parents:
120
diff
changeset
|
98 def test04_json_types(self): |
|
21d92ff8cf31
Begin the handling of JSON-style configuration files
Franz Glasner <hg@dom66.de>
parents:
120
diff
changeset
|
99 cfg = configmix.json.load(os.path.join(TESTDATADIR, "conf1.json")) |
|
127
5b62d2c0e5a8
Use the available "OrderedDict" class as dict for the JSON parser
Franz Glasner <hg@dom66.de>
parents:
122
diff
changeset
|
100 self.assertTrue(isinstance(cfg, configmix.json.DictImpl)) |
|
122
21d92ff8cf31
Begin the handling of JSON-style configuration files
Franz Glasner <hg@dom66.de>
parents:
120
diff
changeset
|
101 self.__check_types(cfg) |
|
144
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
102 self.__check_comment(cfg) |
|
122
21d92ff8cf31
Begin the handling of JSON-style configuration files
Franz Glasner <hg@dom66.de>
parents:
120
diff
changeset
|
103 |
|
21d92ff8cf31
Begin the handling of JSON-style configuration files
Franz Glasner <hg@dom66.de>
parents:
120
diff
changeset
|
104 def test05_py_export_all(self): |
| 93 | 105 # When __all__ is given only it's keys are exported |
| 106 cfg = configmix.py.load(os.path.join(TESTDATADIR, "conf2.py")) | |
| 107 self.assertEqual(u("the next value"), cfg.get("key1")) | |
| 108 self.assertTrue(isinstance(cfg.get("key1"), type(u('')))) | |
| 109 self.assertTrue(cfg.get("key2") is None) | |
| 110 | |
|
122
21d92ff8cf31
Begin the handling of JSON-style configuration files
Franz Glasner <hg@dom66.de>
parents:
120
diff
changeset
|
111 def test06_py_hide_private(self): |
| 93 | 112 # When no __all__ is given all symbols with leading "_" are hidden |
| 113 cfg = configmix.py.load(os.path.join(TESTDATADIR, "conf3.py")) | |
| 114 self.assertEqual(u("the next value "), cfg.get("key1")) | |
| 115 self.assertTrue(isinstance(cfg.get("key1"), type(u('')))) | |
| 116 self.assertTrue(cfg.get("_key2") is None) | |
| 117 | |
|
122
21d92ff8cf31
Begin the handling of JSON-style configuration files
Franz Glasner <hg@dom66.de>
parents:
120
diff
changeset
|
118 def test07_ini_tree(self): |
|
97
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
119 cfg = configmix.ini.load(os.path.join(TESTDATADIR, "conf10.ini")) |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
120 self.__check_tree(cfg) |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
121 |
|
122
21d92ff8cf31
Begin the handling of JSON-style configuration files
Franz Glasner <hg@dom66.de>
parents:
120
diff
changeset
|
122 def test08_py_tree(self): |
|
97
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
123 cfg = configmix.py.load(os.path.join(TESTDATADIR, "conf10.py")) |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
124 self.__check_tree(cfg) |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
125 |
|
122
21d92ff8cf31
Begin the handling of JSON-style configuration files
Franz Glasner <hg@dom66.de>
parents:
120
diff
changeset
|
126 def test09_yaml_tree(self): |
|
119
eefde3288fb8
FIX: YAML-file streams must be opened as UTF-8 text files; otherwise double encoding occurs for non-Unicode locales (e.g. Windows)
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
116
diff
changeset
|
127 with io.open(os.path.join(TESTDATADIR, "conf10.yml"), "rt", |
|
eefde3288fb8
FIX: YAML-file streams must be opened as UTF-8 text files; otherwise double encoding occurs for non-Unicode locales (e.g. Windows)
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
116
diff
changeset
|
128 encoding="utf-8") as f: |
|
97
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
129 cfg = configmix.yaml.safe_load(f) |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
130 self.__check_tree(cfg) |
|
1b4d95f60650
Build a tree-ish configuration from an INI style configuration file
Franz Glasner <hg@dom66.de>
parents:
95
diff
changeset
|
131 |
|
130
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
132 def test10_json_tree(self): |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
133 cfg = configmix.json.load(os.path.join(TESTDATADIR, "conf10.json")) |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
134 self.__check_tree(cfg) |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
135 |
|
195
28e6c1413947
Added support for TOML style configuration files
Franz Glasner <fzglas.hg@dom66.de>
parents:
183
diff
changeset
|
136 def test11_toml_tree(self): |
|
28e6c1413947
Added support for TOML style configuration files
Franz Glasner <fzglas.hg@dom66.de>
parents:
183
diff
changeset
|
137 cfg = configmix.toml.load(os.path.join(TESTDATADIR, "conf10.toml")) |
|
28e6c1413947
Added support for TOML style configuration files
Franz Glasner <fzglas.hg@dom66.de>
parents:
183
diff
changeset
|
138 self.__check_tree(cfg) |
|
28e6c1413947
Added support for TOML style configuration files
Franz Glasner <fzglas.hg@dom66.de>
parents:
183
diff
changeset
|
139 |
|
292
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
140 def test12_yaml_no_duplicate_keys(self): |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
141 import yaml.constructor as yc |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
142 with io.open(os.path.join(TESTDATADIR, "duplicate-keys.yml"), "rt", |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
143 encoding="utf-8") as f: |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
144 cfg = configmix.yaml.safe_load(f) |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
145 |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
146 with io.open(os.path.join(TESTDATADIR, "duplicate-keys.yml"), "rt", |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
147 encoding="utf-8") as f: |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
148 self.assertRaises(yc.ConstructorError, |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
149 configmix.yaml.safe_load, |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
150 f, strict=True) |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
151 |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
152 def test13_yaml_no_duplicate_keys_2(self): |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
153 import yaml.constructor as yc |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
154 with io.open(os.path.join(TESTDATADIR, "duplicate-keys-2.yml"), "rt", |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
155 encoding="utf-8") as f: |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
156 cfg = configmix.yaml.safe_load(f) |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
157 |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
158 with io.open(os.path.join(TESTDATADIR, "duplicate-keys-2.yml"), "rt", |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
159 encoding="utf-8") as f: |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
160 self.assertRaises(yc.ConstructorError, |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
161 configmix.yaml.safe_load, |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
162 f, strict=True) |
|
6a044778371a
Some unittests for the new "strict" YAML parsing mode to prevent duplicate keys within a single YAML document
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
276
diff
changeset
|
163 |
| 93 | 164 |
|
112
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
165 class _T02MixinLoadAndMerge: |
|
105
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
166 |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
167 def test01_load(self): |
|
112
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
168 cfg = self._load( |
|
105
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
169 os.path.join(TESTDATADIR, "conf20.yml"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
170 os.path.join(TESTDATADIR, "conf21.yml")) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
171 |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
172 self.assertEqual(u("the_database_user"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
173 cfg.getvar_s("db.user.name")) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
174 self.assertEqual(u("the-database-password"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
175 cfg.getvar_s("db.user.pwd")) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
176 |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
177 tmpdir = cfg.getvar_s("tmpdir") |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
178 if os.name == 'nt': |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
179 self.assertFalse(u('/') in tmpdir) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
180 self.assertEqual(os.path.normpath( |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
181 os.path.abspath(os.path.join(os.getcwd(), "tmp"))), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
182 tmpdir) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
183 |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
184 self.assertEqual(u("anotherhost"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
185 cfg.getvar_s("db.locinfo.ro.hostname")) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
186 self.assertEqual(u("localhost"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
187 cfg.getvar_s("db.locinfo.rw.hostname")) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
188 |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
189 self.assertEqual(5432, cfg.getvar_s("db.locinfo.ro.port")) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
190 |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
191 url = cfg.getvar_s("db.engines.ro.url") |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
192 self.assertEqual( |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
193 u("postgresql+psycopg2://the_database_user:the-database-password@anotherhost:5432/my_database_catalog"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
194 url) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
195 |
|
109
057d87d030f1
Test replacing lists by strings and replacing strings by lists
Franz Glasner <hg@dom66.de>
parents:
105
diff
changeset
|
196 self.assertEqual(u("not a list any more"), |
|
057d87d030f1
Test replacing lists by strings and replacing strings by lists
Franz Glasner <hg@dom66.de>
parents:
105
diff
changeset
|
197 cfg.getvar_s("test.List")) |
|
057d87d030f1
Test replacing lists by strings and replacing strings by lists
Franz Glasner <hg@dom66.de>
parents:
105
diff
changeset
|
198 |
|
057d87d030f1
Test replacing lists by strings and replacing strings by lists
Franz Glasner <hg@dom66.de>
parents:
105
diff
changeset
|
199 self.assertEqual(list(range(0, 3)), |
|
057d87d030f1
Test replacing lists by strings and replacing strings by lists
Franz Glasner <hg@dom66.de>
parents:
105
diff
changeset
|
200 cfg.getvar_s("test.Str")) |
|
057d87d030f1
Test replacing lists by strings and replacing strings by lists
Franz Glasner <hg@dom66.de>
parents:
105
diff
changeset
|
201 |
|
105
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
202 def test02_load_with_ini(self): |
|
112
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
203 cfg = self._load( |
|
105
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
204 os.path.join(TESTDATADIR, "conf20.yml"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
205 os.path.join(TESTDATADIR, "conf21.yml"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
206 os.path.join(TESTDATADIR, "conf22.ini")) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
207 |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
208 self.assertEqual(u("the_database_user_2"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
209 cfg.getvar_s("db.user.name")) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
210 self.assertEqual(u("the-database-password-2"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
211 cfg.getvar_s("db.user.pwd")) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
212 |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
213 tmpdir = cfg.getvar_s("tmpdir") |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
214 self.assertEqual(u(os.getcwd()) + u("/tmp\\2"), tmpdir) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
215 |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
216 self.assertEqual(u("3rd-host"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
217 cfg.getvar_s("db.locinfo.ro.hostname")) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
218 self.assertEqual(u("localhost"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
219 cfg.getvar_s("db.locinfo.rw.hostname")) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
220 |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
221 self.assertEqual(5432, cfg.getvar_s("db.locinfo.ro.port")) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
222 |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
223 url = cfg.getvar_s("db.engines.ro.url") |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
224 self.assertEqual( |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
225 u("postgresql+psycopg2://the_database_user_2:the-database-password-2@3rd-host:5432/my_database_catalog"), |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
226 url) |
|
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
227 |
|
130
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
228 def test02_load_with_json(self): |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
229 cfg = self._load( |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
230 os.path.join(TESTDATADIR, "conf20.yml"), |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
231 os.path.join(TESTDATADIR, "conf21.yml"), |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
232 # .ini replaced with an equivalent .json |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
233 os.path.join(TESTDATADIR, "conf23.json")) |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
234 |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
235 self.assertEqual(u("the_database_user_2"), |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
236 cfg.getvar_s("db.user.name")) |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
237 self.assertEqual(u("the-database-password-2"), |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
238 cfg.getvar_s("db.user.pwd")) |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
239 |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
240 tmpdir = cfg.getvar_s("tmpdir") |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
241 self.assertEqual(u(os.getcwd()) + u("/tmp\\3"), tmpdir) |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
242 |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
243 self.assertEqual(u("3rd-host"), |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
244 cfg.getvar_s("db.locinfo.ro.hostname")) |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
245 self.assertEqual(u("localhost"), |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
246 cfg.getvar_s("db.locinfo.rw.hostname")) |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
247 |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
248 self.assertEqual(5432, cfg.getvar_s("db.locinfo.ro.port")) |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
249 |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
250 url = cfg.getvar_s("db.engines.ro.url") |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
251 self.assertEqual( |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
252 u("postgresql+psycopg2://the_database_user_2:the-database-password-2@3rd-host:5432/my_database_catalog"), |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
253 url) |
|
b11af3ded7c1
Added more JSON specific unit tests
Franz Glasner <hg@dom66.de>
parents:
127
diff
changeset
|
254 |
|
196
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
255 def test02_load_with_toml(self): |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
256 cfg = self._load( |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
257 os.path.join(TESTDATADIR, "conf20.yml"), |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
258 os.path.join(TESTDATADIR, "conf21.yml"), |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
259 # .ini replaced with an equivalent .toml |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
260 os.path.join(TESTDATADIR, "conf24.toml")) |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
261 |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
262 self.assertEqual(u("the_database_user_2"), |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
263 cfg.getvar_s("db.user.name")) |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
264 self.assertEqual(u("the-database-password-2"), |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
265 cfg.getvar_s("db.user.pwd")) |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
266 |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
267 tmpdir = cfg.getvar_s("tmpdir") |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
268 self.assertEqual(u(os.getcwd()) + u("/tmp\\4"), tmpdir) |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
269 |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
270 self.assertEqual(u("3rd-host"), |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
271 cfg.getvar_s("db.locinfo.ro.hostname")) |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
272 self.assertEqual(u("localhost"), |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
273 cfg.getvar_s("db.locinfo.rw.hostname")) |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
274 |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
275 self.assertEqual(5432, cfg.getvar_s("db.locinfo.ro.port")) |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
276 |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
277 url = cfg.getvar_s("db.engines.ro.url") |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
278 self.assertEqual( |
|
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
279 u("postgresql+psycopg2://the_database_user_2:the-database-password-2@3rd-host:5432/my_database_catalog"), |
|
227
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
280 url) |
|
196
13527d70e9e3
An additional unit test with a TOML style configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
195
diff
changeset
|
281 |
|
116
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
282 def test03_namespace(self): |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
283 cfg = self._load( |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
284 os.path.join(TESTDATADIR, "conf20.yml"), |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
285 os.path.join(TESTDATADIR, "conf21.yml"), |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
286 os.path.join(TESTDATADIR, "conf22.ini")) |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
287 self.assertEqual(u(os.getcwd()), cfg.getvar("OS:cwd")) |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
288 self.assertEqual(u(platform.python_version()), |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
289 cfg.getvar_s("PY:version")) |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
290 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
291 def test03_namespace_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
292 cfg = self._load( |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
293 os.path.join(TESTDATADIR, "conf20.yml"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
294 os.path.join(TESTDATADIR, "conf21.yml"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
295 os.path.join(TESTDATADIR, "conf22.ini")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
296 self.assertEqual(u(os.getcwd()), cfg.getvarl("cwd", namespace="OS")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
297 self.assertEqual(u(platform.python_version()), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
298 cfg.getvarl_s("version", namespace="PY")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
299 |
|
116
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
300 def test04_no_filter(self): |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
301 cfg = self._load( |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
302 os.path.join(TESTDATADIR, "conf20.yml"), |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
303 os.path.join(TESTDATADIR, "conf21.yml"), |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
304 os.path.join(TESTDATADIR, "conf22.ini")) |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
305 |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
306 def _look(): |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
307 return cfg.getvar("OS:cwd|upper") |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
308 |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
309 self.assertRaises(KeyError, _look) |
|
c37fa787c022
More unittests for fetching namespaced variables and filters
Franz Glasner <hg@dom66.de>
parents:
113
diff
changeset
|
310 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
311 def test04_no_filter_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
312 cfg = self._load( |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
313 os.path.join(TESTDATADIR, "conf20.yml"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
314 os.path.join(TESTDATADIR, "conf21.yml"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
315 os.path.join(TESTDATADIR, "conf22.ini")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
316 |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
317 def _look(): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
318 return cfg.getvarl("cwd|upper", namespace="OS") |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
319 |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
320 self.assertRaises(KeyError, _look) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
321 |
|
144
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
322 def test05_comments(self): |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
323 cfg = self._load(os.path.join(TESTDATADIR, "conf20.yml"), |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
324 os.path.join(TESTDATADIR, "conf21.yml"), |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
325 os.path.join(TESTDATADIR, "conf22.ini"), |
|
198
0b855758ba08
An additional TOML-related unittest (types)
Franz Glasner <fzglas.hg@dom66.de>
parents:
196
diff
changeset
|
326 os.path.join(TESTDATADIR, "conf23.json"), |
|
0b855758ba08
An additional TOML-related unittest (types)
Franz Glasner <fzglas.hg@dom66.de>
parents:
196
diff
changeset
|
327 os.path.join(TESTDATADIR, "conf24.toml")) |
|
144
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
328 |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
329 def _c(name): |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
330 def _f(): |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
331 cfg.getvar_s(name) |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
332 return _f |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
333 |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
334 # Variables with leading underscores are *not* imported by default |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
335 self.assertEqual(0o0027, int(cfg.getvar_s("process.umask"), 0)) |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
336 self.assertRaises(KeyError, _c("process.__doc1")) |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
337 self.assertRaises(KeyError, _c("db.__comment1")) |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
338 self.assertRaises(KeyError, _c("db.user.__doc2")) |
|
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
339 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
340 def test05_comments_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
341 cfg = self._load(os.path.join(TESTDATADIR, "conf20.yml"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
342 os.path.join(TESTDATADIR, "conf21.yml"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
343 os.path.join(TESTDATADIR, "conf22.ini"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
344 os.path.join(TESTDATADIR, "conf23.json"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
345 os.path.join(TESTDATADIR, "conf24.toml")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
346 |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
347 def _c(*names): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
348 def _f(): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
349 cfg.getvarl_s(*names) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
350 return _f |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
351 |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
352 # Variables with leading underscores are *not* imported by default |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
353 self.assertEqual(0o0027, int(cfg.getvarl_s("process", "umask"), 0)) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
354 self.assertRaises(KeyError, _c("process", "__doc1")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
355 self.assertRaises(KeyError, _c("db", "__comment1")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
356 self.assertRaises(KeyError, _c("db", "user", "__doc2")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
357 |
|
146
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
358 def test06_check_all_comments(self): |
|
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
359 cfg = self._load(os.path.join(TESTDATADIR, "conf20.yml"), |
|
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
360 os.path.join(TESTDATADIR, "conf21.yml"), |
|
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
361 os.path.join(TESTDATADIR, "conf22.ini"), |
|
198
0b855758ba08
An additional TOML-related unittest (types)
Franz Glasner <fzglas.hg@dom66.de>
parents:
196
diff
changeset
|
362 os.path.join(TESTDATADIR, "conf23.json"), |
|
0b855758ba08
An additional TOML-related unittest (types)
Franz Glasner <fzglas.hg@dom66.de>
parents:
196
diff
changeset
|
363 os.path.join(TESTDATADIR, "conf24.toml")) |
|
146
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
364 |
|
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
365 def _check(d): |
|
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
366 for k, v in d.items(): |
|
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
367 self.assertFalse(configmix._is_comment(k)) |
|
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
368 if isinstance(v, dict): |
|
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
369 _check(v) |
|
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
370 |
|
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
371 _check(cfg) |
|
bbf47bfb48a2
Add a unittest that scans the complete configuration dict for comment keys
Franz Glasner <hg@dom66.de>
parents:
144
diff
changeset
|
372 |
|
276
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
373 def test07_deletions(self): |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
374 cfg = self._load(os.path.join(TESTDATADIR, "conf20.yml"), |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
375 os.path.join(TESTDATADIR, "conf21.yml"), |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
376 os.path.join(TESTDATADIR, "conf22.ini"), |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
377 os.path.join(TESTDATADIR, "conf23.json"), |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
378 os.path.join(TESTDATADIR, "conf24.toml"), |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
379 os.path.join(TESTDATADIR, "delete-in-dict.yml")) |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
380 # automatic clean-up |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
381 self.assertRaises(KeyError, cfg.getvar_s, "not-deleted") |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
382 # explicit deletion |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
383 self.assertRaises(KeyError, cfg.getvar_s, "to-be-deleted") |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
384 self.assertRaises(KeyError, cfg.getvar_s, "db.user.name") |
| 323 | 385 self.assertEqual("the-database-password-2", cfg.getvar_s("db.user.pwd")) |
|
276
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
386 self.assertRaises(KeyError, cfg.getvar_s, "test.Str") |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
387 self.assertEqual("not a list any more", cfg.getvar_s("test.List")) |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
388 self.assertEqual("the last value", |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
389 cfg.getvar_s("to-be-deleted-but-reassigned")) |
|
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
390 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
391 def test07_deletions_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
392 cfg = self._load(os.path.join(TESTDATADIR, "conf20.yml"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
393 os.path.join(TESTDATADIR, "conf21.yml"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
394 os.path.join(TESTDATADIR, "conf22.ini"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
395 os.path.join(TESTDATADIR, "conf23.json"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
396 os.path.join(TESTDATADIR, "conf24.toml"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
397 os.path.join(TESTDATADIR, "delete-in-dict.yml")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
398 # automatic clean-up |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
399 self.assertRaises(KeyError, cfg.getvarl_s, "not-deleted") |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
400 # explicit deletion |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
401 self.assertRaises(KeyError, cfg.getvarl_s, "to-be-deleted") |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
402 self.assertRaises(KeyError, cfg.getvarl_s, "db" "user.name") |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
403 self.assertEqual("the-database-password-2", |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
404 cfg.getvarl_s("db", "user", "pwd")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
405 self.assertRaises(KeyError, cfg.getvarl_s, "test", "Str") |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
406 self.assertEqual("not a list any more", cfg.getvarl_s("test", "List")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
407 self.assertEqual("the last value", |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
408 cfg.getvarl_s("to-be-deleted-but-reassigned")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
409 |
|
105
1c2f8a96dec2
Unittests with some real-worl-examples of .yml and .ini configuration files
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
97
diff
changeset
|
410 |
|
112
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
411 class T02LoadAndMerge(_T02MixinLoadAndMerge, unittest.TestCase): |
|
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
412 |
|
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
413 def setUp(self): |
|
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
414 self._load = configmix.load |
|
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
415 |
|
301
a03a6797533b
Renumber: make room for new tests implemented in the mixin class
Franz Glasner <fzglas.hg@dom66.de>
parents:
292
diff
changeset
|
416 def test0100_identity(self): |
|
113
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
417 cfg = configmix.ini.load(os.path.join(TESTDATADIR, "conf1.ini")) |
|
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
418 cfg2 = configmix.merge(cfg, None) |
|
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
419 self.assertEqual(id(cfg), id(cfg2)) |
|
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
420 |
|
301
a03a6797533b
Renumber: make room for new tests implemented in the mixin class
Franz Glasner <fzglas.hg@dom66.de>
parents:
292
diff
changeset
|
421 def test0101_identity(self): |
|
113
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
422 cfg = configmix.ini.load(os.path.join(TESTDATADIR, "conf1.ini")) |
|
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
423 cfg2 = configmix.merge(cfg, {}) |
|
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
424 self.assertEqual(id(cfg), id(cfg2)) |
|
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
425 |
|
112
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
426 |
|
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
427 class T03SafeLoadAndMerge(_T02MixinLoadAndMerge, unittest.TestCase): |
|
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
428 |
|
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
429 def setUp(self): |
|
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
430 self._load = configmix.safe_load |
|
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
431 |
|
301
a03a6797533b
Renumber: make room for new tests implemented in the mixin class
Franz Glasner <fzglas.hg@dom66.de>
parents:
292
diff
changeset
|
432 def test0100_deepcopy(self): |
|
113
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
433 cfg = configmix.ini.load(os.path.join(TESTDATADIR, "conf1.ini")) |
|
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
434 cfg2 = configmix.safe_merge(cfg, None) |
|
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
435 self.assertNotEqual(id(cfg), id(cfg2)) |
|
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
436 |
|
301
a03a6797533b
Renumber: make room for new tests implemented in the mixin class
Franz Glasner <fzglas.hg@dom66.de>
parents:
292
diff
changeset
|
437 def test0101_deepcopy(self): |
|
113
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
438 cfg = configmix.ini.load(os.path.join(TESTDATADIR, "conf1.ini")) |
|
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
439 cfg2 = configmix.safe_merge(cfg, {}) |
|
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
440 self.assertNotEqual(id(cfg), id(cfg2)) |
|
5b667c252f8c
Test whether safe_merge really returns a deepcopy in the initial case and when not really merging
Franz Glasner <hg@dom66.de>
parents:
112
diff
changeset
|
441 |
|
112
c50ad93eb5dc
Implemented a "safe_load()" to load with safe merging
Franz Glasner <hg@dom66.de>
parents:
109
diff
changeset
|
442 |
|
140
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
443 class T04CustomExtension(unittest.TestCase): |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
444 |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
445 def setUp(self): |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
446 self._reset() |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
447 |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
448 def tearDown(self): |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
449 self._reset() |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
450 |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
451 def _reset(self): |
|
181
7cfdc972af42
Refactor: Renamed public functions to be conform with the new loader search
Franz Glasner <fzglas.hg@dom66.de>
parents:
171
diff
changeset
|
452 configmix.clear_assoc() |
|
7cfdc972af42
Refactor: Renamed public functions to be conform with the new loader search
Franz Glasner <fzglas.hg@dom66.de>
parents:
171
diff
changeset
|
453 for pat, fmode in configmix.DEFAULT_ASSOC: |
|
7cfdc972af42
Refactor: Renamed public functions to be conform with the new loader search
Franz Glasner <fzglas.hg@dom66.de>
parents:
171
diff
changeset
|
454 configmix.set_assoc(pat, fmode) |
|
140
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
455 |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
456 def test01_additional(self): |
|
181
7cfdc972af42
Refactor: Renamed public functions to be conform with the new loader search
Franz Glasner <fzglas.hg@dom66.de>
parents:
171
diff
changeset
|
457 configmix.set_assoc("*.conf", configmix.get_default_assoc("*.yml")) |
|
140
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
458 cfg = configmix.load( |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
459 os.path.join(TESTDATADIR, "conf1.ini"), |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
460 os.path.join(TESTDATADIR, "conf30.conf")) |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
461 self.assertEqual(u("Umlaute: ÄÖÜäöüß"), cfg.getvar_s("key7")) |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
462 self.assertEqual(u("new value"), cfg.getvar_s("key-new")) |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
463 |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
464 def test02_only_style_wrong_style(self): |
|
181
7cfdc972af42
Refactor: Renamed public functions to be conform with the new loader search
Franz Glasner <fzglas.hg@dom66.de>
parents:
171
diff
changeset
|
465 configmix.clear_assoc() |
|
7cfdc972af42
Refactor: Renamed public functions to be conform with the new loader search
Franz Glasner <fzglas.hg@dom66.de>
parents:
171
diff
changeset
|
466 configmix.set_assoc("*.conf", configmix.get_default_assoc("*.yml")) |
|
140
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
467 |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
468 def _ld(): |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
469 return configmix.load(os.path.join(TESTDATADIR, "conf1.ini"), |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
470 os.path.join(TESTDATADIR, "conf30.conf")) |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
471 |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
472 self.assertRaises(ValueError, _ld) |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
473 |
|
227
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
474 def test02_ignore_one_style(self): |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
475 configmix.clear_assoc() |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
476 configmix.set_assoc("*.conf", configmix.get_default_assoc("*.yml")) |
|
228
b2c75efad9e4
Renamed the 'ignore' loader key to '-*-ignore-*-'
Franz Glasner <fzglas.hg@dom66.de>
parents:
227
diff
changeset
|
477 configmix.set_assoc("*", "-*-ignore-*-", append=True) |
|
227
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
478 |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
479 cfg = configmix.load(os.path.join(TESTDATADIR, "conf1.ini"), |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
480 os.path.join(TESTDATADIR, "conf30.conf")) |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
481 self.assertEqual(u("new value"), cfg.getvar_s("key-new")) |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
482 self.assertRaises(KeyError, cfg.getvar_s, "key1") |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
483 |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
484 def test02_ignore_all(self): |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
485 configmix.clear_assoc() |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
486 configmix.set_assoc("*.conf", configmix.get_default_assoc("*.yml")) |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
487 # This inserts at index 0 effectively ignoring all configuration files! |
|
228
b2c75efad9e4
Renamed the 'ignore' loader key to '-*-ignore-*-'
Franz Glasner <fzglas.hg@dom66.de>
parents:
227
diff
changeset
|
488 configmix.set_assoc("*", "-*-ignore-*-") |
|
227
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
489 |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
490 cfg = configmix.load(os.path.join(TESTDATADIR, "conf1.ini"), |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
491 os.path.join(TESTDATADIR, "conf30.conf")) |
|
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
492 self.assertRaises(KeyError, cfg.getvar_s, "key-new") |
|
251
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
493 self.assertRaises(KeyError, cfg.getvar_s, "key1") |
|
227
f5011eec3b6e
Added a loader with key "ignore" that ignores the given configuration file
Franz Glasner <fzglas.hg@dom66.de>
parents:
198
diff
changeset
|
494 |
|
140
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
495 def test03_only_style_corrrect_style(self): |
|
181
7cfdc972af42
Refactor: Renamed public functions to be conform with the new loader search
Franz Glasner <fzglas.hg@dom66.de>
parents:
171
diff
changeset
|
496 configmix.clear_assoc() |
|
7cfdc972af42
Refactor: Renamed public functions to be conform with the new loader search
Franz Glasner <fzglas.hg@dom66.de>
parents:
171
diff
changeset
|
497 configmix.set_assoc("*.conf", configmix.get_default_assoc("*.yml")) |
|
140
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
498 cfg = configmix.load(os.path.join(TESTDATADIR, "conf30.conf")) |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
499 self.assertEqual(u("new value"), cfg.getvar_s("key-new")) |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
500 |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
501 def _g(): |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
502 return cfg.getvar_s("key7") |
|
144
7e6ec99d5ff5
Allow comments as keys and filter them by default
Franz Glasner <hg@dom66.de>
parents:
140
diff
changeset
|
503 |
|
140
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
504 self.assertRaises(KeyError, _g) |
|
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
505 |
|
183
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
506 def test04_determine_mode(self): |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
507 configmix.clear_assoc() |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
508 configmix.set_assoc("*.conf", configmix.try_determine_filemode) |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
509 cfg = configmix.load(os.path.join(TESTDATADIR, "conf30.conf")) |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
510 self.assertEqual(u("new value"), cfg.getvar_s("key-new")) |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
511 |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
512 self.assertRaises(KeyError, cfg.getvar_s, "key7") |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
513 |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
514 def test05_try_determine_mode_none(self): |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
515 configmix.clear_assoc() |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
516 configmix.set_assoc("*.conf", configmix.try_determine_filemode) |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
517 |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
518 def _ld(): |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
519 return configmix.load(os.path.join(TESTDATADIR, "no-mode.conf")) |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
520 |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
521 self.assertRaises(ValueError, _ld) |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
522 |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
523 def test06_try_determine_mode_unknown(self): |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
524 configmix.clear_assoc() |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
525 configmix.set_assoc("*.conf", configmix.try_determine_filemode) |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
526 |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
527 def _ld(): |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
528 return configmix.load(os.path.join(TESTDATADIR, "unknown-mode.conf")) |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
529 |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
530 self.assertRaises(KeyError, _ld) |
|
d1103f0f9166
Unit-tests with the file-mode scanner
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
181
diff
changeset
|
531 |
|
140
d8d47893df5b
Unittests for custom configuration filename extensions
Franz Glasner <hg@dom66.de>
parents:
134
diff
changeset
|
532 |
|
251
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
533 class T05SubstituteExpand(unittest.TestCase): |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
534 |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
535 def setUp(self): |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
536 self._reset() |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
537 |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
538 def tearDown(self): |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
539 self._reset() |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
540 |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
541 def _reset(self): |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
542 configmix.clear_assoc() |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
543 for pat, fmode in configmix.DEFAULT_ASSOC: |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
544 configmix.set_assoc(pat, fmode) |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
545 |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
546 def test01_expand_int_ini(self): |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
547 cfg = configmix.load(os.path.join(TESTDATADIR, "conf1.ini")) |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
548 self.assertEqual(2, cfg.getvar_s("key100")) |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
549 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
550 def test01_expand_int_ini_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
551 cfg = configmix.load(os.path.join(TESTDATADIR, "conf1.ini")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
552 self.assertEqual(2, cfg.getvarl_s("key100")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
553 |
|
251
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
554 def test02_expand_int_indirect_ini(self): |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
555 cfg = configmix.load(os.path.join(TESTDATADIR, "conf1.ini")) |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
556 self.assertEqual(2, cfg.getvar_s("key102")) |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
557 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
558 def test02_expand_int_indirect_ini_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
559 cfg = configmix.load(os.path.join(TESTDATADIR, "conf1.ini")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
560 self.assertEqual(2, cfg.getvarl_s("key102")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
561 |
|
251
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
562 def test03_expand_int2str_ini(self): |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
563 cfg = configmix.load(os.path.join(TESTDATADIR, "conf1.ini")) |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
564 self.assertEqual("the 2 value", cfg.getvar_s("key101")) |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
565 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
566 def test03_expand_int2str_ini_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
567 cfg = configmix.load(os.path.join(TESTDATADIR, "conf1.ini")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
568 self.assertEqual("the 2 value", cfg.getvarl_s("key101")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
569 |
|
251
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
570 def test04_expand_intint2str_ini(self): |
|
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
571 cfg = configmix.load(os.path.join(TESTDATADIR, "conf1.ini")) |
|
276
af371f9c016d
Allow deletion of key-value pairs when merging is done.
Franz Glasner <fzglas.hg@dom66.de>
parents:
251
diff
changeset
|
572 self.assertEqual("22", cfg.getvar_s("key103")) |
|
251
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
573 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
574 def test04_expand_intint2str_ini_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
575 cfg = configmix.load(os.path.join(TESTDATADIR, "conf1.ini")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
576 self.assertEqual("22", cfg.getvarl_s("key103")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
577 |
|
251
2a8dcab2de8c
Do not implicitely convert a configuration value to text if the value is the result of just a variable expansion.
Franz Glasner <fzglas.hg@dom66.de>
parents:
228
diff
changeset
|
578 |
|
305
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
579 class T06References(unittest.TestCase): |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
580 |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
581 def setUp(self): |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
582 self._reset() |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
583 self._cfg = configmix.load( |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
584 os.path.join(TESTDATADIR, "conf20.yml"), |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
585 os.path.join(TESTDATADIR, "conf21.yml"), |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
586 os.path.join(TESTDATADIR, "conf22.ini"), |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
587 os.path.join(TESTDATADIR, "conf23.json"), |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
588 os.path.join(TESTDATADIR, "conf24.toml"), |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
589 os.path.join(TESTDATADIR, "reference-style.yml")) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
590 |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
591 def tearDown(self): |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
592 self._reset() |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
593 |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
594 def _reset(self): |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
595 configmix.clear_assoc() |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
596 for pat, fmode in configmix.DEFAULT_ASSOC: |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
597 configmix.set_assoc(pat, fmode) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
598 |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
599 def test01_reference_without_expansions(self): |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
600 self.assertTrue(isinstance(self._cfg.getvar("wsgi.profiler"), dict)) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
601 self.assertTrue(isinstance( |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
602 self._cfg.getvar("wsgi.profiler.params"), dict)) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
603 self.assertEqual("werkzeug", |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
604 self._cfg.getvar("wsgi.profiler.params.type")) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
605 self.assertTrue(self._cfg.getvar("wsgi.profiler.params.params.evalex")) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
606 self.assertEqual(self._cfg.getvar("wsgi.debugger"), |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
607 self._cfg.getvar("wsgi.profiler.params")) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
608 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
609 def test01_reference_without_expansions_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
610 self.assertTrue(isinstance(self._cfg.getvarl("wsgi", "profiler"), dict)) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
611 self.assertTrue(isinstance( |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
612 self._cfg.getvarl("wsgi", "profiler", "params"), dict)) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
613 self.assertEqual( |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
614 "werkzeug", |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
615 self._cfg.getvarl("wsgi", "profiler", "params", "type")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
616 self.assertTrue(self._cfg.getvarl( |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
617 "wsgi", "profiler", "params", "params", "evalex")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
618 self.assertEqual(self._cfg.getvarl("wsgi", "debugger"), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
619 self._cfg.getvarl("wsgi", "profiler", "params")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
620 |
|
305
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
621 def test02_reference__with_expansions(self): |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
622 self.assertTrue(isinstance(self._cfg.getvar_s("wsgi.profiler"), dict)) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
623 self.assertTrue(isinstance( |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
624 self._cfg.getvar_s("wsgi.profiler.params"), dict)) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
625 self.assertTrue( |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
626 self._cfg.getvar_s("wsgi.profiler.params.params.evalex")) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
627 self.assertEqual("werkzeug", |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
628 self._cfg.getvar_s("wsgi.profiler.params.type")) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
629 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
630 def test02_reference__with_expansions_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
631 self.assertTrue(isinstance( |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
632 self._cfg.getvarl_s("wsgi", "profiler"), dict)) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
633 self.assertTrue(isinstance( |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
634 self._cfg.getvarl_s("wsgi", "profiler", "params"), dict)) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
635 self.assertTrue( |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
636 self._cfg.getvarl_s("wsgi", "profiler", "params", "params", "evalex")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
637 self.assertEqual( |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
638 "werkzeug", |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
639 self._cfg.getvarl_s("wsgi", "profiler", "params", "type")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
640 |
|
305
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
641 def test03_no_direct_attribute_access_to_expanded_references(self): |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
642 self.assertEqual( |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
643 "{{ref:#wsgi.debugger}}", |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
644 self._cfg.wsgi.profiler.params) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
645 try: |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
646 self._cfg.wsgi.profiler.params.type |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
647 except AttributeError: |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
648 pass |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
649 else: |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
650 self.fail("no attribute error seen") |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
651 |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
652 def test04_indirect_recursive_references(self): |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
653 self.assertEqual( |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
654 "werkzeug", |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
655 self._cfg.getvar_s("testref.here.params.type")) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
656 self.assertTrue( |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
657 self._cfg.getvar_s("testref.here.params.params.evalex")) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
658 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
659 def test04_indirect_recursive_references_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
660 self.assertEqual( |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
661 "werkzeug", |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
662 self._cfg.getvarl_s("testref", "here", "params", "type")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
663 self.assertTrue( |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
664 self._cfg.getvarl_s("testref", "here", "params", "params", "evalex")) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
665 |
|
305
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
666 def test05_recursive_expansion(self): |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
667 c = self._cfg.getvar_s("testref") |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
668 self.assertTrue(c["here"]["params"]["params"]["evalex"]) |
|
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
669 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
670 def test05_recursive_expansion_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
671 c = self._cfg.getvarl_s("testref") |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
672 self.assertTrue(c["here"]["params"]["params"]["evalex"]) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
673 |
|
309
f77dba9fc164
New unittest for the behaviour of ".getvar()" with regard to config references
Franz Glasner <fzglas.hg@dom66.de>
parents:
305
diff
changeset
|
674 def test06_no_recursive_expansion_in_getvar_parents(self): |
|
f77dba9fc164
New unittest for the behaviour of ".getvar()" with regard to config references
Franz Glasner <fzglas.hg@dom66.de>
parents:
305
diff
changeset
|
675 v = self._cfg.getvar("wsgi.profiler") |
|
f77dba9fc164
New unittest for the behaviour of ".getvar()" with regard to config references
Franz Glasner <fzglas.hg@dom66.de>
parents:
305
diff
changeset
|
676 self.assertEqual( |
|
f77dba9fc164
New unittest for the behaviour of ".getvar()" with regard to config references
Franz Glasner <fzglas.hg@dom66.de>
parents:
305
diff
changeset
|
677 "{{ref:#wsgi.debugger}}", |
|
f77dba9fc164
New unittest for the behaviour of ".getvar()" with regard to config references
Franz Glasner <fzglas.hg@dom66.de>
parents:
305
diff
changeset
|
678 v["params"]) |
|
f77dba9fc164
New unittest for the behaviour of ".getvar()" with regard to config references
Franz Glasner <fzglas.hg@dom66.de>
parents:
305
diff
changeset
|
679 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
680 def test06_no_recursive_expansion_in_getvar_parents_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
681 v = self._cfg.getvarl("wsgi", "profiler") |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
682 self.assertEqual( |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
683 "{{ref:#wsgi.debugger}}", |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
684 v["params"]) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
685 |
|
312
0788e8e162f6
Unittests for explicit expansion of configuration references
Franz Glasner <fzglas.hg@dom66.de>
parents:
309
diff
changeset
|
686 def test07_explicit_reference_expansion(self): |
|
0788e8e162f6
Unittests for explicit expansion of configuration references
Franz Glasner <fzglas.hg@dom66.de>
parents:
309
diff
changeset
|
687 v = self._cfg.getvar("wsgi.profiler") |
|
0788e8e162f6
Unittests for explicit expansion of configuration references
Franz Glasner <fzglas.hg@dom66.de>
parents:
309
diff
changeset
|
688 self.assertTrue(isinstance(self._cfg.expand_if_reference(v["params"]), |
|
0788e8e162f6
Unittests for explicit expansion of configuration references
Franz Glasner <fzglas.hg@dom66.de>
parents:
309
diff
changeset
|
689 dict)) |
|
0788e8e162f6
Unittests for explicit expansion of configuration references
Franz Glasner <fzglas.hg@dom66.de>
parents:
309
diff
changeset
|
690 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
691 def test07_explicit_reference_expansion_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
692 v = self._cfg.getvarl("wsgi", "profiler") |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
693 self.assertTrue(isinstance(self._cfg.expand_if_reference(v["params"]), |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
694 dict)) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
695 |
|
313
15a1d5fd0aa1
Further unittest for config reference expansion
Franz Glasner <fzglas.hg@dom66.de>
parents:
312
diff
changeset
|
696 def test08_explicit_indirect_expansion_through_value(self): |
|
15a1d5fd0aa1
Further unittest for config reference expansion
Franz Glasner <fzglas.hg@dom66.de>
parents:
312
diff
changeset
|
697 v = self._cfg.getvar_s("expand-ref-value.key0") |
|
15a1d5fd0aa1
Further unittest for config reference expansion
Franz Glasner <fzglas.hg@dom66.de>
parents:
312
diff
changeset
|
698 self.assertTrue(isinstance(v, bool)) |
|
15a1d5fd0aa1
Further unittest for config reference expansion
Franz Glasner <fzglas.hg@dom66.de>
parents:
312
diff
changeset
|
699 self.assertTrue(v) |
|
15a1d5fd0aa1
Further unittest for config reference expansion
Franz Glasner <fzglas.hg@dom66.de>
parents:
312
diff
changeset
|
700 # but not that .getvar does not **not** |
|
15a1d5fd0aa1
Further unittest for config reference expansion
Franz Glasner <fzglas.hg@dom66.de>
parents:
312
diff
changeset
|
701 v2 = self._cfg.getvar("expand-ref-value.key0") |
|
15a1d5fd0aa1
Further unittest for config reference expansion
Franz Glasner <fzglas.hg@dom66.de>
parents:
312
diff
changeset
|
702 self.assertEqual("{{testref.here.params.params.evalex}}", v2) |
|
15a1d5fd0aa1
Further unittest for config reference expansion
Franz Glasner <fzglas.hg@dom66.de>
parents:
312
diff
changeset
|
703 |
|
314
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
704 def test08_explicit_indirect_expansion_through_value_l(self): |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
705 v = self._cfg.getvarl_s("expand-ref-value", "key0") |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
706 self.assertTrue(isinstance(v, bool)) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
707 self.assertTrue(v) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
708 # but not that .getvar does not **not** |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
709 v2 = self._cfg.getvarl("expand-ref-value", "key0") |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
710 self.assertEqual("{{testref.here.params.params.evalex}}", v2) |
|
043a6412be3c
Implemented new access methods .getvarl() and .getvarl_s
Franz Glasner <fzglas.hg@dom66.de>
parents:
313
diff
changeset
|
711 |
|
305
f529ca46dd50
Implemented the "ref" namespace to get configuration tree references.
Franz Glasner <fzglas.hg@dom66.de>
parents:
301
diff
changeset
|
712 |
|
320
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
713 class T07Quoting(unittest.TestCase): |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
714 |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
715 def setUp(self): |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
716 self._reset() |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
717 self._cfg = configmix.load(os.path.join(TESTDATADIR, "quoting.yml")) |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
718 |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
719 def tearDown(self): |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
720 self._reset() |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
721 |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
722 def _reset(self): |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
723 configmix.clear_assoc() |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
724 for pat, fmode in configmix.DEFAULT_ASSOC: |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
725 configmix.set_assoc(pat, fmode) |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
726 |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
727 def test_getvar(self): |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
728 self.assertEqual( |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
729 "value", |
|
325
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
730 self._cfg.getvar("%x23%x3a%x7c%x25%x2e.%x2e.%x3a.%x25.%x7c./.%x23")) |
|
320
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
731 self.assertEqual( |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
732 "value", |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
733 self._cfg.getvar( |
|
325
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
734 "%u0023%u003a%u007c%u0025%u002e.%u002e.%u003a.%u0025.%u007c./.%u0023")) |
|
320
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
735 self.assertEqual( |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
736 "value", |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
737 self._cfg.getvar( |
|
325
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
738 "%U00000023%U0000003a%U0000007c%U00000025%U0000002e.%U0000002e.%U0000003a.%U00000025.%U0000007c./.%U00000023")) |
|
320
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
739 |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
740 def test_getvar_s(self): |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
741 self.assertEqual( |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
742 "value", |
|
325
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
743 self._cfg.getvar_s("%x23%x3a%x7c%x25%x2e.%x2e.%x3a.%x25.%x7c./.%x23")) |
|
320
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
744 self.assertEqual( |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
745 "value", |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
746 self._cfg.getvar_s( |
|
325
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
747 "%u0023%u003a%u007c%u0025%u002e.%u002e.%u003a.%u0025.%u007c./.%u0023")) |
|
320
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
748 self.assertEqual( |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
749 "value", |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
750 self._cfg.getvar_s( |
|
325
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
751 "%U00000023%U0000003a%U0000007c%U00000025%U0000002e.%U0000002e.%U0000003a.%U00000025.%U0000007c./.%U00000023")) |
|
320
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
752 |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
753 def test_getvarl(self): |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
754 self.assertEqual( |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
755 "value", |
|
325
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
756 self._cfg.getvarl("#:|%.", ".", ":", "%", "|", "/", "#")) |
|
320
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
757 |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
758 def test_getvarl_s(self): |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
759 self.assertEqual( |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
760 "value", |
|
325
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
761 self._cfg.getvarl_s("#:|%.", ".", ":", "%", "|", "/", "#")) |
|
320
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
762 |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
763 def test_interpolation1(self): |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
764 self.assertEqual( |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
765 "value", |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
766 self._cfg.getvarl_s("events", "qc-2021.1-5G-summit", "xname")) |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
767 |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
768 def test_interpolation2(self): |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
769 self.assertEqual( |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
770 "value", |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
771 self._cfg.getvar_s("events.qc-2021%x2e1-5G-summit.xname")) |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
772 |
|
325
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
773 def test_reference1(self): |
|
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
774 self.assertTrue( |
|
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
775 isinstance( |
|
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
776 self._cfg.getvar_s("events.qc-2021%x2e1-5G-summit.xref"), |
|
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
777 dict)) |
|
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
778 |
|
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
779 def test_reference2(self): |
|
320
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
780 self.assertEqual( |
|
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
781 "value", |
|
325
ab33d51f3412
By default quote the "#" character also because it is typically a comment in all the configuration file formats.
Franz Glasner <fzglas.hg@dom66.de>
parents:
323
diff
changeset
|
782 self._cfg.getvar_s("events.qc-2021%x2e1-5G-summit.xref.%x23")) |
|
320
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
783 |
|
327
30f8dce82850
Test that quote() and unquote() are inverse
Franz Glasner <fzglas.hg@dom66.de>
parents:
325
diff
changeset
|
784 def test_quoting_and_unquoting_are_inverse(self): |
|
336
7692c91bb370
Tests: more thorough tests of identity and inverse quoting
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
335
diff
changeset
|
785 for c in """%.:#|"'{}[]""": |
|
7692c91bb370
Tests: more thorough tests of identity and inverse quoting
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
335
diff
changeset
|
786 qc = self._cfg.quote(c) |
|
7692c91bb370
Tests: more thorough tests of identity and inverse quoting
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
335
diff
changeset
|
787 self.assertTrue(qc.startswith("%x") and len(qc) == 4) |
|
7692c91bb370
Tests: more thorough tests of identity and inverse quoting
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
335
diff
changeset
|
788 self.assertEqual(c, self._cfg.unquote(qc)) |
|
7692c91bb370
Tests: more thorough tests of identity and inverse quoting
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
335
diff
changeset
|
789 |
|
7692c91bb370
Tests: more thorough tests of identity and inverse quoting
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
335
diff
changeset
|
790 def test_quoting_and_unquoting_are_identical(self): |
|
7692c91bb370
Tests: more thorough tests of identity and inverse quoting
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
335
diff
changeset
|
791 # other characters |
|
7692c91bb370
Tests: more thorough tests of identity and inverse quoting
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
335
diff
changeset
|
792 for c in """abc09/""": |
|
7692c91bb370
Tests: more thorough tests of identity and inverse quoting
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
335
diff
changeset
|
793 qc = self._cfg.quote(c) |
|
7692c91bb370
Tests: more thorough tests of identity and inverse quoting
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
335
diff
changeset
|
794 self.assertEqual(c, qc) |
|
7692c91bb370
Tests: more thorough tests of identity and inverse quoting
Franz Glasner <f.glasner@feldmann-mg.com>
parents:
335
diff
changeset
|
795 self.assertEqual(c, self._cfg.unquote(qc)) |
|
327
30f8dce82850
Test that quote() and unquote() are inverse
Franz Glasner <fzglas.hg@dom66.de>
parents:
325
diff
changeset
|
796 |
|
329
d81d2cdf4925
FIX: Handle the unquoting of namespaces within Configuration.getvar() properly.
Franz Glasner <fzglas.hg@dom66.de>
parents:
327
diff
changeset
|
797 def test_namespace_quoting(self): |
|
d81d2cdf4925
FIX: Handle the unquoting of namespaces within Configuration.getvar() properly.
Franz Glasner <fzglas.hg@dom66.de>
parents:
327
diff
changeset
|
798 v1 = self._cfg.getvar("PY:version") |
|
d81d2cdf4925
FIX: Handle the unquoting of namespaces within Configuration.getvar() properly.
Franz Glasner <fzglas.hg@dom66.de>
parents:
327
diff
changeset
|
799 v2 = self._cfg.getvar("P%x59:version") |
|
331
4f31e69d1ad5
Tests: for namespace quoting use some encoding variants also
Franz Glasner <fzglas.hg@dom66.de>
parents:
330
diff
changeset
|
800 v3 = self._cfg.getvar("%U00000050Y:version") |
|
4f31e69d1ad5
Tests: for namespace quoting use some encoding variants also
Franz Glasner <fzglas.hg@dom66.de>
parents:
330
diff
changeset
|
801 v4 = self._cfg.getvar("%x50%u0059:version") |
|
332
5c2c72d26b63
Tests: add a test for variable interpolation with a quoted namespace
Franz Glasner <fzglas.hg@dom66.de>
parents:
331
diff
changeset
|
802 v5 = self._cfg.getvarl_s("events", "qc-2021.1-5G-summit", "xver") |
|
338
933df3ffd428
Tests: add some more asserte to test_namespace_quoting
Franz Glasner <fzglas.hg@dom66.de>
parents:
337
diff
changeset
|
803 v6 = self._cfg.getvar_s("events.qc-2021%x2e1-5G-summit.xver") |
|
329
d81d2cdf4925
FIX: Handle the unquoting of namespaces within Configuration.getvar() properly.
Franz Glasner <fzglas.hg@dom66.de>
parents:
327
diff
changeset
|
804 self.assertEqual(v1, v2) |
|
d81d2cdf4925
FIX: Handle the unquoting of namespaces within Configuration.getvar() properly.
Franz Glasner <fzglas.hg@dom66.de>
parents:
327
diff
changeset
|
805 self.assertEqual(v1, v3) |
|
d81d2cdf4925
FIX: Handle the unquoting of namespaces within Configuration.getvar() properly.
Franz Glasner <fzglas.hg@dom66.de>
parents:
327
diff
changeset
|
806 self.assertEqual(v1, v4) |
| 337 | 807 self.assertEqual(v1, v5) |
|
338
933df3ffd428
Tests: add some more asserte to test_namespace_quoting
Franz Glasner <fzglas.hg@dom66.de>
parents:
337
diff
changeset
|
808 self.assertEqual(v1, v6) |
|
320
98490375d90c
Allow variable name quoting to be used in .getvar() and .getvar_s() and references
Franz Glasner <fzglas.hg@dom66.de>
parents:
314
diff
changeset
|
809 |
| 330 | 810 |
| 93 | 811 if __name__ == "__main__": |
| 812 unittest.main() |
