2019-11-09 20:34:51 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, ...} : {
|
2014-06-28 15:04:49 +01:00
|
|
|
name = "xfce";
|
2011-03-11 17:00:10 +00:00
|
|
|
|
2011-09-14 19:20:50 +01:00
|
|
|
machine =
|
2018-07-20 21:56:59 +01:00
|
|
|
{ pkgs, ... }:
|
2011-03-11 17:00:10 +00:00
|
|
|
|
2020-01-26 22:41:19 +00:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./common/user-account.nix
|
|
|
|
];
|
2011-03-17 14:04:47 +00:00
|
|
|
|
|
|
|
services.xserver.enable = true;
|
2011-03-11 17:00:10 +00:00
|
|
|
|
2020-04-12 11:43:50 +01:00
|
|
|
services.xserver.displayManager = {
|
|
|
|
lightdm.enable = true;
|
2020-01-26 22:41:19 +00:00
|
|
|
autoLogin = {
|
|
|
|
enable = true;
|
|
|
|
user = "alice";
|
|
|
|
};
|
|
|
|
};
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2011-03-11 17:00:10 +00:00
|
|
|
services.xserver.desktopManager.xfce.enable = true;
|
2016-04-12 18:12:28 +01:00
|
|
|
|
2019-09-10 03:14:03 +01:00
|
|
|
hardware.pulseaudio.enable = true; # needed for the factl test, /dev/snd/* exists without them but udev doesn't care then
|
2019-09-10 03:17:45 +01:00
|
|
|
|
|
|
|
virtualisation.memorySize = 1024;
|
2011-03-11 17:00:10 +00:00
|
|
|
};
|
|
|
|
|
2019-11-09 20:34:51 +00:00
|
|
|
testScript = { nodes, ... }: let
|
|
|
|
user = nodes.machine.config.users.users.alice;
|
|
|
|
in ''
|
|
|
|
machine.wait_for_x()
|
|
|
|
machine.wait_for_file("${user.home}/.Xauthority")
|
|
|
|
machine.succeed("xauth merge ${user.home}/.Xauthority")
|
|
|
|
machine.wait_for_window("xfce4-panel")
|
|
|
|
machine.sleep(10)
|
2011-08-08 18:16:49 +01:00
|
|
|
|
|
|
|
# Check that logging in has given the user ownership of devices.
|
2019-11-09 20:34:51 +00:00
|
|
|
machine.succeed("getfacl -p /dev/snd/timer | grep -q ${user.name}")
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2019-11-09 20:34:51 +00:00
|
|
|
machine.succeed("su - ${user.name} -c 'DISPLAY=:0.0 xfce4-terminal &'")
|
|
|
|
machine.wait_for_window("Terminal")
|
|
|
|
machine.sleep(10)
|
|
|
|
machine.screenshot("screen")
|
2011-03-11 17:00:10 +00:00
|
|
|
'';
|
2015-07-12 11:09:40 +01:00
|
|
|
})
|