nixpkgs/nixos/tests/atd.nix

32 lines
743 B
Nix
Raw Normal View History

2019-11-05 11:11:56 +00:00
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 = ''
2019-11-05 11:11:56 +00:00
start_all()
2019-11-05 11:11:56 +00:00
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")
2019-11-05 11:11:56 +00:00
machine.succeed("echo 'touch ~root/at-1' | at now+1min")
machine.succeed("su - alice -c \"echo 'touch at-1' | at now+1min\"")
2019-11-05 11:11:56 +00:00
machine.succeed("sleep 1.5m")
2019-11-05 11:11:56 +00:00
machine.succeed("test -f ~root/at-1")
machine.succeed("test -f ~alice/at-1")
'';
})