Skip to content

Commit

Permalink
Merge pull request #80067 from tfc/port-plotinus-test
Browse files Browse the repository at this point in the history
nixosTests.plotinus: Port to Python
  • Loading branch information
worldofpeace committed Feb 13, 2020
2 parents 9673272 + acef369 commit 694a8b2
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions nixos/tests/plotinus.nix
@@ -1,4 +1,4 @@
import ./make-test.nix ({ pkgs, ... }: {
import ./make-test-python.nix ({ pkgs, ... }: {
name = "plotinus";
meta = {
maintainers = pkgs.plotinus.meta.maintainers;
Expand All @@ -12,16 +12,17 @@ import ./make-test.nix ({ pkgs, ... }: {
environment.systemPackages = [ pkgs.gnome3.gnome-calculator pkgs.xdotool ];
};

testScript =
''
$machine->waitForX;
$machine->succeed("gnome-calculator &");
$machine->waitForWindow(qr/gnome-calculator/);
$machine->succeed("xdotool search --sync --onlyvisible --class gnome-calculator windowfocus --sync key ctrl+shift+p");
$machine->sleep(5); # wait for the popup
$machine->succeed("xdotool key --delay 100 p r e f e r e n c e s Return");
$machine->waitForWindow(qr/Preferences/);
$machine->screenshot("screen");
'';

testScript = ''
machine.wait_for_x()
machine.succeed("gnome-calculator &")
machine.wait_for_window("gnome-calculator")
machine.succeed(
"xdotool search --sync --onlyvisible --class gnome-calculator "
+ "windowfocus --sync key --clearmodifiers --delay 1 'ctrl+shift+p'"
)
machine.sleep(5) # wait for the 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")
'';
})

0 comments on commit 694a8b2

Please sign in to comment.