Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
166 lines
3.9 KiB
Python
166 lines
3.9 KiB
Python
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
#
|
|
# This file is formatted with Python Black
|
|
# mypy: disable-error-code="misc"
|
|
|
|
from tests.templates import Response, init_logger, ImplRequest, ImplSession
|
|
|
|
import dbus
|
|
import dbus.service
|
|
import time
|
|
from dbusmock import MOCK_IFACE
|
|
from gi.repository import GLib
|
|
from dataclasses import dataclass
|
|
|
|
|
|
BUS_NAME = "org.freedesktop.impl.portal.Test"
|
|
MAIN_OBJ = "/org/freedesktop/portal/desktop"
|
|
SYSTEM_BUS = False
|
|
MAIN_IFACE = "org.freedesktop.impl.portal.GlobalShortcuts"
|
|
VERSION = 1
|
|
|
|
|
|
logger = init_logger(__name__)
|
|
|
|
|
|
@dataclass
|
|
class GlobalshortcutsParameters:
|
|
delay: int
|
|
response: int
|
|
expect_close: bool
|
|
force_close: int
|
|
|
|
|
|
def load(mock, parameters={}):
|
|
logger.debug(f"Loading parameters: {parameters}")
|
|
|
|
assert not hasattr(mock, "globalshortcuts_params")
|
|
mock.globalshortcuts_params = GlobalshortcutsParameters(
|
|
delay=parameters.get("delay", 200),
|
|
response=parameters.get("response", 0),
|
|
expect_close=parameters.get("expect-close", False),
|
|
force_close=parameters.get("force-close", 0),
|
|
)
|
|
|
|
mock.AddProperties(
|
|
MAIN_IFACE,
|
|
dbus.Dictionary(
|
|
{
|
|
"version": dbus.UInt32(parameters.get("version", VERSION)),
|
|
}
|
|
),
|
|
)
|
|
mock.sessions: dict[str, ImplSession] = {}
|
|
|
|
|
|
@dbus.service.method(
|
|
MAIN_IFACE,
|
|
in_signature="oosa{sv}",
|
|
out_signature="ua{sv}",
|
|
async_callbacks=("cb_success", "cb_error"),
|
|
)
|
|
def CreateSession(self, handle, session_handle, app_id, options, cb_success, cb_error):
|
|
logger.debug(f"CreateSession({handle}, {session_handle}, {app_id}, {options})")
|
|
params = self.globalshortcuts_params
|
|
|
|
session = ImplSession(self, BUS_NAME, session_handle, app_id).export()
|
|
self.sessions[session_handle] = session
|
|
|
|
request = ImplRequest(
|
|
self,
|
|
BUS_NAME,
|
|
handle,
|
|
logger,
|
|
cb_success,
|
|
cb_error,
|
|
)
|
|
|
|
if params.expect_close:
|
|
request.wait_for_close()
|
|
else:
|
|
request.respond(
|
|
Response(params.response, {"session_handle": session.handle}),
|
|
delay=params.delay,
|
|
)
|
|
if params.force_close > 0:
|
|
GLib.timeout_add(params.force_close, session.close)
|
|
|
|
|
|
@dbus.service.method(
|
|
MAIN_IFACE,
|
|
in_signature="ooa(sa{sv})sa{sv}",
|
|
out_signature="ua{sv}",
|
|
async_callbacks=("cb_success", "cb_error"),
|
|
)
|
|
def BindShortcuts(
|
|
self,
|
|
handle,
|
|
session_handle,
|
|
shortcuts,
|
|
parent_window,
|
|
options,
|
|
cb_success,
|
|
cb_error,
|
|
):
|
|
logger.debug(f"BindShortcuts({handle}, {session_handle}, {shortcuts}, {options})")
|
|
params = self.globalshortcuts_params
|
|
|
|
assert session_handle in self.sessions
|
|
|
|
request = ImplRequest(
|
|
self,
|
|
BUS_NAME,
|
|
handle,
|
|
logger,
|
|
cb_success,
|
|
cb_error,
|
|
)
|
|
|
|
if params.expect_close:
|
|
request.wait_for_close()
|
|
else:
|
|
|
|
def reply():
|
|
logger.debug(f"BindShortcuts with shortcuts {shortcuts}")
|
|
self.sessions[session_handle].shortcuts = shortcuts
|
|
return Response(params.response, {})
|
|
|
|
request.respond(reply, delay=params.delay)
|
|
|
|
|
|
@dbus.service.method(
|
|
MAIN_IFACE,
|
|
in_signature="oo",
|
|
out_signature="ua{sv}",
|
|
)
|
|
def ListShortcuts(
|
|
self,
|
|
handle,
|
|
session_handle,
|
|
):
|
|
shortcuts = self.sessions[session_handle].shortcuts
|
|
return (0, {"shortcuts": shortcuts})
|
|
|
|
|
|
@dbus.service.method(
|
|
MOCK_IFACE,
|
|
in_signature="os",
|
|
out_signature="",
|
|
)
|
|
def Trigger(self, session_handle, shortcut_id):
|
|
now_since_epoch = int(time.time() * 1000000)
|
|
self.EmitSignal(
|
|
MAIN_IFACE,
|
|
"Activated",
|
|
"osta{sv}",
|
|
[session_handle, shortcut_id, now_since_epoch, {}],
|
|
)
|
|
time.sleep(0.2)
|
|
now_since_epoch = int(time.time() * 1000000)
|
|
self.EmitSignal(
|
|
MAIN_IFACE,
|
|
"Deactivated",
|
|
"osta{sv}",
|
|
[session_handle, shortcut_id, now_since_epoch, {}],
|
|
)
|