abe218950c
You can now run a test in the nixos/tests directory directly using nix-build, e.g. $ nix-build '<nixos/tests/login.nix>' -A test This gets rid of having to add the test to nixos/tests/default.nix. (Of course, you still need to add it to nixos/release.nix if you want Hydra to run the test.)
65 lines
2.1 KiB
Nix
65 lines
2.1 KiB
Nix
import ./make-test.nix ({ pkgs, latestKernel ? false, ... }:
|
|
|
|
{
|
|
|
|
machine =
|
|
{ config, pkgs, lib, ... }:
|
|
{ boot.kernelPackages = lib.mkIf latestKernel pkgs.linuxPackages_latest;
|
|
};
|
|
|
|
testScript =
|
|
''
|
|
$machine->waitForUnit("default.target");
|
|
$machine->screenshot("postboot");
|
|
|
|
subtest "create user", sub {
|
|
$machine->succeed("useradd -m alice");
|
|
$machine->succeed("(echo foobar; echo foobar) | passwd alice");
|
|
};
|
|
|
|
# Check whether switching VTs works.
|
|
subtest "virtual console switching", sub {
|
|
$machine->sendKeys("alt-f2");
|
|
$machine->waitUntilSucceeds("[ \$(fgconsole) = 2 ]");
|
|
$machine->waitForUnit('getty@tty2.service');
|
|
};
|
|
|
|
# Log in as alice on a virtual console.
|
|
subtest "virtual console login", sub {
|
|
$machine->sleep(2); # urgh: wait for username prompt
|
|
$machine->sendChars("alice\n");
|
|
$machine->waitUntilSucceeds("pgrep login");
|
|
$machine->sleep(2); # urgh: wait for `Password:'
|
|
$machine->sendChars("foobar\n");
|
|
$machine->waitUntilSucceeds("pgrep -u alice bash");
|
|
$machine->sendChars("touch done\n");
|
|
$machine->waitForFile("/home/alice/done");
|
|
};
|
|
|
|
# Check whether systemd gives and removes device ownership as
|
|
# needed.
|
|
subtest "device permissions", sub {
|
|
$machine->succeed("getfacl /dev/snd/timer | grep -q alice");
|
|
$machine->sendKeys("alt-f1");
|
|
$machine->waitUntilSucceeds("[ \$(fgconsole) = 1 ]");
|
|
$machine->fail("getfacl /dev/snd/timer | grep -q alice");
|
|
$machine->succeed("chvt 2");
|
|
$machine->waitUntilSucceeds("getfacl /dev/snd/timer | grep -q alice");
|
|
};
|
|
|
|
# Log out.
|
|
subtest "virtual console logout", sub {
|
|
$machine->sendChars("exit\n");
|
|
$machine->waitUntilFails("pgrep -u alice bash");
|
|
$machine->screenshot("mingetty");
|
|
};
|
|
|
|
# Check whether ctrl-alt-delete works.
|
|
subtest "ctrl-alt-delete", sub {
|
|
$machine->sendKeys("ctrl-alt-delete");
|
|
$machine->waitForShutdown;
|
|
};
|
|
'';
|
|
|
|
})
|