Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
60 lines
1.8 KiB
Nix
60 lines
1.8 KiB
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
name = "gnome-flashback";
|
|
meta.maintainers = lib.teams.gnome.members ++ [ lib.maintainers.chpatrick ];
|
|
|
|
nodes.machine =
|
|
{ nodes, ... }:
|
|
let
|
|
user = nodes.machine.users.users.alice;
|
|
in
|
|
|
|
{
|
|
imports = [ ./common/user-account.nix ];
|
|
|
|
services.xserver.enable = true;
|
|
|
|
services.displayManager.gdm = {
|
|
enable = true;
|
|
debug = true;
|
|
};
|
|
|
|
services.displayManager.autoLogin = {
|
|
enable = true;
|
|
user = user.name;
|
|
};
|
|
|
|
services.desktopManager.gnome.enable = true;
|
|
services.desktopManager.gnome.debug = true;
|
|
services.desktopManager.gnome.flashback.enableMetacity = true;
|
|
services.displayManager.defaultSession = "gnome-flashback-metacity";
|
|
};
|
|
|
|
testScript =
|
|
{ nodes, ... }:
|
|
let
|
|
user = nodes.machine.users.users.alice;
|
|
uid = toString user.uid;
|
|
xauthority = "/run/user/${uid}/gdm/Xauthority";
|
|
in
|
|
''
|
|
with subtest("Login to GNOME Flashback with GDM"):
|
|
machine.wait_for_x()
|
|
machine.wait_until_succeeds('journalctl -t gnome-session-binary --grep "Entering running state"')
|
|
# Wait for alice to be logged in"
|
|
machine.wait_for_unit("default.target", "${user.name}")
|
|
machine.wait_for_file("${xauthority}")
|
|
machine.succeed("xauth merge ${xauthority}")
|
|
# Check that logging in has given the user ownership of devices
|
|
assert "alice" in machine.succeed("getfacl -p /dev/snd/timer")
|
|
|
|
with subtest("Wait for Metacity"):
|
|
machine.wait_until_succeeds("pgrep metacity")
|
|
|
|
with subtest("Regression test for #233920"):
|
|
machine.wait_until_succeeds("pgrep -fa gnome-flashback-media-keys")
|
|
machine.sleep(20)
|
|
machine.screenshot("screen")
|
|
'';
|
|
}
|