aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQiu Tingting <qiutt@fujitsu.com>2023-05-30 14:40:29 +0800
committerQiu Tingting <qiutt@fujitsu.com>2023-05-30 14:40:29 +0800
commit1497d67ce8a16c40c5c9c87b23203331dad41012 (patch)
treef5e5cb7c5053820b35f18f713cbe26fc61b8ec72
parenta58fe5da972a02673b4aa207ac1bbc0944a80ecd (diff)
agl-test-framework: add ptest flex
Add ptest flex in agl-test-framework. Testing costs 8s. Bug-AGL: SPEC-4753 Signed-off-by: Qiu Tingting <qiutt@fujitsu.com> Change-Id: I62beb386b6d9f3ad4919efab6221937e422e6843
-rw-r--r--tests/flex/__init__.py0
-rw-r--r--tests/flex/run_tests.py27
2 files changed, 27 insertions, 0 deletions
diff --git a/tests/flex/__init__.py b/tests/flex/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/flex/__init__.py
diff --git a/tests/flex/run_tests.py b/tests/flex/run_tests.py
new file mode 100644
index 0000000..a315551
--- /dev/null
+++ b/tests/flex/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 Flex(PTESTBase):
+ def __init__(self):
+ super().__init__(test_name="flex")
+
+ def log_process(self):
+ log_file = self.get_logfile()
+ self.case_info_list = log.log_process_gnu(log_file)
+
+instance = Flex()
+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_flex(testbase: Flex, case_name):
+ testbase.run_case(case_name)
+
+if __name__ == '__main__':
+ pytest.main("-s run_tests")