aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorQiu Tingting <qiutt@fujitsu.com>2023-09-28 07:45:14 +0000
committerQiu Tingting <qiutt@fujitsu.com>2023-09-28 07:45:14 +0000
commitc62eef089e10114250c6331530ace7011c522488 (patch)
tree14fdc0b45200c8aa1f267c7fc9bd6e6c35809b8a /tests
parentca7e609b502a3ad9db2c0dc5a86885f784c952b5 (diff)
agl-test-framework: add ptest tar
Add ptest tar in agl-test-framework. Testing costs 10.5m. Bug-AGL: SPEC-4753 Signed-off-by: Qiu Tingting <qiutt@fujitsu.com> Change-Id: I2cc5b5bd3f315276208cf5e67e8cf96253960fa0
Diffstat (limited to 'tests')
-rw-r--r--tests/tar/__init__.py0
-rw-r--r--tests/tar/run_tests.py27
2 files changed, 27 insertions, 0 deletions
diff --git a/tests/tar/__init__.py b/tests/tar/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/tar/__init__.py
diff --git a/tests/tar/run_tests.py b/tests/tar/run_tests.py
new file mode 100644
index 0000000..afc1c53
--- /dev/null
+++ b/tests/tar/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 Tar(PTESTBase):
+ def __init__(self):
+ super().__init__(test_name="tar")
+
+ def log_process(self):
+ log_file = self.get_logfile()
+ self.case_info_list = log.log_process_gnu(log_file)
+
+instance = Tar()
+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_tar(testbase: Tar, case_name):
+ testbase.run_case(case_name)
+
+if __name__ == '__main__':
+ pytest.main("-s run_tests")