summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarijan <marijan.petricevic@hotmail.de>2019-11-05 12:11:56 +0100
committerMarijan <marijan.petricevic@hotmail.de>2019-11-06 12:46:24 +0100
commite86b9b9f0841985f44eb683b95398020c14bee8b (patch)
tree35357d86d2d1fb76aa7f9cc446e36859d6ed3349
parentf6501c42cdf723d8c2c50aef5b96cc54826ae18f (diff)
downloadnixpkgs-e86b9b9f0841985f44eb683b95398020c14bee8b.tar
nixpkgs-e86b9b9f0841985f44eb683b95398020c14bee8b.tar.gz
nixpkgs-e86b9b9f0841985f44eb683b95398020c14bee8b.tar.bz2
nixpkgs-e86b9b9f0841985f44eb683b95398020c14bee8b.tar.lz
nixpkgs-e86b9b9f0841985f44eb683b95398020c14bee8b.tar.xz
nixpkgs-e86b9b9f0841985f44eb683b95398020c14bee8b.tar.zst
nixpkgs-e86b9b9f0841985f44eb683b95398020c14bee8b.zip
nixos/atd: port test to python
-rw-r--r--nixos/tests/atd.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/nixos/tests/atd.nix b/nixos/tests/atd.nix
index 25db7279924..c3abe5c253d 100644
--- a/nixos/tests/atd.nix
+++ b/nixos/tests/atd.nix
@@ -1,4 +1,4 @@
-import ./make-test.nix ({ pkgs, ... }:
+import ./make-test-python.nix ({ pkgs, ... }:
 
 {
   name = "atd";
@@ -14,18 +14,18 @@ import ./make-test.nix ({ pkgs, ... }:
 
   # "at" has a resolution of 1 minute
   testScript = ''
-    startAll;
+    start_all()
 
-    $machine->waitForUnit('atd.service'); # wait for atd to start
-    $machine->fail("test -f ~root/at-1");
-    $machine->fail("test -f ~alice/at-1");
+    machine.wait_for_unit("atd.service")  # wait for atd to start
+    machine.fail("test -f ~root/at-1")
+    machine.fail("test -f ~alice/at-1")
 
-    $machine->succeed("echo 'touch ~root/at-1' | at now+1min");
-    $machine->succeed("su - alice -c \"echo 'touch at-1' | at now+1min\"");
+    machine.succeed("echo 'touch ~root/at-1' | at now+1min")
+    machine.succeed("su - alice -c \"echo 'touch at-1' | at now+1min\"")
 
-    $machine->succeed("sleep 1.5m");
+    machine.succeed("sleep 1.5m")
 
-    $machine->succeed("test -f ~root/at-1");
-    $machine->succeed("test -f ~alice/at-1");
+    machine.succeed("test -f ~root/at-1")
+    machine.succeed("test -f ~alice/at-1")
   '';
 })