'''unittest.TestCase convenience methods for DBusMocks''' # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU Lesser General Public License as published by the Free # Software Foundation; either version 3 of the License, or (at your option) any # later version. See http://www.gnu.org/copyleft/lgpl.html for the full text # of the license. __author__ = 'Martin Pitt' __copyright__ = '(c) 2012 Canonical Ltd.' import errno import os import shutil import signal import subprocess import sys import tempfile import time import unittest from typing import Tuple, Dict, Any import dbus from dbusmock.mockobject import MOCK_IFACE, OBJECT_MANAGER_IFACE, load_module class DBusTestCase(unittest.TestCase): '''Base class for D-Bus mock tests. This provides some convenience API to start/stop local D-Buses, so that you can run a private local session and/or system bus to run mocks on. This also provides a spawn_server() static method to run the D-Bus mock server in a separate process. ''' session_bus_pid = None system_bus_pid = None _DBusTestCase__datadir = '' @classmethod def get_services_dir(cls, system_bus: bool = False) -> str: '''Returns the private services directory for the bus type in question. This allows dropping in a .service file so that the dbus server inside dbusmock can launch it. ''' # NOTE: Explicitly use the attribute of DBusTestCase, as cls may be a # different class depending on how the method is called. if system_bus: services_dir = 'system_services' else: services_dir = 'services' if not DBusTestCase._DBusTestCase__datadir: DBusTestCase._DBusTestCase__datadir = tempfile.mkdtemp(prefix='dbusmock_data_') cls.addClassCleanup(setattr, DBusTestCase, '_DBusTestCase__datadir', '') cls.addClassCleanup(shutil.rmtree, DBusTestCase._DBusTestCase__datadir) os.mkdir(os.path.join(DBusTestCase._DBusTestCase__datadir, 'system_services')) os.mkdir(os.path.join(DBusTestCase._DBusTestCase__datadir, 'services')) return os.path.join(DBusTestCase._DBusTestCase__datadir, services_dir) @classmethod def __start_bus(cls, bus_type) -> None: '''Set up a private local session bus This gets stopped automatically at class teardown. ''' cls.get_services_dir() with open(os.path.join(DBusTestCase._DBusTestCase__datadir, f'dbusmock_{bus_type}_cfg'), 'w', encoding='ascii') as c: c.write(f''' {bus_type} unix:tmpdir=/tmp {cls.get_services_dir(bus_type == 'system')} ''') c.flush() (pid, addr) = cls.start_dbus(conf=c.name) os.environ[f'DBUS_{bus_type.upper()}_BUS_ADDRESS'] = addr setattr(cls, f'{bus_type}_bus_pid', pid) cls.addClassCleanup(setattr, cls, f'{bus_type}_bus_pid', None) cls.addClassCleanup(os.environ.pop, f'DBUS_{bus_type.upper()}_BUS_ADDRESS') cls.addClassCleanup(cls.stop_dbus, pid) @classmethod def start_session_bus(cls) -> None: '''Set up a private local session bus This gets stopped automatically at class teardown. ''' DBusTestCase.__start_bus('session') @classmethod def start_system_bus(cls) -> None: '''Set up a private local system bus This gets stopped automatically at class teardown. ''' DBusTestCase.__start_bus('system') @classmethod def start_dbus(cls, conf: str = None) -> Tuple[int, str]: '''Start a D-Bus daemon Return (pid, address) pair. Normally you do not need to call this directly. Use start_system_bus() and start_session_bus() instead. ''' argv = ['dbus-daemon', '--fork', '--print-address=1', '--print-pid=1'] if conf: argv.append('--config-file=' + conf) else: argv.append('--session') lines = subprocess.check_output(argv, universal_newlines=True).strip().splitlines() assert len(lines) == 2, 'expected exactly 2 lines of output from dbus-daemon' # usually the first line is the address, but be lenient and accept any order try: return (int(lines[1]), lines[0]) except ValueError: return (int(lines[0]), lines[1]) @classmethod def stop_dbus(cls, pid: int) -> None: '''Stop a D-Bus daemon Normally you do not need to call this directly. When you use start_system_bus() and start_session_bus(), these buses are automatically stopped in tearDownClass(). ''' signal.signal(signal.SIGTERM, signal.SIG_IGN) for _ in range(50): try: os.kill(pid, signal.SIGTERM) except OSError as e: if e.errno == errno.ESRCH: break raise time.sleep(0.1) else: sys.stderr.write('ERROR: timed out waiting for bus process to terminate\n') os.kill(pid, signal.SIGKILL) time.sleep(0.5) signal.signal(signal.SIGTERM, signal.SIG_DFL) @classmethod def get_dbus(cls, system_bus: bool = False) -> dbus.Bus: '''Get dbus.bus.BusConnection() object This is preferrable to dbus.SystemBus() and dbus.SessionBus() as those do not get along with multiple changing local test buses. ''' if system_bus: if os.environ.get('DBUS_SYSTEM_BUS_ADDRESS'): return dbus.bus.BusConnection(os.environ['DBUS_SYSTEM_BUS_ADDRESS']) return dbus.SystemBus() if os.environ.get('DBUS_SESSION_BUS_ADDRESS'): return dbus.bus.BusConnection(os.environ['DBUS_SESSION_BUS_ADDRESS']) return dbus.SessionBus() @classmethod def wait_for_bus_object(cls, dest: str, path: str, system_bus: bool = False, timeout: int = 600): '''Wait for an object to appear on D-Bus Raise an exception if object does not appear within one minute. You can change the timeout with the "timeout" keyword argument which specifies deciseconds. ''' bus = cls.get_dbus(system_bus) last_exc = None # we check whether the name is owned first, to avoid race conditions # with service activation; once it's owned, wait until we can actually # call methods while timeout > 0: if bus.name_has_owner(dest): try: p = dbus.Interface(bus.get_object(dest, path), dbus_interface=dbus.INTROSPECTABLE_IFACE) p.Introspect() break except dbus.exceptions.DBusException as e: last_exc = e if '.UnknownInterface' in str(e): break timeout -= 1 time.sleep(0.1) if timeout <= 0: assert timeout > 0, f'timed out waiting for D-Bus object {path}: {last_exc}' @classmethod def spawn_server(cls, name: str, path: str, interface: str, system_bus: bool = False, stdout: int = None): '''Run a DBusMockObject instance in a separate process The daemon will terminate automatically when the D-Bus that it connects to goes down. If that does not happen (e. g. you test on the actual system/session bus), you need to kill it manually. This function blocks until the spawned DBusMockObject is ready and listening on the bus. Returns the Popen object of the spawned daemon. ''' argv = [sys.executable, '-m', 'dbusmock'] if system_bus: argv.append('--system') argv.append(name) argv.append(path) argv.append(interface) # pylint: disable=consider-using-with daemon = subprocess.Popen(argv, stdout=stdout) # wait for daemon to start up cls.wait_for_bus_object(name, path, system_bus) return daemon @classmethod def spawn_server_template(cls, template: str, parameters: Dict[str, Any] = None, stdout: int = None, system_bus: bool = None): '''Run a D-Bus mock template instance in a separate process This starts a D-Bus mock process and loads the given template with (optional) parameters into it. For details about templates see dbusmock.DBusMockObject.AddTemplate(). Usually a template should specify SYSTEM_BUS = False/True to select whether it gets loaded on the session or system bus. This can be overridden with the system_bus parameter. For templates which don't set SYSTEM_BUS, this parameter has to be set. The daemon will terminate automatically when the D-Bus that it connects to goes down. If that does not happen (e. g. you test on the actual system/session bus), you need to kill it manually. This function blocks until the spawned DBusMockObject is ready and listening on the bus. Returns a pair (daemon Popen object, main dbus object). ''' # we need the bus address from the template module module = load_module(template) if hasattr(module, 'IS_OBJECT_MANAGER'): is_object_manager = module.IS_OBJECT_MANAGER else: is_object_manager = False if is_object_manager and not hasattr(module, 'MAIN_IFACE'): interface_name = OBJECT_MANAGER_IFACE else: interface_name = module.MAIN_IFACE if system_bus is None: system_bus = module.SYSTEM_BUS daemon = cls.spawn_server(module.BUS_NAME, module.MAIN_OBJ, interface_name, system_bus, stdout) bus = cls.get_dbus(system_bus) obj = bus.get_object(module.BUS_NAME, module.MAIN_OBJ) if not parameters: parameters = dbus.Dictionary({}, signature='sv') obj.AddTemplate(template, parameters, dbus_interface=MOCK_IFACE) return (daemon, obj) @classmethod def enable_service(cls, service, system_bus: bool = False) -> None: '''Enable the given well known service name inside dbusmock This symlinks a service file from the usual dbus service directories into the dbusmock environment. Doing that allows the service to be launched automatically if they are defined within $XDG_DATA_DIRS. The daemon configuration is reloaded if a test bus is running. ''' services_dir = 'system-services' if system_bus else 'services' xdg_data_dirs = os.environ.get('XDG_DATA_DIRS') or '/usr/local/share/:/usr/share/' for d in xdg_data_dirs.split(':'): src = os.path.join(d, 'dbus-1', services_dir, service + '.service') if os.path.exists(src): os.symlink(src, os.path.join(cls.get_services_dir(system_bus), service + '.service')) break else: raise AssertionError(f"Service {service} not found in XDG_DATA_DIRS ({xdg_data_dirs})") dbus_pid = cls.system_bus_pid if system_bus else cls.session_bus_pid if dbus_pid: bus = cls.get_dbus(system_bus) dbus_obj = bus.get_object('org.freedesktop.DBus', '/org/freedesktop/DBus') dbus_if = dbus.Interface(dbus_obj, 'org.freedesktop.DBus') dbus_if.ReloadConfig() @classmethod def disable_service(cls, service, system_bus: bool = False) -> None: '''Disable the given well known service name inside dbusmock This unlink's the .service file for the service and reloads the daemon configuration if a test bus is running. ''' try: os.unlink(os.path.join(cls.get_services_dir(system_bus), service + '.service')) except OSError: raise AssertionError(f"Service {service} not found") from None dbus_pid = cls.system_bus_pid if system_bus else cls.session_bus_pid if dbus_pid: bus = cls.get_dbus(system_bus) dbus_obj = bus.get_object('org.freedesktop.DBus', '/org/freedesktop/DBus') dbus_if = dbus.Interface(dbus_obj, 'org.freedesktop.DBus') dbus_if.ReloadConfig()