2019-11-09 12:34:51 -08:00
|
|
|
import ./make-test-python.nix ({ pkgs, ...} : {
|
2014-06-28 07:04:49 -07:00
|
|
|
name = "xfce";
|
2011-03-11 09:00:10 -08:00
|
|
|
|
2011-09-14 11:20:50 -07:00
|
|
|
machine =
|
2018-07-20 13:56:59 -07:00
|
|
|
{ pkgs, ... }:
|
2011-03-11 09:00:10 -08:00
|
|
|
|
2020-01-26 14:41:19 -08:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./common/user-account.nix
|
|
|
|
];
|
2011-03-17 07:04:47 -07:00
|
|
|
|
|
|
|
services.xserver.enable = true;
|
2011-03-11 09:00:10 -08:00
|
|
|
|
2020-04-12 03:43:50 -07:00
|
|
|
services.xserver.displayManager = {
|
|
|
|
lightdm.enable = true;
|
2020-01-26 14:41:19 -08:00
|
|
|
autoLogin = {
|
|
|
|
enable = true;
|
|
|
|
user = "alice";
|
|
|
|
};
|
|
|
|
};
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2011-03-11 09:00:10 -08:00
|
|
|
services.xserver.desktopManager.xfce.enable = true;
|
2016-04-12 10:12:28 -07:00
|
|
|
|
2019-09-09 19:14:03 -07:00
|
|
|
hardware.pulseaudio.enable = true; # needed for the factl test, /dev/snd/* exists without them but udev doesn't care then
|
2019-09-09 19:17:45 -07:00
|
|
|
|
|
|
|
virtualisation.memorySize = 1024;
|
2011-03-11 09:00:10 -08:00
|
|
|
};
|
|
|
|
|
2019-11-09 12:34:51 -08: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 10:16:49 -07:00
|
|
|
|
|
|
|
# Check that logging in has given the user ownership of devices.
|
2019-11-09 12:34:51 -08:00
|
|
|
machine.succeed("getfacl -p /dev/snd/timer | grep -q ${user.name}")
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2019-11-09 12:34:51 -08: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 09:00:10 -08:00
|
|
|
'';
|
2015-07-12 03:09:40 -07:00
|
|
|
})
|