mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-26 20:56:33 +00:00
testing/tests/package/test_python: refactor TestPythonBase
Convert TestPythonBase to a true base class that only provides code implementing various tests without defining tests themselves in a "discoverable" form. To retain correct testing functionality, add TestPython2 derived class that uses code from TestPythonBase to define actual runnable test. Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Reviewed-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Tested-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> [Thomas: fix typo in commit log, update .gitlab-ci.yml, both pointed by Ricardo.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
255b8ab406
commit
4c85d3e459
@ -226,7 +226,7 @@ tests.fs.test_squashfs.TestSquashfs: *runtime_test
|
|||||||
tests.fs.test_ubi.TestUbi: *runtime_test
|
tests.fs.test_ubi.TestUbi: *runtime_test
|
||||||
tests.fs.test_yaffs2.TestYaffs2: *runtime_test
|
tests.fs.test_yaffs2.TestYaffs2: *runtime_test
|
||||||
tests.package.test_dropbear.TestDropbear: *runtime_test
|
tests.package.test_dropbear.TestDropbear: *runtime_test
|
||||||
tests.package.test_python.TestPythonBase: *runtime_test
|
tests.package.test_python.TestPython2: *runtime_test
|
||||||
tests.toolchain.test_external.TestExternalToolchainBuildrootMusl: *runtime_test
|
tests.toolchain.test_external.TestExternalToolchainBuildrootMusl: *runtime_test
|
||||||
tests.toolchain.test_external.TestExternalToolchainBuildrootuClibc: *runtime_test
|
tests.toolchain.test_external.TestExternalToolchainBuildrootuClibc: *runtime_test
|
||||||
tests.toolchain.test_external.TestExternalToolchainCtngMusl: *runtime_test
|
tests.toolchain.test_external.TestExternalToolchainCtngMusl: *runtime_test
|
||||||
|
@ -5,31 +5,46 @@ import infra.basetest
|
|||||||
class TestPythonBase(infra.basetest.BRTest):
|
class TestPythonBase(infra.basetest.BRTest):
|
||||||
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
|
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
|
||||||
"""
|
"""
|
||||||
BR2_PACKAGE_PYTHON=y
|
|
||||||
BR2_TARGET_ROOTFS_CPIO=y
|
BR2_TARGET_ROOTFS_CPIO=y
|
||||||
# BR2_TARGET_ROOTFS_TAR is not set
|
# BR2_TARGET_ROOTFS_TAR is not set
|
||||||
"""
|
"""
|
||||||
|
def login(self):
|
||||||
def test_run(self):
|
|
||||||
cpio_file = os.path.join(self.builddir, "images", "rootfs.cpio")
|
cpio_file = os.path.join(self.builddir, "images", "rootfs.cpio")
|
||||||
self.emulator.boot(arch="armv5",
|
self.emulator.boot(arch="armv5",
|
||||||
kernel="builtin",
|
kernel="builtin",
|
||||||
options=["-initrd", cpio_file])
|
options=["-initrd", cpio_file])
|
||||||
self.emulator.login()
|
self.emulator.login()
|
||||||
cmd = "python --version 2>&1 | grep '^Python 2'"
|
|
||||||
|
def version_test(self, version):
|
||||||
|
cmd = "python --version 2>&1 | grep '^{}'".format(version)
|
||||||
_, exit_code = self.emulator.run(cmd)
|
_, exit_code = self.emulator.run(cmd)
|
||||||
self.assertEqual(exit_code, 0)
|
self.assertEqual(exit_code, 0)
|
||||||
|
|
||||||
|
def math_floor_test(self):
|
||||||
cmd = "python -c 'import math; math.floor(12.3)'"
|
cmd = "python -c 'import math; math.floor(12.3)'"
|
||||||
_, exit_code = self.emulator.run(cmd)
|
_, exit_code = self.emulator.run(cmd)
|
||||||
self.assertEqual(exit_code, 0)
|
self.assertEqual(exit_code, 0)
|
||||||
|
|
||||||
|
def libc_time_test(self):
|
||||||
cmd = "python -c 'import ctypes;"
|
cmd = "python -c 'import ctypes;"
|
||||||
cmd += "libc = ctypes.cdll.LoadLibrary(\"libc.so.1\");"
|
cmd += "libc = ctypes.cdll.LoadLibrary(\"libc.so.1\");"
|
||||||
cmd += "print libc.time(None)'"
|
cmd += "print libc.time(None)'"
|
||||||
_, exit_code = self.emulator.run(cmd)
|
_, exit_code = self.emulator.run(cmd)
|
||||||
self.assertEqual(exit_code, 0)
|
self.assertEqual(exit_code, 0)
|
||||||
|
|
||||||
|
def zlib_test(self):
|
||||||
cmd = "python -c 'import zlib'"
|
cmd = "python -c 'import zlib'"
|
||||||
_, exit_code = self.emulator.run(cmd)
|
_, exit_code = self.emulator.run(cmd)
|
||||||
self.assertEqual(exit_code, 1)
|
self.assertEqual(exit_code, 1)
|
||||||
|
|
||||||
|
class TestPython2(TestPythonBase):
|
||||||
|
config = TestPythonBase.config + \
|
||||||
|
"""
|
||||||
|
BR2_PACKAGE_PYTHON=y
|
||||||
|
"""
|
||||||
|
def test_run(self):
|
||||||
|
self.login()
|
||||||
|
self.version_test("Python 2")
|
||||||
|
self.math_floor_test()
|
||||||
|
self.libc_time_test()
|
||||||
|
self.zlib_test()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user