-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathtest_yaml_loader.py
564 lines (424 loc) · 17.6 KB
/
test_yaml_loader.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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
#
# Copyright (c) 2023 Project CHIP Authors
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import unittest
from unittest.mock import mock_open, patch
from matter_yamltests.errors import (TestStepGroupResponseError, TestStepInvalidTypeError, TestStepKeyError,
TestStepNodeIdAndGroupIdError, TestStepValueAndValuesError,
TestStepVerificationStandaloneError)
from matter_yamltests.yaml_loader import YamlLoader
def mock_open_with_parameter_content(content):
file_object = mock_open(read_data=content).return_value
file_object.__iter__.return_value = content.splitlines(True)
return file_object
@patch('builtins.open', new=mock_open_with_parameter_content)
class TestYamlLoader(unittest.TestCase):
def _get_wrong_values(self, valid_types, spaces=2):
values = []
if type(None) not in valid_types:
values.append('')
if str not in valid_types:
values.append('A Test')
if bool not in valid_types:
values.append(True)
if int not in valid_types:
values.append(2)
if float not in valid_types:
values.append(2.1)
if dict not in valid_types:
values.append('\n' + (spaces * ' ') +
'value: True\n' + (spaces * ' ') + 'values: False')
if list not in valid_types:
values.append('\n' + (spaces * ' ') +
'- value: Test1\n' + (spaces * ' ') + '- value: Test2')
return values
def test_missing_file(self):
load = YamlLoader().load
content = None
filename, name, pics, config, tests = load(content)
self.assertEqual(filename, '')
self.assertEqual(name, '')
self.assertEqual(pics, None)
self.assertEqual(config, {})
self.assertEqual(tests, [])
def test_empty_file(self):
load = YamlLoader().load
content = ''
filename, name, pics, config, tests = load(content)
self.assertEqual(name, '')
self.assertEqual(name, '')
self.assertEqual(pics, None)
self.assertEqual(config, {})
self.assertEqual(tests, [])
def test_key_unknown(self):
load = YamlLoader().load
content = '''
unknown: Test Name
'''
self.assertRaises(TestStepKeyError, load, content)
def test_key_name(self):
load = YamlLoader().load
content = '''
name: Test Name
'''
_, name, _, _, _ = load(content)
self.assertEqual(name, 'Test Name')
def test_key_name_wrong_values(self):
load = YamlLoader().load
key = 'name'
values = self._get_wrong_values([str])
[self.assertRaises(TestStepInvalidTypeError, load,
f'{key}: {x}') for x in values]
def test_key_pics_string(self):
load = YamlLoader().load
content = '''
PICS: OO.S
'''
_, _, pics, _, _ = load(content)
self.assertEqual(pics, 'OO.S')
def test_key_pics_list(self):
load = YamlLoader().load
content = '''
PICS:
- OO.S
- OO.C
'''
_, _, pics, _, _ = load(content)
self.assertEqual(pics, ['OO.S', 'OO.C'])
def test_key_pics_wrong_values(self):
load = YamlLoader().load
key = 'PICS'
values = self._get_wrong_values([str, list])
[self.assertRaises(TestStepInvalidTypeError, load,
f'{key}: {x}') for x in values]
def test_key_config(self):
load = YamlLoader().load
content = '''
config:
name: value
name2: value2
'''
_, _, _, config, _ = load(content)
self.assertEqual(config, {'name': 'value', 'name2': 'value2'})
def test_key_config_wrong_values(self):
load = YamlLoader().load
key = 'config'
values = self._get_wrong_values([dict])
[self.assertRaises(TestStepInvalidTypeError, load,
f'{key}: {x}') for x in values]
def test_key_tests(self):
load = YamlLoader().load
content = '''
tests:
- label: Test1
- label: Test2
'''
_, _, _, _, tests = load(content)
self.assertEqual(tests, [{'label': 'Test1'}, {'label': 'Test2'}])
def test_key_tests_wrong_values(self):
load = YamlLoader().load
key = 'tests'
values = self._get_wrong_values([list])
[self.assertRaises(TestStepInvalidTypeError, load,
f'{key}: {x}') for x in values]
def test_key_tests_step_unknown_key(self):
load = YamlLoader().load
content = '''
tests:
- unknown: Test2
'''
self.assertRaises(TestStepKeyError, load, content)
def test_key_tests_step_bool_keys(self):
load = YamlLoader().load
content = ('tests:\n'
' - {key}: {value}')
keys = [
'disabled',
'fabricFiltered',
]
wrong_values = self._get_wrong_values([bool], spaces=6)
for key in keys:
_, _, _, _, tests = load(content.format(key=key, value=True))
self.assertEqual(tests, [{key: True}])
for value in wrong_values:
x = content.format(key=key, value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_str_keys(self):
load = YamlLoader().load
content = ('tests:\n'
' - {key}: {value}')
keys = [
'label',
'identity',
'cluster',
'attribute',
'command',
'event',
'PICS',
'wait',
]
# NOTE: 'verification' is excluded from this list despites beeing a key of type
# str. This is because 'verification' key has a rule that requires it to
# tied with either a 'disabled: True' or a 'command: UserPrompt'.
# As such it has dedicated tests.
wrong_values = self._get_wrong_values([str], spaces=6)
for key in keys:
_, _, _, _, tests = load(content.format(key=key, value='a string'))
self.assertEqual(tests, [{key: 'a string'}])
for value in wrong_values:
x = content.format(key=key, value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_int_keys(self):
load = YamlLoader().load
content = ('tests:\n'
' - {key}: {value}')
keys = [
'minInterval',
'maxInterval',
'timedInteractionTimeoutMs',
'busyWaitMs',
]
wrong_values = self._get_wrong_values([int], spaces=6)
for key in keys:
_, _, _, _, tests = load(content.format(key=key, value=1))
self.assertEqual(tests, [{key: 1}])
for value in wrong_values:
x = content.format(key=key, value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_dict_keys(self):
load = YamlLoader().load
content = ('tests:\n'
' - command: writeAttribute\n'
' {key}: {value}')
keys = [
'arguments',
]
valid_value = ('\n'
' value: True\n')
wrong_values = self._get_wrong_values([dict], spaces=6)
for key in keys:
_, _, _, _, tests = load(
content.format(key=key, value=valid_value))
self.assertEqual(
tests, [{'command': 'writeAttribute', key: {'value': True}}])
for value in wrong_values:
x = content.format(key=key, value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_response_key(self):
load = YamlLoader().load
content = ('tests:\n'
' - response: {value}')
value = ('\n'
' value: True\n')
_, _, _, _, tests = load(content.format(value=value))
self.assertEqual(tests, [{'response': {'value': True}}])
value = ('\n'
' - value: True\n')
_, _, _, _, tests = load(content.format(value=value))
self.assertEqual(tests, [{'response': [{'value': True}]}])
wrong_values = self._get_wrong_values([dict, list, str], spaces=6)
for value in wrong_values:
x = content.format(value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_endpoint_number_key(self):
load = YamlLoader().load
content = ('tests:\n'
' - endpoint: {value}')
_, _, _, _, tests = load(content.format(value=1))
self.assertEqual(tests, [{'endpoint': 1}])
_, _, _, _, tests = load(content.format(value='TestKey'))
self.assertEqual(tests, [{'endpoint': 'TestKey'}])
wrong_values = self._get_wrong_values([str, int], spaces=6)
for value in wrong_values:
x = content.format(value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_group_id_key(self):
load = YamlLoader().load
content = ('tests:\n'
' - groupId: {value}')
_, _, _, _, tests = load(content.format(value=1))
self.assertEqual(tests, [{'groupId': 1}])
_, _, _, _, tests = load(content.format(value='TestKey'))
self.assertEqual(tests, [{'groupId': 'TestKey'}])
wrong_values = self._get_wrong_values([str, int], spaces=6)
for value in wrong_values:
x = content.format(value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_node_id_key(self):
load = YamlLoader().load
content = ('tests:\n'
' - nodeId: {value}')
_, _, _, _, tests = load(content.format(value=1))
self.assertEqual(tests, [{'nodeId': 1}])
_, _, _, _, tests = load(content.format(value='TestKey'))
self.assertEqual(tests, [{'nodeId': 'TestKey'}])
wrong_values = self._get_wrong_values([str, int], spaces=6)
for value in wrong_values:
x = content.format(value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_event_number_key(self):
load = YamlLoader().load
content = ('tests:\n'
' - eventNumber: {value}')
_, _, _, _, tests = load(content.format(value=1))
self.assertEqual(tests, [{'eventNumber': 1}])
_, _, _, _, tests = load(content.format(value='TestKey'))
self.assertEqual(tests, [{'eventNumber': 'TestKey'}])
wrong_values = self._get_wrong_values([str, int], spaces=6)
for value in wrong_values:
x = content.format(value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_verification_key(self):
load = YamlLoader().load
content = ('tests:\n'
' - verification: {value}\n'
' disabled: true')
_, _, _, _, tests = load(content.format(value='Test Sentence'))
self.assertEqual(
tests, [{'verification': 'Test Sentence', 'disabled': True}])
wrong_values = self._get_wrong_values([str, int], spaces=6)
for value in wrong_values:
x = content.format(value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
# TODO
# 'verification',
def test_key_tests_step_rule_node_id_and_group_id_are_mutually_exclusive(self):
load = YamlLoader().load
content = '''
tests:
- label: A Test Name
nodeId: 0
groupId: 1
'''
self.assertRaises(TestStepNodeIdAndGroupIdError, load, content)
def test_key_tests_step_rule_group_step_should_not_expect_a_response(self):
load = YamlLoader().load
content = '''
tests:
- label: A Test Name
groupId: 1
response:
value: An expected value
'''
self.assertRaises(TestStepGroupResponseError, load, content)
def test_key_tests_step_rule_step_with_verification_should_be_disabled_or_interactive(self):
load = YamlLoader().load
content = '''
tests:
- label: A Test Name
verification: A verification sentence
'''
self.assertRaises(TestStepVerificationStandaloneError, load, content)
content = '''
tests:
- label: A Test Name
verification: A verification sentence
disabled: false
'''
self.assertRaises(TestStepVerificationStandaloneError, load, content)
content = '''
tests:
- label: A Test Name
verification: A verification sentence
disabled: true
'''
_, _, _, _, tests = load(content)
self.assertEqual(tests, [
{'label': 'A Test Name', 'verification': 'A verification sentence', 'disabled': True}])
content = '''
tests:
- label: A Test Name
verification: A verification sentence
command: Something
'''
self.assertRaises(TestStepVerificationStandaloneError, load, content)
content = '''
tests:
- label: A Test Name
verification: A verification sentence
command: UserPrompt
'''
_, _, _, _, tests = load(content)
self.assertEqual(tests, [
{'label': 'A Test Name', 'verification': 'A verification sentence', 'command': 'UserPrompt'}])
def test_key_tests_step_response_key_value_key(self):
# NOTE: The value key can be of any type.
pass
def test_key_tests_step_response_key_values_key(self):
load = YamlLoader().load
content = ('tests:\n'
' - response:\n'
' values: {value}')
_, _, _, _, tests = load(content.format(value=[]))
self.assertEqual(tests, [{'response': {'values': []}}])
wrong_values = self._get_wrong_values([list], spaces=8)
for value in wrong_values:
x = content.format(value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_response_key_error_key(self):
load = YamlLoader().load
content = ('tests:\n'
' - response:\n'
' error: {value}')
_, _, _, _, tests = load(content.format(value='AnError'))
self.assertEqual(tests, [{'response': {'error': 'AnError'}}])
wrong_values = self._get_wrong_values([str], spaces=8)
for value in wrong_values:
x = content.format(value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_response_key_cluster_error_key(self):
load = YamlLoader().load
content = ('tests:\n'
' - response:\n'
' clusterError: {value}')
_, _, _, _, tests = load(content.format(value=1))
self.assertEqual(tests, [{'response': {'clusterError': 1}}])
wrong_values = self._get_wrong_values([int], spaces=8)
for value in wrong_values:
x = content.format(value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_response_key_constraints_key(self):
load = YamlLoader().load
content = ('tests:\n'
' - response:\n'
' constraints: {value}')
_, _, _, _, tests = load(content.format(value={}))
self.assertEqual(tests, [{'response': {'constraints': {}}}])
wrong_values = self._get_wrong_values([dict], spaces=8)
for value in wrong_values:
x = content.format(value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_key_tests_step_response_key_save_as_key(self):
load = YamlLoader().load
content = ('tests:\n'
' - response:\n'
' saveAs: {value}')
_, _, _, _, tests = load(content.format(value='AKey'))
self.assertEqual(tests, [{'response': {'saveAs': 'AKey'}}])
wrong_values = self._get_wrong_values([str], spaces=8)
for value in wrong_values:
x = content.format(value=value)
self.assertRaises(TestStepInvalidTypeError, load, x)
def test_rule_response_value_and_values_are_mutually_exclusive(self):
load = YamlLoader().load
content = ('tests:\n'
' - response:\n'
' value: 1\n'
' values: []')
self.assertRaises(TestStepValueAndValuesError, load, content)
# TODO Check constraints
if __name__ == '__main__':
unittest.main()