12345678910111213141516171819202122232425262728293031323334353637383940 |
- import textwrap
- from tests.package.test_python import TestPythonPackageBase
- class TestPythonPy3DBusNext(TestPythonPackageBase):
- __test__ = True
- config = TestPythonPackageBase.config + \
- """
- BR2_PACKAGE_DBUS=y
- BR2_PACKAGE_PYTHON3=y
- BR2_PACKAGE_PYTHON_DBUS_NEXT=y
- """
- sample_scripts = ["tests/package/sample_python_dbus_next.py"]
- def run_sample_scripts(self):
- config = \
- """
- <!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
- "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
- <busconfig>
- <policy user="root">
- <allow own="dbus.next.sample"/>
- <allow send_destination="dbus.next.sample"/>
- </policy>
- </busconfig>
- """
- config = textwrap.dedent(config)
- config_dir = "/etc/dbus-1/system.d"
- config_fn = "dbus.next.sample.conf"
- # Setup and reload D-Bus configuration
- self.emulator.run("mkdir -p " + config_dir)
- self.emulator.run("cat > " + config_dir + "/" + config_fn +
- " <<EOF" + config + "EOF")
- self.emulator.run("killall -SIGHUP dbus-daemon")
- # Run test scripts
- super().run_sample_scripts()
|