-
Notifications
You must be signed in to change notification settings - Fork 4
/
test_yaml_env_tag.py
333 lines (280 loc) · 7.54 KB
/
test_yaml_env_tag.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
import os
import yaml
import datetime
import unittest
from unittest import mock
from yaml_env_tag import construct_env_tag
def mockenv(**kwargs):
''' Decorator to mock os.environ with provided variables. '''
return mock.patch.dict(os.environ, kwargs)
class TestYamlEnvTag(unittest.TestCase):
def assertYamlLoad(self, data, expected, loader=yaml.Loader):
loader.add_constructor('!ENV', construct_env_tag)
self.assertEqual(expected, yaml.load(data, Loader=loader))
@mockenv(VAR='foo')
def test_scalar(self):
self.assertYamlLoad(
'!ENV VAR',
'foo'
)
def test_scalar_undefined(self):
self.assertYamlLoad(
'!ENV VAR',
None
)
@mockenv(VAR='foo')
def test_safe_loader(self):
self.assertYamlLoad(
'!ENV VAR',
'foo',
yaml.SafeLoader
)
@mockenv(VAR='foo')
def test_scalar_in_squence(self):
self.assertYamlLoad(
'- !ENV VAR',
['foo']
)
@mockenv(VAR='foo')
def test_scalar_in_mapping(self):
self.assertYamlLoad(
'key: !ENV VAR',
{'key': 'foo'}
)
@mockenv(VAR='foo')
def test_sequence_1(self):
self.assertYamlLoad(
'!ENV [VAR]',
'foo'
)
def test_sequence_1_undefined(self):
self.assertYamlLoad(
'!ENV [VAR]',
None
)
@mockenv(VAR='foo')
def test_sequence_2(self):
self.assertYamlLoad(
'!ENV [VAR, default]',
'foo'
)
def test_sequence_2_undefined(self):
self.assertYamlLoad(
'!ENV [VAR, default]',
'default'
)
@mockenv(VAR1='foo', VAR2='bar')
def test_sequence_3(self):
self.assertYamlLoad(
'!ENV [VAR1, VAR2, default]',
'foo'
)
@mockenv(VAR2='bar')
def test_sequence_3_1_undefined(self):
self.assertYamlLoad(
'!ENV [VAR1, VAR2, default]',
'bar'
)
def test_sequence_3_undefined(self):
self.assertYamlLoad(
'!ENV [VAR1, VAR2, default]',
'default'
)
def test_default_type_null(self):
self.assertYamlLoad(
'!ENV [VAR, null]',
None
)
def test_default_type_tilde(self):
self.assertYamlLoad(
'!ENV [VAR, ~]',
None
)
def test_default_type_bool_false(self):
self.assertYamlLoad(
'!ENV [VAR, false]',
False
)
def test_default_type_bool_true(self):
self.assertYamlLoad(
'!ENV [VAR, true]',
True
)
def test_default_type_str(self):
self.assertYamlLoad(
'!ENV [VAR, "a string"]',
'a string'
)
def test_default_type_int(self):
self.assertYamlLoad(
'!ENV [VAR, 42]',
42
)
def test_default_type_float(self):
self.assertYamlLoad(
'!ENV [VAR, 3.14]',
3.14
)
def test_default_type_date(self):
self.assertYamlLoad(
'!ENV [VAR, 2020-11-11]',
datetime.date(2020, 11, 11)
)
def test_default_type_sequence(self):
self.assertYamlLoad(
'!ENV [VAR, [foo, bar]]',
['foo', 'bar']
)
def test_default_type_mapping(self):
self.assertYamlLoad(
'!ENV [VAR, foo: bar]',
{'foo': 'bar'}
)
@mockenv(VAR='null')
def test_env_value_type_null(self):
self.assertYamlLoad(
'!ENV [VAR, default]',
None
)
@mockenv(VAR='~')
def test_env_value_type_tilde(self):
self.assertYamlLoad(
'!ENV [VAR, default]',
None
)
@mockenv(VAR='false')
def test_env_value_type_bool_false(self):
self.assertYamlLoad(
'!ENV VAR',
False
)
@mockenv(VAR='true')
def test_env_value_type_bool_true(self):
self.assertYamlLoad(
'!ENV VAR',
True
)
@mockenv(VAR='a string')
def test_env_value_type_str(self):
self.assertYamlLoad(
'!ENV VAR',
'a string'
)
@mockenv(VAR='42')
def test_env_value_type_int(self):
self.assertYamlLoad(
'!ENV VAR',
42
)
@mockenv(VAR='3.14')
def test_env_value_type_float(self):
self.assertYamlLoad(
'!ENV VAR',
3.14
)
@mockenv(VAR='2020-11-11')
def test_env_value_type_date(self):
self.assertYamlLoad(
'!ENV VAR',
datetime.date(2020, 11, 11)
)
@mockenv(VAR='[foo, bar]')
def test_env_value_type_sequence(self):
self.assertYamlLoad(
'!ENV VAR',
'[foo, bar]'
)
@mockenv(VAR='foo: bar')
def test_env_value_type_mapping(self):
self.assertYamlLoad(
'!ENV VAR',
'foo: bar'
)
@mockenv(UPPERCASE='foo')
def test_env_name_uppercase(self):
self.assertYamlLoad(
'!ENV UPPERCASE',
'foo'
)
@mockenv(lowercase='foo')
def test_env_name_lowercase(self):
self.assertYamlLoad(
'!ENV lowercase',
'foo'
)
@mockenv(CamelCase='foo')
def test_env_name_CamelCase(self):
self.assertYamlLoad(
'!ENV CamelCase',
'foo'
)
@mockenv(snake_case='foo')
def test_env_name_snake_case(self):
self.assertYamlLoad(
'!ENV snake_case',
'foo'
)
# WARNING! The Environment Variable names in the following tests are
# probably a bad idea in use. In fact, it may not even be possable to
# set them in most OSs. We are testing that they don't get converted
# to native Python types, ensuring expected results in edge cases.
@mockenv(null='foo')
def test_env_name_null(self):
self.assertYamlLoad(
'!ENV null',
'foo'
)
@mockenv(**{'~': 'foo'})
def test_env_name_tilde(self):
self.assertYamlLoad(
'!ENV ~',
'foo'
)
@mockenv(**{'true': 'foo'})
def test_env_name_true(self):
self.assertYamlLoad(
'!ENV true',
'foo'
)
@mockenv(**{'false': 'foo'})
def test_env_name_false(self):
self.assertYamlLoad(
'!ENV false',
'foo'
)
@mockenv(**{'42': 'foo'})
def test_env_name_int(self):
self.assertYamlLoad(
'!ENV 42',
'foo'
)
@mockenv(**{'3.14': 'foo'})
def test_env_name_float(self):
self.assertYamlLoad(
'!ENV 3.14',
'foo'
)
@mockenv(**{'2020-11-11': 'foo'})
def test_env_name_date(self):
self.assertYamlLoad(
'!ENV 2020-11-11',
'foo'
)
def test_env_name_sequance(self):
yaml.Loader.add_constructor('!ENV', construct_env_tag)
self.assertRaises(
yaml.constructor.ConstructorError,
yaml.load,
'!ENV [[foo]]',
Loader=yaml.Loader
)
def test_env_name_mapping(self):
yaml.Loader.add_constructor('!ENV', construct_env_tag)
self.assertRaises(
yaml.constructor.ConstructorError,
yaml.load,
'!ENV {key: value}',
Loader=yaml.Loader
)
if __name__ == '__main__':
unittest.main()