2019-11-07 02:39:42 +01:00
|
|
|
import ./make-test-python.nix ({ pkgs, ...} :
|
2016-06-01 17:05:46 +02:00
|
|
|
|
|
|
|
{
|
2017-03-03 14:25:45 +01:00
|
|
|
name = "plasma5";
|
2021-01-10 20:08:30 +01:00
|
|
|
meta = with pkgs.lib.maintainers; {
|
2015-12-11 14:08:07 +01:00
|
|
|
maintainers = [ ttuegel ];
|
|
|
|
};
|
|
|
|
|
2022-03-21 00:15:30 +01:00
|
|
|
nodes.machine = { ... }:
|
2019-11-07 02:39:42 +01:00
|
|
|
|
2018-06-21 14:52:54 +02:00
|
|
|
{
|
2015-12-11 14:08:07 +01:00
|
|
|
imports = [ ./common/user-account.nix ];
|
|
|
|
services.xserver.enable = true;
|
2017-03-24 14:02:24 +01:00
|
|
|
services.xserver.displayManager.sddm.enable = true;
|
2020-10-09 00:18:26 +02:00
|
|
|
services.xserver.displayManager.defaultSession = "plasma";
|
2022-06-12 16:48:09 +02:00
|
|
|
services.xserver.desktopManager.plasma5 = {
|
|
|
|
enable = true;
|
|
|
|
excludePackages = [ pkgs.plasma5Packages.elisa ];
|
|
|
|
};
|
2020-04-12 12:43:50 +02:00
|
|
|
services.xserver.displayManager.autoLogin = {
|
2018-10-28 20:11:17 +01:00
|
|
|
enable = true;
|
|
|
|
user = "alice";
|
|
|
|
};
|
2019-09-10 04:17:18 +02:00
|
|
|
hardware.pulseaudio.enable = true; # needed for the factl test, /dev/snd/* exists without them but udev doesn't care then
|
2015-12-11 14:08:07 +01:00
|
|
|
};
|
|
|
|
|
2017-03-24 14:02:24 +01:00
|
|
|
testScript = { nodes, ... }: let
|
2018-06-30 01:55:42 +02:00
|
|
|
user = nodes.machine.config.users.users.alice;
|
2017-03-24 14:02:24 +01:00
|
|
|
xdo = "${pkgs.xdotool}/bin/xdotool";
|
|
|
|
in ''
|
2019-11-07 02:46:44 +01:00
|
|
|
with subtest("Wait for login"):
|
|
|
|
start_all()
|
|
|
|
machine.wait_for_file("${user.home}/.Xauthority")
|
|
|
|
machine.succeed("xauth merge ${user.home}/.Xauthority")
|
|
|
|
|
|
|
|
with subtest("Check plasmashell started"):
|
|
|
|
machine.wait_until_succeeds("pgrep plasmashell")
|
|
|
|
machine.wait_for_window("^Desktop ")
|
|
|
|
|
2020-12-14 12:43:08 +01:00
|
|
|
with subtest("Check that KDED is running"):
|
|
|
|
machine.succeed("pgrep kded5")
|
|
|
|
|
2019-11-07 02:46:44 +01:00
|
|
|
with subtest("Check that logging in has given the user ownership of devices"):
|
|
|
|
machine.succeed("getfacl -p /dev/snd/timer | grep -q ${user.name}")
|
|
|
|
|
2022-06-12 16:48:09 +02:00
|
|
|
with subtest("Ensure Elisa is not installed"):
|
|
|
|
machine.fail("which elisa")
|
|
|
|
|
2019-11-07 02:46:44 +01:00
|
|
|
with subtest("Run Dolphin"):
|
2021-11-06 21:41:45 +01:00
|
|
|
machine.execute("su - ${user.name} -c 'DISPLAY=:0.0 dolphin >&2 &'")
|
2019-11-07 02:46:44 +01:00
|
|
|
machine.wait_for_window(" Dolphin")
|
|
|
|
|
|
|
|
with subtest("Run Konsole"):
|
2021-11-06 21:41:45 +01:00
|
|
|
machine.execute("su - ${user.name} -c 'DISPLAY=:0.0 konsole >&2 &'")
|
2019-11-07 02:46:44 +01:00
|
|
|
machine.wait_for_window("Konsole")
|
|
|
|
|
|
|
|
with subtest("Run systemsettings"):
|
2021-11-06 21:41:45 +01:00
|
|
|
machine.execute("su - ${user.name} -c 'DISPLAY=:0.0 systemsettings5 >&2 &'")
|
2019-11-07 02:46:44 +01:00
|
|
|
machine.wait_for_window("Settings")
|
|
|
|
|
|
|
|
with subtest("Wait to get a screenshot"):
|
|
|
|
machine.execute(
|
|
|
|
"${xdo} key Alt+F1 sleep 10"
|
|
|
|
)
|
|
|
|
machine.screenshot("screen")
|
2015-12-11 14:08:07 +01:00
|
|
|
'';
|
|
|
|
})
|