2020-04-01 14:40:51 +02:00
|
|
|
import ./make-test-python.nix ({ pkgs, lib, ...} : {
|
2021-05-07 23:18:14 +02:00
|
|
|
name = "gnome";
|
2023-04-30 03:17:05 +02:00
|
|
|
meta.maintainers = lib.teams.gnome.members;
|
2015-09-15 14:25:19 +02:00
|
|
|
|
2022-03-21 00:15:30 +01:00
|
|
|
nodes.machine =
|
2018-07-20 22:56:59 +02:00
|
|
|
{ ... }:
|
2015-09-15 14:25:19 +02:00
|
|
|
|
|
|
|
{ imports = [ ./common/user-account.nix ];
|
|
|
|
|
|
|
|
services.xserver.enable = true;
|
|
|
|
|
2020-04-12 12:43:50 +02:00
|
|
|
services.xserver.displayManager = {
|
|
|
|
gdm.enable = true;
|
2020-07-14 04:34:13 +02:00
|
|
|
gdm.debug = true;
|
2015-09-15 14:25:19 +02:00
|
|
|
autoLogin = {
|
|
|
|
enable = true;
|
|
|
|
user = "alice";
|
|
|
|
};
|
|
|
|
};
|
2019-08-07 00:24:21 +02:00
|
|
|
|
2021-05-07 23:18:14 +02:00
|
|
|
services.xserver.desktopManager.gnome.enable = true;
|
|
|
|
services.xserver.desktopManager.gnome.debug = true;
|
2020-08-23 19:09:59 +02:00
|
|
|
|
2021-10-08 04:21:01 +02:00
|
|
|
systemd.user.services = {
|
|
|
|
"org.gnome.Shell@wayland" = {
|
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = [
|
|
|
|
# Clear the list before overriding it.
|
|
|
|
""
|
|
|
|
# Eval API is now internal so Shell needs to run in unsafe mode.
|
|
|
|
# TODO: improve test driver so that it supports openqa-like manipulation
|
|
|
|
# that would allow us to drop this mess.
|
|
|
|
"${pkgs.gnome.gnome-shell}/bin/gnome-shell --unsafe-mode"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-09-15 14:25:19 +02:00
|
|
|
};
|
|
|
|
|
2019-11-07 03:50:23 +01:00
|
|
|
testScript = { nodes, ... }: let
|
2023-05-20 04:10:21 +02:00
|
|
|
# Keep line widths somewhat manageable
|
2023-10-15 16:01:09 +02:00
|
|
|
user = nodes.machine.users.users.alice;
|
2019-11-07 03:50:23 +01:00
|
|
|
uid = toString user.uid;
|
|
|
|
bus = "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/${uid}/bus";
|
2023-10-15 16:01:09 +02:00
|
|
|
# Run a command in the appropriate user environment
|
|
|
|
run = command: "su - ${user.name} -c '${bus} ${command}'";
|
2019-11-07 03:50:23 +01:00
|
|
|
|
2018-12-09 16:35:51 +01:00
|
|
|
# Call javascript in gnome shell, returns a tuple (success, output), where
|
|
|
|
# `success` is true if the dbus call was successful and output is what the
|
|
|
|
# javascript evaluates to.
|
2023-10-15 16:01:09 +02:00
|
|
|
eval = command: run "gdbus call --session -d org.gnome.Shell -o /org/gnome/Shell -m org.gnome.Shell.Eval ${command}";
|
2018-04-21 12:09:30 +02:00
|
|
|
|
2019-11-07 03:50:23 +01:00
|
|
|
# False when startup is done
|
2023-10-15 16:01:09 +02:00
|
|
|
startingUp = eval "Main.layoutManager._startingUp";
|
2015-09-15 14:25:19 +02:00
|
|
|
|
2023-04-06 02:54:37 +02:00
|
|
|
# Start Console
|
2023-10-15 16:01:09 +02:00
|
|
|
launchConsole = run "gapplication launch org.gnome.Console";
|
2018-12-09 16:35:51 +01:00
|
|
|
|
2023-04-06 02:54:37 +02:00
|
|
|
# Hopefully Console's wm class
|
2023-10-15 16:01:09 +02:00
|
|
|
wmClass = eval "global.display.focus_window.wm_class";
|
2019-11-07 03:50:23 +01:00
|
|
|
in ''
|
|
|
|
with subtest("Login to GNOME with GDM"):
|
|
|
|
# wait for gdm to start
|
|
|
|
machine.wait_for_unit("display-manager.service")
|
2020-01-30 12:14:22 +01:00
|
|
|
# wait for the wayland server
|
|
|
|
machine.wait_for_file("/run/user/${uid}/wayland-0")
|
2019-11-07 03:50:23 +01:00
|
|
|
# wait for alice to be logged in
|
|
|
|
machine.wait_for_unit("default.target", "${user.name}")
|
|
|
|
# check that logging in has given the user ownership of devices
|
|
|
|
assert "alice" in machine.succeed("getfacl -p /dev/snd/timer")
|
2018-12-09 16:35:51 +01:00
|
|
|
|
2019-11-07 03:50:23 +01:00
|
|
|
with subtest("Wait for GNOME Shell"):
|
|
|
|
# correct output should be (true, 'false')
|
|
|
|
machine.wait_until_succeeds(
|
|
|
|
"${startingUp} | grep -q 'true,..false'"
|
|
|
|
)
|
2018-04-21 12:09:30 +02:00
|
|
|
|
2023-04-06 02:54:37 +02:00
|
|
|
with subtest("Open Console"):
|
2023-04-06 04:04:40 +02:00
|
|
|
# Close the Activities view so that Shell can correctly track the focused window.
|
|
|
|
machine.send_key("esc")
|
|
|
|
|
2023-04-06 02:54:37 +02:00
|
|
|
machine.succeed(
|
|
|
|
"${launchConsole}"
|
|
|
|
)
|
|
|
|
# correct output should be (true, '"org.gnome.Console"')
|
2019-11-07 03:50:23 +01:00
|
|
|
machine.wait_until_succeeds(
|
2023-04-06 02:54:37 +02:00
|
|
|
"${wmClass} | grep -q 'true,...org.gnome.Console'"
|
2019-11-07 03:50:23 +01:00
|
|
|
)
|
|
|
|
machine.sleep(20)
|
|
|
|
machine.screenshot("screen")
|
2015-09-15 14:25:19 +02:00
|
|
|
'';
|
|
|
|
})
|