summary refs log tree commit diff
path: root/nixos/tests/atd.nix
blob: ad4d60067cf1e31862f52d2355ff3237a48e1c68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import ./make-test-python.nix ({ pkgs, ... }:

{
  name = "atd";
  meta = with pkgs.lib.maintainers; {
    maintainers = [ bjornfor ];
  };

  machine =
    { ... }:
    { services.atd.enable = true;
      users.users.alice = { isNormalUser = true; };
    };

  # "at" has a resolution of 1 minute
  testScript = ''
    start_all()

    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("sleep 1.5m")

    machine.succeed("test -f ~root/at-1")
    machine.succeed("test -f ~alice/at-1")
  '';
})