aboutsummaryrefslogtreecommitdiffstats
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
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
-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")
re>## ## Copyright (C) 2016, 2017, 2018 "IoT.bzh" ## ## This file is part of afb-daemon project. ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. ## You may obtain a copy of the License at ## ## http://www.apache.org/licenses/LICENSE-2.0 ## ## Unless required by applicable law or agreed to in writing, software ## distributed under the License is distributed on an "AS IS" BASIS, ## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ## See the License for the specific language governing permissions and ## limitations under the License. ## prefix=@CMAKE_INSTALL_PREFIX@ exec_prefix=${prefix} libdir=${exec_prefix}/@CMAKE_INSTALL_LIBDIR@ includedir=${prefix}/include Name: @LEGACY_NAME@ Description: @PROJECT_DESCRIPTION@ Version: @PROJECT_VERSION@ URL: @PROJECT_URL@ Requires.private: afb-helpers Libs: -L${libdir} -l@TARGET_NAME@ Cflags: -I${includedir}