16
16
from typing import Tuple , Union
17
17
18
18
from .errors import (TestStepError , TestStepGroupResponseError , TestStepInvalidTypeError , TestStepKeyError ,
19
- TestStepNodeIdAndGroupIdError , TestStepValueAndValuesError , TestStepVerificationStandaloneError ,
20
- TestStepWaitResponseError )
19
+ TestStepNodeIdAndGroupIdError , TestStepResponseVariableError , TestStepValueAndValuesError ,
20
+ TestStepVerificationStandaloneError , TestStepWaitResponseError )
21
21
from .fixes import add_yaml_support_for_scientific_notation_without_dot
22
22
23
23
try :
@@ -78,12 +78,13 @@ def __check_content(self, content):
78
78
tests = content .get ('tests' , [])
79
79
for step_index , step in enumerate (tests ):
80
80
try :
81
- self .__check_test_step (step )
81
+ config = content .get ('config' , {})
82
+ self .__check_test_step (config , step )
82
83
except TestStepError as e :
83
84
e .update_context (step , step_index )
84
85
raise
85
86
86
- def __check_test_step (self , content ):
87
+ def __check_test_step (self , config : dict , content ):
87
88
schema = {
88
89
'label' : str ,
89
90
'identity' : str ,
@@ -101,7 +102,7 @@ def __check_test_step(self, content):
101
102
'verification' : str ,
102
103
'PICS' : str ,
103
104
'arguments' : dict ,
104
- 'response' : (dict , list ),
105
+ 'response' : (dict , list , str ), # Can be a variable
105
106
'minInterval' : int ,
106
107
'maxInterval' : int ,
107
108
'timedInteractionTimeoutMs' : int ,
@@ -116,13 +117,21 @@ def __check_test_step(self, content):
116
117
self .__rule_step_with_verification_should_be_disabled_or_interactive (
117
118
content )
118
119
self .__rule_wait_should_not_expect_a_response (content )
120
+ self .__rule_response_variable_should_exist_in_config (config , content )
119
121
120
122
if 'arguments' in content :
121
123
arguments = content .get ('arguments' )
122
124
self .__check_test_step_arguments (arguments )
123
125
124
126
if 'response' in content :
125
127
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
+
126
135
if isinstance (response , list ):
127
136
[self .__check_test_step_response (x ) for x in response ]
128
137
else :
@@ -241,3 +250,9 @@ def __rule_response_value_and_values_are_mutually_exclusive(self, content):
241
250
def __rule_wait_should_not_expect_a_response (self , content ):
242
251
if 'wait' in content and 'response' in content :
243
252
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 )
0 commit comments