Skip to content

Commit fcdc27a

Browse files
authored
[matter_yamltests] Allow response field to be configured from the config section (project-chip#27323)
1 parent 9946106 commit fcdc27a

File tree

3 files changed

+32
-6
lines changed

3 files changed

+32
-6
lines changed

scripts/py_matter_yamltests/matter_yamltests/errors.py

+11
Original file line numberDiff line numberDiff line change
@@ -176,3 +176,14 @@ def __init__(self, content):
176176

177177
self.tag_key_with_error(content, 'wait')
178178
self.tag_key_with_error(content, 'response')
179+
180+
181+
class TestStepResponseVariableError(TestStepError):
182+
"""Raise when a test step response use a variable but this variable does not exist in the config section.
183+
"""
184+
185+
def __init__(self, content):
186+
message = 'The variable does not exist in the config section.'
187+
super().__init__(message)
188+
189+
self.tag_key_with_error(content, 'response')

scripts/py_matter_yamltests/matter_yamltests/yaml_loader.py

+20-5
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
from typing import Tuple, Union
1717

1818
from .errors import (TestStepError, TestStepGroupResponseError, TestStepInvalidTypeError, TestStepKeyError,
19-
TestStepNodeIdAndGroupIdError, TestStepValueAndValuesError, TestStepVerificationStandaloneError,
20-
TestStepWaitResponseError)
19+
TestStepNodeIdAndGroupIdError, TestStepResponseVariableError, TestStepValueAndValuesError,
20+
TestStepVerificationStandaloneError, TestStepWaitResponseError)
2121
from .fixes import add_yaml_support_for_scientific_notation_without_dot
2222

2323
try:
@@ -78,12 +78,13 @@ def __check_content(self, content):
7878
tests = content.get('tests', [])
7979
for step_index, step in enumerate(tests):
8080
try:
81-
self.__check_test_step(step)
81+
config = content.get('config', {})
82+
self.__check_test_step(config, step)
8283
except TestStepError as e:
8384
e.update_context(step, step_index)
8485
raise
8586

86-
def __check_test_step(self, content):
87+
def __check_test_step(self, config: dict, content):
8788
schema = {
8889
'label': str,
8990
'identity': str,
@@ -101,7 +102,7 @@ def __check_test_step(self, content):
101102
'verification': str,
102103
'PICS': str,
103104
'arguments': dict,
104-
'response': (dict, list),
105+
'response': (dict, list, str), # Can be a variable
105106
'minInterval': int,
106107
'maxInterval': int,
107108
'timedInteractionTimeoutMs': int,
@@ -116,13 +117,21 @@ def __check_test_step(self, content):
116117
self.__rule_step_with_verification_should_be_disabled_or_interactive(
117118
content)
118119
self.__rule_wait_should_not_expect_a_response(content)
120+
self.__rule_response_variable_should_exist_in_config(config, content)
119121

120122
if 'arguments' in content:
121123
arguments = content.get('arguments')
122124
self.__check_test_step_arguments(arguments)
123125

124126
if 'response' in content:
125127
response = content.get('response')
128+
129+
# If the response is a variable, update the response value with the content of the variable such
130+
# such that the error message looks nice if needed.
131+
if isinstance(response, str):
132+
response = config.get(response)
133+
content['response'] = response
134+
126135
if isinstance(response, list):
127136
[self.__check_test_step_response(x) for x in response]
128137
else:
@@ -241,3 +250,9 @@ def __rule_response_value_and_values_are_mutually_exclusive(self, content):
241250
def __rule_wait_should_not_expect_a_response(self, content):
242251
if 'wait' in content and 'response' in content:
243252
raise TestStepWaitResponseError(content)
253+
254+
def __rule_response_variable_should_exist_in_config(self, config, content):
255+
if 'response' in content:
256+
response = content.get('response')
257+
if isinstance(response, str) and response not in config:
258+
raise TestStepResponseVariableError(content)

scripts/py_matter_yamltests/test_yaml_loader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def test_key_tests_step_response_key(self):
301301
_, _, _, _, tests = load(content.format(value=value))
302302
self.assertEqual(tests, [{'response': [{'value': True}]}])
303303

304-
wrong_values = self._get_wrong_values([dict, list], spaces=6)
304+
wrong_values = self._get_wrong_values([dict, list, str], spaces=6)
305305
for value in wrong_values:
306306
x = content.format(value=value)
307307
self.assertRaises(TestStepInvalidTypeError, load, x)

0 commit comments

Comments
 (0)