diff options
author | Qiu Tingting <qiutt@fujitsu.com> | 2023-05-05 15:28:02 +0800 |
---|---|---|
committer | Qiu Tingting <qiutt@fujitsu.com> | 2023-05-05 15:28:02 +0800 |
commit | 758ea8e0d6ca67fe9a6d453fb59497bab35b2dea (patch) | |
tree | 4c2398c8a59fee96ae0bab11fa6055815848e2ca | |
parent | cd883345eefa069eb0327079a64c59f5e9a7edb7 (diff) |
agl-test-framework: add ptest support of lz4
Add ptest support of lz4 in agl-test-framework.
Testing costs 1 hour 5 minutes.
Bug-AGL: SPEC-4753
Signed-off-by: Qiu Tingting <qiutt@fujitsu.com>
Change-Id: I8905843689cf26fb815615aa84aaa3018fe46fc2
-rw-r--r-- | tests/lz4/__init__.py | 0 | ||||
-rw-r--r-- | tests/lz4/run_tests.py | 27 |
2 files changed, 27 insertions, 0 deletions
diff --git a/tests/lz4/__init__.py b/tests/lz4/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/lz4/__init__.py diff --git a/tests/lz4/run_tests.py b/tests/lz4/run_tests.py new file mode 100644 index 0000000..9db6683 --- /dev/null +++ b/tests/lz4/run_tests.py @@ -0,0 +1,27 @@ +import pytest +import plugins.agl_test_log as log +from plugins.agl_test_ptest_base import PTESTBase + +class Lz4(PTESTBase): + def __init__(self): + super().__init__(test_name="lz4") + + def log_process(self): + log_file = self.get_logfile() + self.case_info_list = log.log_process_gnu(log_file) + +instance = Lz4() +instance.run_ptest() + +@pytest.fixture(scope='module') +def testbase(): + yield instance + #package log files and make report file + instance.log_report() + +@pytest.mark.parametrize('case_name', instance.case_info_list.keys()) +def test_lz4(testbase: Lz4, case_name): + testbase.run_case(case_name) + +if __name__ == '__main__': + pytest.main("-s run_tests") |