summaryrefslogtreecommitdiffstats
path: root/nixos/tests/plotinus.nix
blob: f1ea049ff4492d1822d05a2ef1ac1793dbdb3a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ pkgs, ... }:
{
  name = "plotinus";
  meta = {
    maintainers = pkgs.plotinus.meta.maintainers;
    timeout = 600;
  };

  nodes.machine =
    { pkgs, ... }:

    {
      imports = [ ./common/x11.nix ];
      programs.plotinus.enable = true;
      environment.systemPackages = [
        pkgs.gnome-pomodoro
        pkgs.xdotool
      ];
    };

  testScript = ''
    machine.wait_for_x()
    machine.succeed("gnome-pomodoro >&2 &")
    machine.wait_for_window("Pomodoro", timeout=120)
    machine.succeed(
        "xdotool search --sync --onlyvisible --class gnome-pomodoro "
        + "windowfocus --sync key --clearmodifiers --delay 1 'ctrl+shift+p'"
    )
    machine.sleep(5)  # wait for the popup
    machine.screenshot("popup")
    machine.succeed("xdotool key --delay 100 p r e f e r e n c e s Return")
    machine.wait_for_window("Preferences", timeout=120)
  '';
}