nixpkgs/nixos/tests/pantheon.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.9 KiB
Nix
Raw Normal View History

2021-09-22 10:59:09 +00:00
import ./make-test-python.nix ({ pkgs, lib, ...} :
2018-08-20 20:31:18 +00:00
{
name = "pantheon";
2019-11-07 01:38:23 +00:00
meta = with lib; {
maintainers = teams.pantheon.members;
2018-08-20 20:31:18 +00:00
};
machine = { ... }:
{
imports = [ ./common/user-account.nix ];
services.xserver.enable = true;
services.xserver.desktopManager.pantheon.enable = true;
};
enableOCR = true;
testScript = { nodes, ... }: let
user = nodes.machine.config.users.users.alice;
bob = nodes.machine.config.users.users.bob;
2018-08-20 20:31:18 +00:00
in ''
2019-11-07 01:38:23 +00:00
machine.wait_for_unit("display-manager.service")
2019-11-25 17:03:51 +00:00
with subtest("Test we can see usernames in elementary-greeter"):
machine.wait_for_text("${user.description}")
# OCR was struggling with this one.
# machine.wait_for_text("${bob.description}")
2019-11-25 17:03:51 +00:00
machine.screenshot("elementary_greeter_lightdm")
with subtest("Login with elementary-greeter"):
machine.send_chars("${user.password}\n")
machine.wait_for_x()
machine.wait_for_file("${user.home}/.Xauthority")
machine.succeed("xauth merge ${user.home}/.Xauthority")
with subtest("Check that logging in has given the user ownership of devices"):
machine.succeed("getfacl -p /dev/snd/timer | grep -q ${user.name}")
# TODO: DBus API could eliminate this? Pantheon uses Bamf.
with subtest("Check if pantheon session components actually start"):
machine.wait_until_succeeds("pgrep gala")
machine.wait_for_window("gala")
machine.wait_until_succeeds("pgrep -f io.elementary.wingpanel")
machine.wait_for_window("io.elementary.wingpanel")
2019-11-25 17:03:51 +00:00
machine.wait_until_succeeds("pgrep plank")
machine.wait_for_window("plank")
with subtest("Open elementary terminal"):
machine.execute("su - ${user.name} -c 'DISPLAY=:0 io.elementary.terminal >&2 &'")
2019-11-25 17:03:51 +00:00
machine.wait_for_window("io.elementary.terminal")
machine.sleep(20)
machine.screenshot("screen")
2018-08-20 20:31:18 +00:00
'';
})