hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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()