Source code for dbusmock.templates.timedated

"""systemd timedated mock template

This creates the expected methods and properties of the main
org.freedesktop.timedate object. You can specify D-Bus property values like
"Timezone" or "NTP" in "parameters".
"""

# 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.

[docs] __author__ = "Iain Lane"
import dbus
[docs] BUS_NAME = "org.freedesktop.timedate1"
[docs] MAIN_OBJ = "/org/freedesktop/timedate1"
[docs] MAIN_IFACE = "org.freedesktop.timedate1"
[docs] SYSTEM_BUS = True
[docs] def setProperty(prop): return f'self.Set("{MAIN_IFACE}", "{prop}", args[0])'
[docs] def load(mock, parameters): mock.AddMethods( MAIN_IFACE, [ # There's nothing this can usefully do, but provide it for compatibility ("SetTime", "xbb", "", ""), ("SetTimezone", "sb", "", setProperty("Timezone")), ("SetLocalRTC", "bbb", "", setProperty("LocalRTC")), ("SetNTP", "bb", "", setProperty("NTP") + "; " + setProperty("NTPSynchronized")), ], ) mock.AddProperties( MAIN_IFACE, dbus.Dictionary( { "Timezone": parameters.get("Timezone", "Etc/Utc"), "LocalRTC": parameters.get("LocalRTC", False), "NTP": parameters.get("NTP", True), "NTPSynchronized": parameters.get("NTP", True), "CanNTP": parameters.get("CanNTP", True), }, signature="sv", ), )