nixos/tests/plotinus: fix build (#338686)
This commit is contained in:
commit
877838a0da
@ -2,6 +2,7 @@ import ./make-test-python.nix ({ pkgs, ... }: {
|
|||||||
name = "plotinus";
|
name = "plotinus";
|
||||||
meta = {
|
meta = {
|
||||||
maintainers = pkgs.plotinus.meta.maintainers;
|
maintainers = pkgs.plotinus.meta.maintainers;
|
||||||
|
timeout = 600;
|
||||||
};
|
};
|
||||||
|
|
||||||
nodes.machine =
|
nodes.machine =
|
||||||
@ -9,20 +10,23 @@ import ./make-test-python.nix ({ pkgs, ... }: {
|
|||||||
|
|
||||||
{ imports = [ ./common/x11.nix ];
|
{ imports = [ ./common/x11.nix ];
|
||||||
programs.plotinus.enable = true;
|
programs.plotinus.enable = true;
|
||||||
environment.systemPackages = [ pkgs.gnome-calculator pkgs.xdotool ];
|
environment.systemPackages = [
|
||||||
|
pkgs.gnome-pomodoro
|
||||||
|
pkgs.xdotool
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript = ''
|
testScript = ''
|
||||||
machine.wait_for_x()
|
machine.wait_for_x()
|
||||||
machine.succeed("gnome-calculator >&2 &")
|
machine.succeed("gnome-pomodoro >&2 &")
|
||||||
machine.wait_for_window("gnome-calculator")
|
machine.wait_for_window("Pomodoro", timeout=120)
|
||||||
machine.succeed(
|
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'"
|
+ "windowfocus --sync key --clearmodifiers --delay 1 'ctrl+shift+p'"
|
||||||
)
|
)
|
||||||
machine.sleep(5) # wait for the popup
|
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.succeed("xdotool key --delay 100 p r e f e r e n c e s Return")
|
||||||
machine.wait_for_window("Preferences")
|
machine.wait_for_window("Preferences", timeout=120)
|
||||||
machine.screenshot("screen")
|
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user