mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
8ffd65b12e
The test failed non-deterministically when an at command was issued before the atd daemon was running.
32 lines
762 B
Nix
32 lines
762 B
Nix
import ./make-test.nix ({ pkgs, ... }:
|
|
|
|
{
|
|
name = "atd";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ bjornfor ];
|
|
};
|
|
|
|
machine =
|
|
{ ... }:
|
|
{ services.atd.enable = true;
|
|
users.users.alice = { isNormalUser = true; };
|
|
};
|
|
|
|
# "at" has a resolution of 1 minute
|
|
testScript = ''
|
|
startAll;
|
|
|
|
$machine->waitForUnit('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");
|
|
'';
|
|
})
|