vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / pantheon.nix
blob0387a0359ab08dd09fcbefcf898f6beffa1071bd
1 import ./make-test-python.nix ({ pkgs, lib, ...} :
4   name = "pantheon";
6   meta.maintainers = lib.teams.pantheon.members;
8   nodes.machine = { ... }:
10   {
11     imports = [ ./common/user-account.nix ];
13     # Workaround ".gala-wrapped invoked oom-killer"
14     virtualisation.memorySize = 2047;
16     services.xserver.enable = true;
17     services.xserver.desktopManager.pantheon.enable = true;
19     # We ship pantheon.appcenter by default when this is enabled.
20     services.flatpak.enable = true;
22     # We don't ship gnome-text-editor in Pantheon module, we add this line mainly
23     # to catch eval issues related to this option.
24     environment.pantheon.excludePackages = [ pkgs.gnome-text-editor ];
26     environment.systemPackages = [ pkgs.xdotool ];
27   };
29   enableOCR = true;
31   testScript = { nodes, ... }: let
32     user = nodes.machine.users.users.alice;
33     bob = nodes.machine.users.users.bob;
34   in ''
35     machine.wait_for_unit("display-manager.service")
37     with subtest("Test we can see usernames in elementary-greeter"):
38         machine.wait_for_text("${user.description}")
39         machine.wait_until_succeeds("pgrep -f io.elementary.greeter-compositor")
40         # OCR was struggling with this one.
41         # machine.wait_for_text("${bob.description}")
42         # Ensure the password box is focused by clicking it.
43         # Workaround for https://github.com/NixOS/nixpkgs/issues/211366.
44         machine.succeed("XAUTHORITY=/var/lib/lightdm/.Xauthority DISPLAY=:0 xdotool mousemove 512 505 click 1")
45         machine.sleep(2)
46         machine.screenshot("elementary_greeter_lightdm")
48     with subtest("Login with elementary-greeter"):
49         machine.send_chars("${user.password}\n")
50         machine.wait_for_x()
51         machine.wait_for_file("${user.home}/.Xauthority")
52         machine.succeed("xauth merge ${user.home}/.Xauthority")
53         machine.wait_until_succeeds('journalctl -t gnome-session-binary --grep "Entering running state"')
55     with subtest("Check that logging in has given the user ownership of devices"):
56         machine.succeed("getfacl -p /dev/snd/timer | grep -q ${user.name}")
58     with subtest("Check if Pantheon components actually start"):
59         for i in ["gala", "io.elementary.wingpanel", "plank", "gsd-media-keys", "io.elementary.desktop.agent-polkit"]:
60             machine.wait_until_succeeds(f"pgrep -f {i}")
61         for i in ["gala", "io.elementary.wingpanel", "plank"]:
62             machine.wait_for_window(i)
63         for i in ["bamfdaemon.service", "io.elementary.files.xdg-desktop-portal.service"]:
64             machine.wait_for_unit(i, "${user.name}")
66     with subtest("Check if various environment variables are set"):
67         cmd = "xargs --null --max-args=1 echo < /proc/$(pgrep -xf ${pkgs.pantheon.gala}/bin/gala)/environ"
68         machine.succeed(f"{cmd} | grep 'XDG_CURRENT_DESKTOP' | grep 'Pantheon'")
69         # Hopefully from the sessionPath option.
70         machine.succeed(f"{cmd} | grep 'XDG_DATA_DIRS' | grep 'gsettings-schemas/pantheon-agent-geoclue2'")
71         # Hopefully from login shell.
72         machine.succeed(f"{cmd} | grep '__NIXOS_SET_ENVIRONMENT_DONE' | grep '1'")
73         # See elementary-session-settings packaging.
74         machine.succeed(f"{cmd} | grep 'XDG_CONFIG_DIRS' | grep 'elementary-default-settings'")
76     with subtest("Open elementary videos"):
77         machine.execute("su - ${user.name} -c 'DISPLAY=:0 io.elementary.videos >&2 &'")
78         machine.sleep(2)
79         machine.wait_for_window("io.elementary.videos")
80         machine.wait_for_text("No Videos Open")
82     with subtest("Open elementary calendar"):
83         machine.wait_until_succeeds("pgrep -f evolution-calendar-factory")
84         machine.execute("su - ${user.name} -c 'DISPLAY=:0 io.elementary.calendar >&2 &'")
85         machine.sleep(2)
86         machine.wait_for_window("io.elementary.calendar")
88     with subtest("Open system settings"):
89         machine.execute("su - ${user.name} -c 'DISPLAY=:0 io.elementary.settings >&2 &'")
90         # Wait for all plugins to be loaded before we check if the window is still there.
91         machine.sleep(5)
92         machine.wait_for_window("io.elementary.settings")
94     with subtest("Open elementary terminal"):
95         machine.execute("su - ${user.name} -c 'DISPLAY=:0 io.elementary.terminal >&2 &'")
96         machine.wait_for_window("io.elementary.terminal")
98     with subtest("Trigger multitasking view"):
99         cmd = "dbus-send --session --dest=org.pantheon.gala --print-reply /org/pantheon/gala org.pantheon.gala.PerformAction int32:1"
100         env = "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/${toString user.uid}/bus DISPLAY=:0"
101         machine.succeed(f"su - ${user.name} -c '{env} {cmd}'")
102         machine.sleep(5)
103         machine.screenshot("multitasking")
105     with subtest("Check if gala has ever coredumped"):
106         machine.fail("coredumpctl --json=short | grep gala")
107         # So you can see the dock in the below screenshot.
108         machine.succeed("su - ${user.name} -c 'DISPLAY=:0 xdotool mousemove 450 1000 >&2 &'")
109         machine.sleep(10)
110         machine.screenshot("screen")
111   '';