2012-04-19 19:56:35 +01:00
|
|
|
# Miscellaneous small tests that don't warrant their own VM run.
|
|
|
|
|
2014-04-14 13:02:44 +01:00
|
|
|
import ./make-test.nix {
|
2014-06-28 15:04:49 +01:00
|
|
|
name = "misc";
|
2012-04-19 19:56:35 +01:00
|
|
|
|
2012-06-12 15:05:11 +01:00
|
|
|
machine =
|
2014-04-29 14:29:52 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{ swapDevices = mkOverride 0
|
2012-06-12 15:05:11 +01:00
|
|
|
[ { device = "/root/swapfile"; size = 128; } ];
|
2014-04-29 14:29:52 +01:00
|
|
|
environment.variables.EDITOR = mkOverride 0 "emacs";
|
|
|
|
services.nixosManual.enable = mkOverride 0 true;
|
2014-04-17 15:10:48 +01:00
|
|
|
systemd.tmpfiles.rules = [ "d /tmp 1777 root root 10d" ];
|
2014-04-29 14:29:52 +01:00
|
|
|
fileSystems = mkVMOverride { "/tmp2" =
|
2014-07-30 12:15:29 +01:00
|
|
|
{ fsType = "tmpfs";
|
2014-04-29 14:29:52 +01:00
|
|
|
options = "mode=1777,noauto";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
systemd.automounts = singleton
|
|
|
|
{ wantedBy = [ "multi-user.target" ];
|
|
|
|
where = "/tmp2";
|
|
|
|
};
|
2012-06-12 15:05:11 +01:00
|
|
|
};
|
2012-04-19 19:56:35 +01:00
|
|
|
|
|
|
|
testScript =
|
|
|
|
''
|
|
|
|
subtest "nixos-version", sub {
|
2013-07-17 18:24:27 +01:00
|
|
|
$machine->succeed("[ `nixos-version | wc -w` = 2 ]");
|
2012-04-19 19:56:35 +01:00
|
|
|
};
|
|
|
|
|
2013-05-14 14:17:58 +01:00
|
|
|
subtest "nixos-rebuild", sub {
|
2013-10-13 21:17:12 +01:00
|
|
|
$machine->succeed("nixos-rebuild --help | grep SYNOPSIS");
|
2013-05-14 14:17:58 +01:00
|
|
|
};
|
|
|
|
|
2012-04-20 13:55:09 +01:00
|
|
|
# Sanity check for uid/gid assignment.
|
|
|
|
subtest "users-groups", sub {
|
|
|
|
$machine->succeed("[ `id -u messagebus` = 4 ]");
|
|
|
|
$machine->succeed("[ `id -g messagebus` = 4 ]");
|
|
|
|
$machine->succeed("[ `getent group users` = 'users:x:100:' ]");
|
|
|
|
};
|
|
|
|
|
2012-04-19 19:56:35 +01:00
|
|
|
# Regression test for GMP aborts on QEMU.
|
|
|
|
subtest "gmp", sub {
|
|
|
|
$machine->succeed("expr 1 + 2");
|
|
|
|
};
|
2012-06-12 15:05:11 +01:00
|
|
|
|
|
|
|
# Test that the swap file got created.
|
|
|
|
subtest "swapfile", sub {
|
2012-10-04 17:34:44 +01:00
|
|
|
$machine->waitForUnit("root-swapfile.swap");
|
2012-06-12 15:05:11 +01:00
|
|
|
$machine->succeed("ls -l /root/swapfile | grep 134217728");
|
|
|
|
};
|
2013-03-27 16:20:41 +00:00
|
|
|
|
|
|
|
# Test whether kernel.poweroff_cmd is set.
|
|
|
|
subtest "poweroff_cmd", sub {
|
|
|
|
$machine->succeed("[ -x \"\$(cat /proc/sys/kernel/poweroff_cmd)\" ]")
|
|
|
|
};
|
2013-09-17 15:16:59 +01:00
|
|
|
|
|
|
|
# Test whether the blkio controller is properly enabled.
|
|
|
|
subtest "blkio-cgroup", sub {
|
|
|
|
$machine->succeed("[ -n \"\$(cat /sys/fs/cgroup/blkio/blkio.sectors)\" ]")
|
|
|
|
};
|
2013-09-22 15:44:41 +01:00
|
|
|
|
|
|
|
# Test whether we have a reboot record in wtmp.
|
|
|
|
subtest "reboot-wtmp", sub {
|
|
|
|
$machine->succeed("last | grep reboot >&2");
|
|
|
|
};
|
2013-09-24 10:27:25 +01:00
|
|
|
|
|
|
|
# Test whether we can override environment variables.
|
|
|
|
subtest "override-env-var", sub {
|
|
|
|
$machine->succeed('[ "$EDITOR" = emacs ]');
|
|
|
|
};
|
2013-11-26 17:52:34 +00:00
|
|
|
|
|
|
|
# Test whether hostname (and by extension nss_myhostname) works.
|
|
|
|
subtest "hostname", sub {
|
|
|
|
$machine->succeed('[ "`hostname`" = machine ]');
|
2014-04-24 23:30:33 +01:00
|
|
|
#$machine->succeed('[ "`hostname -s`" = machine ]');
|
2013-11-26 17:52:34 +00:00
|
|
|
};
|
2014-04-17 11:22:24 +01:00
|
|
|
|
|
|
|
# Test whether systemd-udevd automatically loads modules for our hardware.
|
|
|
|
subtest "udev-auto-load", sub {
|
|
|
|
$machine->waitForUnit('systemd-udev-settle.service');
|
|
|
|
$machine->succeed('lsmod | grep psmouse');
|
|
|
|
};
|
2014-04-17 15:10:48 +01:00
|
|
|
|
|
|
|
# Test whether systemd-tmpfiles-clean works.
|
|
|
|
subtest "tmpfiles", sub {
|
|
|
|
$machine->succeed('touch /tmp/foo');
|
|
|
|
$machine->succeed('systemctl start systemd-tmpfiles-clean');
|
|
|
|
$machine->succeed('[ -e /tmp/foo ]');
|
|
|
|
$machine->succeed('date -s "@$(($(date +%s) + 1000000))"'); # move into the future
|
|
|
|
$machine->succeed('systemctl start systemd-tmpfiles-clean');
|
|
|
|
$machine->fail('[ -e /tmp/foo ]');
|
|
|
|
};
|
2014-04-29 14:29:52 +01:00
|
|
|
|
|
|
|
# Test whether automounting works.
|
|
|
|
subtest "automount", sub {
|
|
|
|
$machine->fail("grep '/tmp2 tmpfs' /proc/mounts");
|
|
|
|
$machine->succeed("touch /tmp2/x");
|
|
|
|
$machine->succeed("grep '/tmp2 tmpfs' /proc/mounts");
|
|
|
|
};
|
2014-06-13 17:33:58 +01:00
|
|
|
|
|
|
|
subtest "shell-vars", sub {
|
|
|
|
$machine->succeed('[ -n "$NIX_PATH" ]');
|
|
|
|
};
|
2012-04-19 19:56:35 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
}
|