summary refs log blame commit diff
path: root/nixos/tests/atd.nix
blob: ef848c2a374f20a5fd540266be1f5485fbdf54e4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                            
                                                   






                                         
                                          

                                                               
                                                                           



                                            
                                             

     
import ./make-test.nix ({ pkgs, lib, ... }:

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

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

  # "at" has a resolution of 1 minute
  testScript = ''
    startAll;

    $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");
  '';
})