2016-06-01 15:05:46 +00:00
|
|
|
import ./make-test.nix ({ pkgs, ...} :
|
|
|
|
|
|
|
|
{
|
2017-03-03 13:25:45 +00:00
|
|
|
name = "plasma5";
|
2015-12-11 13:08:07 +00:00
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ ttuegel ];
|
|
|
|
};
|
|
|
|
|
2018-06-21 12:52:54 +00:00
|
|
|
machine = { lib, ... }:
|
|
|
|
let
|
|
|
|
sddm_theme = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "breeze-ocr-theme";
|
|
|
|
phases = "buildPhase";
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out/share/sddm/themes/
|
|
|
|
cp -r ${pkgs.plasma-workspace}/share/sddm/themes/breeze $out/share/sddm/themes/breeze-ocr-theme
|
|
|
|
chmod -R +w $out/share/sddm/themes/breeze-ocr-theme
|
|
|
|
printf "[General]\ntype=color\ncolor=#1d99f3\nbackground=\n" > $out/share/sddm/themes/breeze-ocr-theme/theme.conf
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
2015-12-11 13:08:07 +00:00
|
|
|
imports = [ ./common/user-account.nix ];
|
|
|
|
services.xserver.enable = true;
|
2017-03-24 13:02:24 +00:00
|
|
|
services.xserver.displayManager.sddm.enable = true;
|
2018-06-21 12:52:54 +00:00
|
|
|
services.xserver.displayManager.sddm.theme = "breeze-ocr-theme";
|
2017-03-01 01:09:56 +00:00
|
|
|
services.xserver.desktopManager.plasma5.enable = true;
|
|
|
|
services.xserver.desktopManager.default = "plasma5";
|
2017-03-24 13:02:24 +00:00
|
|
|
virtualisation.memorySize = 1024;
|
2018-06-21 12:52:54 +00:00
|
|
|
environment.systemPackages = [ sddm_theme ];
|
2017-05-24 12:54:46 +00:00
|
|
|
|
|
|
|
# fontconfig-penultimate-0.3.3 -> 0.3.4 broke OCR apparently, but no idea why.
|
|
|
|
nixpkgs.config.packageOverrides = superPkgs: {
|
2017-08-11 19:53:01 +00:00
|
|
|
fontconfig-penultimate = superPkgs.fontconfig-penultimate.override {
|
|
|
|
version = "0.3.3";
|
2017-08-11 22:55:32 +00:00
|
|
|
sha256 = "1z76jbkb0nhf4w7fy647yyayqr4q02fgk6w58k0yi700p0m3h4c9";
|
2017-08-11 19:53:01 +00:00
|
|
|
};
|
2017-05-24 12:54:46 +00:00
|
|
|
};
|
2015-12-11 13:08:07 +00:00
|
|
|
};
|
|
|
|
|
2017-03-24 13:02:24 +00:00
|
|
|
enableOCR = true;
|
|
|
|
|
|
|
|
testScript = { nodes, ... }: let
|
2018-06-29 23:55:42 +00:00
|
|
|
user = nodes.machine.config.users.users.alice;
|
2017-03-24 13:02:24 +00:00
|
|
|
xdo = "${pkgs.xdotool}/bin/xdotool";
|
|
|
|
in ''
|
2016-09-09 15:09:45 +00:00
|
|
|
startAll;
|
2017-03-24 13:02:24 +00:00
|
|
|
# Wait for display manager to start
|
|
|
|
$machine->waitForText(qr/${user.description}/);
|
|
|
|
$machine->screenshot("sddm");
|
|
|
|
|
|
|
|
# Log in
|
|
|
|
$machine->sendChars("${user.password}\n");
|
2016-09-09 15:09:45 +00:00
|
|
|
$machine->waitForFile("/home/alice/.Xauthority");
|
|
|
|
$machine->succeed("xauth merge ~alice/.Xauthority");
|
2016-06-01 15:05:46 +00:00
|
|
|
|
|
|
|
$machine->waitUntilSucceeds("pgrep plasmashell");
|
2016-09-09 15:09:45 +00:00
|
|
|
$machine->waitForWindow("^Desktop ");
|
2016-06-01 15:05:46 +00:00
|
|
|
|
|
|
|
# Check that logging in has given the user ownership of devices.
|
|
|
|
$machine->succeed("getfacl /dev/snd/timer | grep -q alice");
|
2016-09-09 15:09:45 +00:00
|
|
|
|
|
|
|
$machine->execute("su - alice -c 'DISPLAY=:0.0 dolphin &'");
|
|
|
|
$machine->waitForWindow(" Dolphin");
|
|
|
|
|
|
|
|
$machine->execute("su - alice -c 'DISPLAY=:0.0 konsole &'");
|
|
|
|
$machine->waitForWindow("Konsole");
|
|
|
|
|
|
|
|
$machine->execute("su - alice -c 'DISPLAY=:0.0 systemsettings5 &'");
|
|
|
|
$machine->waitForWindow("Settings");
|
2016-06-01 15:05:46 +00:00
|
|
|
|
|
|
|
$machine->execute("${xdo} key Alt+F1 sleep 10");
|
|
|
|
$machine->screenshot("screen");
|
2015-12-11 13:08:07 +00:00
|
|
|
'';
|
|
|
|
})
|