summary refs log tree commit diff
diff options
context:
space:
mode:
authorJacek Galowicz <jacek.galowicz@cyberus-technology.de>2020-02-13 23:01:45 +0100
committerJacek Galowicz <jacek@galowicz.de>2020-02-13 23:36:13 +0100
commitacef369bc3a2851c7fca184d0bb67c554227eb22 (patch)
tree6479b1ab40735b2250253f7d5a294e4440d507ec
parent0a33a4ab113ad7f89a694f93c91217af221cabe3 (diff)
downloadnixpkgs-acef369bc3a2851c7fca184d0bb67c554227eb22.tar
nixpkgs-acef369bc3a2851c7fca184d0bb67c554227eb22.tar.gz
nixpkgs-acef369bc3a2851c7fca184d0bb67c554227eb22.tar.bz2
nixpkgs-acef369bc3a2851c7fca184d0bb67c554227eb22.tar.lz
nixpkgs-acef369bc3a2851c7fca184d0bb67c554227eb22.tar.xz
nixpkgs-acef369bc3a2851c7fca184d0bb67c554227eb22.tar.zst
nixpkgs-acef369bc3a2851c7fca184d0bb67c554227eb22.zip
nixosTests.plotinus: Port to Python
-rw-r--r--nixos/tests/plotinus.nix27
1 files changed, 14 insertions, 13 deletions
diff --git a/nixos/tests/plotinus.nix b/nixos/tests/plotinus.nix
index 609afe7b214..39a4234dbf7 100644
--- a/nixos/tests/plotinus.nix
+++ b/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;
@@ -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")
+  '';
 })