Skip to content

Commit

Permalink
Fix chip-repl yamltests runner (#24478)
Browse files Browse the repository at this point in the history
  • Loading branch information
tehampson authored and pull[bot] committed Jun 19, 2023
1 parent 22ed623 commit 5272753
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
9 changes: 5 additions & 4 deletions scripts/tests/chiptest/yamltest_with_chip_repl_tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def main(setup_code, yaml_path, node_id):
chip.native.Init()
chip_stack = ChipStack(chip_stack_storage.name)
certificate_authority_manager = chip.CertificateAuthority.CertificateAuthorityManager(
chip_stack, chipStack.GetStorageManager())
chip_stack, chip_stack.GetStorageManager())
certificate_authority_manager.LoadAuthoritiesFromStorage()

if len(certificate_authority_manager.activeCaList) == 0:
Expand All @@ -96,7 +96,7 @@ def main(setup_code, yaml_path, node_id):

# Parsing YAML test and setting up chip-repl yamltests runner.
yaml = TestParser(yaml_path, None, clusters_definitions)
runner = ReplTestRunner(clusters_definitions, certificate_authority_manager)
runner = ReplTestRunner(clusters_definitions, certificate_authority_manager, dev_ctrl)

# Executing and validating test
for test_step in yaml.tests:
Expand All @@ -107,8 +107,9 @@ def main(setup_code, yaml_path, node_id):
decoded_response = runner.decode(response)
post_processing_result = test_step.post_process_response(decoded_response)
if not post_processing_result.is_success():
# TODO figure out how we error out here
pass
exit(-2)
else:
exit(-2)

runner.shutdown()
# Tearing down chip stack. If not done in the correct order test will fail.
Expand Down
6 changes: 2 additions & 4 deletions src/controller/python/chip/yaml/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,15 +470,13 @@ class ReplTestRunner:
Uses ChipDeviceCtrl from chip-repl to execute parsed YAML TestSteps.
'''

def __init__(self, test_spec_definition, certificate_authority_manager):
def __init__(self, test_spec_definition, certificate_authority_manager, alpha_dev_ctrl):
self._test_spec_definition = test_spec_definition
self._context = _ExecutionContext(data_model_lookup=PreDefinedDataModelLookup())
self._certificate_authority_manager = certificate_authority_manager
self._dev_ctrls = {}

ca_list = certificate_authority_manager.activeCaList
dev_ctrl = ca_list[0].adminList[0].NewController()
self._dev_ctrls['alpha'] = dev_ctrl
self._dev_ctrls['alpha'] = alpha_dev_ctrl

def _invoke_action_factory(self, test_step, cluster: str):
'''Creates cluster invoke action command from TestStep.
Expand Down

0 comments on commit 5272753

Please sign in to comment.