Skip to content

Commit

Permalink
nixos/tests/plotinus: fix build (#338686)
Browse files Browse the repository at this point in the history
  • Loading branch information
Artturin authored Sep 1, 2024
2 parents 4a9443e + 506d9f0 commit 877838a
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions nixos/tests/plotinus.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,31 @@ import ./make-test-python.nix ({ 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-calculator pkgs.xdotool ];
environment.systemPackages = [
pkgs.gnome-pomodoro
pkgs.xdotool
];
};

testScript = ''
machine.wait_for_x()
machine.succeed("gnome-calculator >&2 &")
machine.wait_for_window("gnome-calculator")
machine.succeed("gnome-pomodoro >&2 &")
machine.wait_for_window("Pomodoro", timeout=120)
machine.succeed(
"xdotool search --sync --onlyvisible --class gnome-calculator "
"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")
machine.screenshot("screen")
machine.wait_for_window("Preferences", timeout=120)
'';
})

0 comments on commit 877838a

Please sign in to comment.