Introduces the test for testing the new functionality of ztest shell. Passing -r (repeat iter) parameter. This allows to run a particula testcase or testsuite several times. Passing -p (any value) parameter. This allows to provide a parameter to a test at runtime. Signed-off-by: Arkadiusz Cholewinski <arkadiuszx.cholewinski@intel.com>
51 lines
2.6 KiB
Python
51 lines
2.6 KiB
Python
# Copyright (c) 2024 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
import pytest
|
|
from twister_harness import Shell
|
|
|
|
def test_run_all_shuffled(shell: Shell):
|
|
lines = shell.exec_command('ztest shuffle -c 1 -s 1')
|
|
# Join the list of lines into a single string
|
|
output = '\n'.join(lines)
|
|
assert "PASS - test_int_param" in output, f"Expected 'PASS - test_int_param' but got {lines}"
|
|
assert "PASS - test_dummy" in output, f"Expected 'PASS - test_dummy' but got {lines}"
|
|
assert "PASS - test_string_param" in output, f"Expected 'PASS - test_string_param' but got {lines}"
|
|
|
|
def test_run_testcase_once(shell: Shell):
|
|
lines = shell.exec_command('ztest run-testcase ztest_params::test_dummy')
|
|
# Join the list of lines into a single string
|
|
output = '\n'.join(lines)
|
|
assert "PASS - test_dummy" in output, f"Expected 'PASS - test_dummy' but got {lines}"
|
|
|
|
# def test_run_testcase_twice(shell: Shell):
|
|
lines = shell.exec_command('ztest run-testcase ztest_params::test_dummy -r 2')
|
|
# Join the list of lines into a single string
|
|
output = '\n'.join(lines)
|
|
pass_dummy_count = output.count("PASS - test_dummy")
|
|
assert pass_dummy_count == 2, f"Expected 2 occurrences of 'PASS - test_dummy' but found {pass_dummy_count}"
|
|
|
|
def test_run_testsuite_twice(shell: Shell):
|
|
lines = shell.exec_command('ztest run-testsuite ztest_params -r 2')
|
|
# Join the list of lines into a single string
|
|
output = '\n'.join(lines)
|
|
pass_ztest_params_count = output.count("TESTSUITE ztest_params succeeded")
|
|
assert pass_ztest_params_count == 2, f"Expected 2 occurrences of 'TESTSUITE ztest_params succeeded' but found {pass_ztest_params_count}"
|
|
|
|
def test_run_testsuite_once(shell: Shell):
|
|
lines = shell.exec_command('ztest run-testsuite ztest_params')
|
|
# Join the list of lines into a single string
|
|
output = '\n'.join(lines)
|
|
assert "TESTSUITE ztest_params succeeded" in output, f"Expected 'TESTSUITE ztest_params succeeded' but got {lines}"
|
|
|
|
def test_run_testcase_with_int_parameter(shell: Shell):
|
|
lines = shell.exec_command('ztest run-testcase ztest_params::test_int_param -p 44')
|
|
# Join the list of lines into a single string
|
|
output = '\n'.join(lines)
|
|
assert 'Passed int value:44' in output, 'expected response not found'
|
|
|
|
@pytest.mark.parametrize("test_input", ["Testing", "Zephyr", "RTOS"])
|
|
def test_run_testcase_with_string_parameter(shell: Shell, test_input):
|
|
lines = shell.exec_command(f'ztest run-testcase ztest_params::test_string_param -p {test_input}')
|
|
assert f'Passed string:{test_input}' in lines, 'expected response not found'
|