33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
import os
|
|
|
|
import infra.basetest
|
|
|
|
|
|
class TestPhpPeclDbus(infra.basetest.BRTest):
|
|
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
|
|
"""
|
|
BR2_PACKAGE_PHP=y
|
|
BR2_PACKAGE_PHP_SAPI_CLI=y
|
|
BR2_PACKAGE_PHP_PECL_DBUS=y
|
|
BR2_TARGET_ROOTFS_CPIO=y
|
|
# BR2_TARGET_ROOTFS_TAR is not set
|
|
"""
|
|
|
|
def test_run(self):
|
|
img = os.path.join(self.builddir, "images", "rootfs.cpio")
|
|
self.emulator.boot(arch="armv5",
|
|
kernel="builtin",
|
|
options=["-initrd", img])
|
|
self.emulator.login()
|
|
|
|
self.assertRunOk("mkdir /etc/php.d")
|
|
self.assertRunOk("echo 'extension=dbus.so'> /etc/php.d/dbus.ini")
|
|
|
|
output, exit_code = self.emulator.run("php --ri dbus | sed '/^$/d'")
|
|
self.assertEqual(exit_code, 0)
|
|
self.assertEqual(output[0], "dbus")
|
|
self.assertEqual(output[1], "Dbus support => enabled")
|
|
# Do not check the version value in order to avoid test failure when
|
|
# bumping package version
|
|
self.assertEqual(output[2][0:11], "Version => ")
|