aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQiu Tingting <qiutt@fujitsu.com>2023-05-06 09:49:15 +0800
committerQiu Tingting <qiutt@fujitsu.com>2023-05-06 09:49:15 +0800
commit94510b45420c8ff3b73befa6f77bb2a0c7c34eb8 (patch)
tree61cab876386be5c324621fae501820a2e94640a7
parent758ea8e0d6ca67fe9a6d453fb59497bab35b2dea (diff)
agl-test-framework: add ptest support of lua
Add ptest support of lua in agl-test-framework. Testing costs 5s. Bug-AGL: SPEC-4753 Signed-off-by: Qiu Tingting <qiutt@fujitsu.com> Change-Id: I63415435a6fa9c83f93f82b03029787c35ca0a7e
-rw-r--r--tests/lua/__init__.py0
-rw-r--r--tests/lua/run_tests.py27
2 files changed, 27 insertions, 0 deletions
diff --git a/tests/lua/__init__.py b/tests/lua/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/lua/__init__.py
diff --git a/tests/lua/run_tests.py b/tests/lua/run_tests.py
new file mode 100644
index 0000000..a11986a
--- /dev/null
+++ b/tests/lua/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 Lua(PTESTBase):
+ def __init__(self):
+ super().__init__(test_name="lua")
+
+ def log_process(self):
+ log_file = self.get_logfile()
+ self.case_info_list = log.log_process_gnu(log_file)
+
+instance = Lua()
+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_lua(testbase: Lua, case_name):
+ testbase.run_case(case_name)
+
+if __name__ == '__main__':
+ pytest.main("-s run_tests")