From 8a232ee101d70c8e1f72e9e9eaac3144543dd5cd Mon Sep 17 00:00:00 2001 From: Marcus Hoffmann Date: Mon, 5 Feb 2024 22:47:17 +0100 Subject: [PATCH] support/testing: add python-uvloop runtime test Signed-off-by: Marcus Hoffmann Signed-off-by: Yann E. MORIN --- .../tests/package/sample_python_uvloop.py | 6 +++++ .../tests/package/test_python_uvloop.py | 22 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 support/testing/tests/package/sample_python_uvloop.py create mode 100644 support/testing/tests/package/test_python_uvloop.py diff --git a/support/testing/tests/package/sample_python_uvloop.py b/support/testing/tests/package/sample_python_uvloop.py new file mode 100644 index 0000000000..dc85d3e04e --- /dev/null +++ b/support/testing/tests/package/sample_python_uvloop.py @@ -0,0 +1,6 @@ +import uvloop + +async def main(): + print("Hello world!") + +uvloop.run(main()) diff --git a/support/testing/tests/package/test_python_uvloop.py b/support/testing/tests/package/test_python_uvloop.py new file mode 100644 index 0000000000..c5079ba59c --- /dev/null +++ b/support/testing/tests/package/test_python_uvloop.py @@ -0,0 +1,22 @@ +import os + +from tests.package.test_python import TestPythonPackageBase + + +class TestPythonPy3Uvloop(TestPythonPackageBase): + __test__ = True + config = TestPythonPackageBase.config + \ + """ + BR2_PACKAGE_PYTHON3=y + BR2_PACKAGE_PYTHON_UVLOOP=y + """ + sample_scripts = ["tests/package/sample_python_uvloop.py"] + + def test_run(self): + self.login() + self.check_sample_scripts_exist() + + cmd = "%s %s" % (self.interpreter, os.path.basename(self.sample_scripts[0])) + output, exit_code = self.emulator.run(cmd) + self.assertEqual(exit_code, 0) + self.assertEqual(output[0], "Hello world!")