2010-01-06 13:36:21 +00:00
|
|
|
{ pkgs, nixpkgs, system, ... }:
|
|
|
|
|
2010-01-10 01:26:01 +00:00
|
|
|
with pkgs.lib;
|
|
|
|
|
2010-01-07 13:19:38 +00:00
|
|
|
let
|
2010-01-06 13:36:21 +00:00
|
|
|
|
|
|
|
# Build the ISO. This is the regular installation CD but with test
|
|
|
|
# instrumentation.
|
|
|
|
iso =
|
|
|
|
(import ../lib/eval-config.nix {
|
|
|
|
inherit nixpkgs system;
|
|
|
|
modules =
|
2010-01-06 20:52:05 +00:00
|
|
|
[ ../modules/installer/cd-dvd/installation-cd-graphical.nix
|
2010-01-06 13:36:21 +00:00
|
|
|
../modules/testing/test-instrumentation.nix
|
|
|
|
{ key = "serial";
|
2010-01-10 01:26:01 +00:00
|
|
|
boot.loader.grub.timeout = mkOverride 0 {} 0;
|
2010-01-06 20:52:05 +00:00
|
|
|
|
2010-01-06 16:46:21 +00:00
|
|
|
# The test cannot access the network, so any sources we
|
|
|
|
# need must be included in the ISO.
|
2010-01-06 20:52:05 +00:00
|
|
|
isoImage.storeContents =
|
2010-01-10 01:26:01 +00:00
|
|
|
[ pkgs.glibcLocales
|
2010-01-06 20:52:05 +00:00
|
|
|
pkgs.sudo
|
|
|
|
pkgs.docbook5
|
|
|
|
];
|
2010-01-06 13:36:21 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
}).config.system.build.isoImage;
|
|
|
|
|
2010-01-10 01:26:01 +00:00
|
|
|
|
2010-01-06 20:52:05 +00:00
|
|
|
# The configuration to install.
|
2010-01-10 01:26:01 +00:00
|
|
|
config = { fileSystems, testChannel }: pkgs.writeText "configuration.nix"
|
2010-01-06 20:52:05 +00:00
|
|
|
''
|
|
|
|
{ config, pkgs, modulesPath, ... }:
|
|
|
|
|
|
|
|
{ require =
|
|
|
|
[ ./hardware.nix
|
|
|
|
"''${modulesPath}/testing/test-instrumentation.nix"
|
|
|
|
];
|
|
|
|
|
|
|
|
boot.loader.grub.version = 2;
|
|
|
|
boot.loader.grub.device = "/dev/vda";
|
|
|
|
boot.initrd.kernelModules = [ "ext3" ];
|
|
|
|
|
2010-01-10 01:26:01 +00:00
|
|
|
fileSystems = [ ${fileSystems} ];
|
|
|
|
swapDevices = [ { label = "swap"; } ];
|
|
|
|
|
|
|
|
environment.systemPackages = [ ${optionalString testChannel "pkgs.rlwrap"} ];
|
2010-01-06 20:52:05 +00:00
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
2010-01-07 13:19:38 +00:00
|
|
|
rootFS =
|
|
|
|
''
|
|
|
|
{ mountPoint = "/";
|
|
|
|
device = "/dev/disk/by-label/nixos";
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
|
|
|
bootFS =
|
|
|
|
''
|
|
|
|
{ mountPoint = "/boot";
|
|
|
|
device = "/dev/disk/by-label/boot";
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
2010-01-10 01:26:01 +00:00
|
|
|
|
|
|
|
# Configuration of a web server that simulates the Nixpkgs channel
|
|
|
|
# distribution server.
|
|
|
|
webserver =
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{ services.httpd.enable = true;
|
|
|
|
services.httpd.adminAddr = "foo@example.org";
|
|
|
|
services.httpd.servedDirs = singleton
|
|
|
|
{ urlPath = "/releases/nixpkgs/channels/nixpkgs-unstable";
|
|
|
|
dir = "/tmp/channel";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Make the Nix store in this VM writable using AUFS. Use Linux
|
|
|
|
# 2.6.27 because 2.6.32 doesn't work (probably we need AUFS2).
|
|
|
|
# This should probably be moved to qemu-vm.nix.
|
2010-01-14 20:23:03 +00:00
|
|
|
boot.kernelPackages = (if pkgs ? linuxPackages then
|
|
|
|
pkgs.linuxPackages_2_6_27 else pkgs.kernelPackages_2_6_27);
|
2010-01-10 01:26:01 +00:00
|
|
|
boot.extraModulePackages = [ config.boot.kernelPackages.aufs ];
|
|
|
|
boot.initrd.availableKernelModules = [ "aufs" ];
|
|
|
|
|
|
|
|
boot.initrd.postMountCommands =
|
|
|
|
''
|
|
|
|
mkdir /mnt-store-tmpfs
|
|
|
|
mount -t tmpfs -o "mode=755" none /mnt-store-tmpfs
|
|
|
|
mount -t aufs -o dirs=/mnt-store-tmpfs=rw:$targetRoot/nix/store=rr none $targetRoot/nix/store
|
|
|
|
'';
|
|
|
|
|
|
|
|
virtualisation.pathsInNixDB = channelContents;
|
|
|
|
};
|
|
|
|
|
|
|
|
channelContents = [ pkgs.hello.src pkgs.rlwrap ];
|
|
|
|
|
|
|
|
|
2010-01-06 16:46:21 +00:00
|
|
|
# The test script boots the CD, installs NixOS on an empty hard
|
2010-01-07 14:19:19 +00:00
|
|
|
# disk, and then reboot from the hard disk. It's parameterized with
|
|
|
|
# a test script fragment `createPartitions', which must create
|
|
|
|
# partitions and filesystems, and a configuration.nix fragment
|
|
|
|
# `fileSystems'.
|
2010-01-10 01:26:01 +00:00
|
|
|
testScriptFun = { createPartitions, fileSystems, testChannel }:
|
2010-01-06 13:36:21 +00:00
|
|
|
''
|
2010-01-06 14:37:23 +00:00
|
|
|
createDisk("harddisk", 4 * 1024);
|
2010-01-06 13:36:21 +00:00
|
|
|
|
|
|
|
my $machine = Machine->new({ hda => "harddisk", cdrom => glob("${iso}/iso/*.iso") });
|
2010-01-10 01:26:01 +00:00
|
|
|
$machine->start;
|
2010-01-06 13:36:21 +00:00
|
|
|
|
2010-01-10 01:26:01 +00:00
|
|
|
${optionalString testChannel ''
|
|
|
|
# Create a channel on the web server containing a few packages
|
|
|
|
# to simulate the Nixpkgs channel.
|
|
|
|
$webserver->start;
|
|
|
|
$webserver->waitForJob("httpd");
|
|
|
|
$webserver->mustSucceed("mkdir /tmp/channel");
|
|
|
|
$webserver->mustSucceed(
|
|
|
|
"nix-push file:///tmp/channel " .
|
|
|
|
"http://nixos.org/releases/nixpkgs/channels/nixpkgs-unstable " .
|
|
|
|
"file:///tmp/channel/MANIFEST ${toString channelContents} >&2");
|
|
|
|
''}
|
|
|
|
|
2010-01-06 14:37:23 +00:00
|
|
|
# Make sure that we get a login prompt etc.
|
2010-01-10 01:26:01 +00:00
|
|
|
$machine->mustSucceed("echo hello");
|
2010-01-06 14:37:23 +00:00
|
|
|
$machine->waitForJob("tty1");
|
|
|
|
$machine->waitForJob("rogue");
|
|
|
|
$machine->waitForJob("nixos-manual");
|
|
|
|
|
2010-01-06 20:52:05 +00:00
|
|
|
# Make sure that we don't try to download anything.
|
|
|
|
$machine->stopJob("dhclient");
|
|
|
|
$machine->mustSucceed("rm /etc/resolv.conf");
|
|
|
|
|
2010-01-10 01:26:01 +00:00
|
|
|
${optionalString testChannel ''
|
|
|
|
# Allow the machine to talk to the fake nixos.org.
|
|
|
|
$machine->mustSucceed(
|
|
|
|
"echo 192.168.1.1 nixos.org >> /etc/hosts",
|
|
|
|
"ifconfig eth1 up 192.168.1.2",
|
|
|
|
"nix-pull http://nixos.org/releases/nixpkgs/channels/nixpkgs-unstable/MANIFEST",
|
|
|
|
);
|
|
|
|
|
|
|
|
# Test nix-env.
|
|
|
|
$machine->mustFail("hello");
|
|
|
|
$machine->mustSucceed("nix-env -i hello");
|
|
|
|
$machine->mustSucceed("hello") =~ /Hello, world/
|
|
|
|
or die "bad `hello' output";
|
|
|
|
''}
|
2010-01-06 16:46:21 +00:00
|
|
|
|
2010-01-06 14:37:23 +00:00
|
|
|
# Partition the disk.
|
2010-01-07 13:19:38 +00:00
|
|
|
${createPartitions}
|
2010-01-06 14:37:23 +00:00
|
|
|
|
2010-01-06 20:52:05 +00:00
|
|
|
# Create the NixOS configuration.
|
2010-01-06 16:46:21 +00:00
|
|
|
$machine->mustSucceed(
|
|
|
|
"mkdir -p /mnt/etc/nixos",
|
|
|
|
"nixos-hardware-scan > /mnt/etc/nixos/hardware.nix",
|
|
|
|
);
|
|
|
|
|
|
|
|
my $cfg = $machine->mustSucceed("cat /mnt/etc/nixos/hardware.nix");
|
2010-01-06 20:52:05 +00:00
|
|
|
print STDERR "Result of the hardware scan:\n$cfg\n";
|
|
|
|
|
2010-01-07 13:19:38 +00:00
|
|
|
$machine->copyFileFromHost(
|
2010-01-10 01:26:01 +00:00
|
|
|
"${ config { inherit fileSystems testChannel; } }",
|
2010-01-07 13:19:38 +00:00
|
|
|
"/mnt/etc/nixos/configuration.nix");
|
2010-01-06 16:46:21 +00:00
|
|
|
|
2010-01-06 20:52:05 +00:00
|
|
|
# Perform the installation.
|
|
|
|
$machine->mustSucceed("nixos-install >&2");
|
|
|
|
|
2010-01-07 14:19:19 +00:00
|
|
|
$machine->mustSucceed("cat /mnt/boot/grub/grub.cfg >&2");
|
2010-01-07 13:19:38 +00:00
|
|
|
|
2010-01-06 14:37:23 +00:00
|
|
|
$machine->shutdown;
|
2010-01-06 15:14:26 +00:00
|
|
|
|
|
|
|
# Now see if we can boot the installation.
|
|
|
|
my $machine = Machine->new({ hda => "harddisk" });
|
2010-01-06 20:52:05 +00:00
|
|
|
|
2010-01-07 13:19:38 +00:00
|
|
|
# Did /boot get mounted, if appropriate?
|
2010-01-07 14:59:43 +00:00
|
|
|
# !!! There is currently no good way to wait for the
|
|
|
|
# `filesystems' tash to finish.
|
2010-01-07 14:19:19 +00:00
|
|
|
#$machine->mustSucceed("initctl start filesystems");
|
|
|
|
#$machine->mustSucceed("test -e /boot/grub/grub.cfg");
|
2010-01-07 14:59:43 +00:00
|
|
|
|
|
|
|
# Did the swap device get activated?
|
|
|
|
# !!! Idem.
|
|
|
|
# $machine->waitForJob("swap");
|
|
|
|
#$machine->mustSucceed("cat /proc/swaps | grep -q /dev");
|
2010-01-07 13:19:38 +00:00
|
|
|
|
2010-01-06 22:53:27 +00:00
|
|
|
$machine->mustSucceed("nix-env -i coreutils >&2");
|
2010-01-06 20:52:05 +00:00
|
|
|
$machine->mustSucceed("type -tP ls") =~ /profiles/
|
|
|
|
or die "nix-env failed";
|
|
|
|
|
2010-01-06 22:53:27 +00:00
|
|
|
$machine->mustSucceed("nixos-rebuild switch >&2");
|
2010-01-06 20:52:05 +00:00
|
|
|
|
2010-01-07 13:19:38 +00:00
|
|
|
$machine->mustSucceed("cat /boot/grub/grub.cfg >&2");
|
|
|
|
|
2010-01-06 15:14:26 +00:00
|
|
|
$machine->shutdown;
|
2010-01-06 22:53:27 +00:00
|
|
|
|
|
|
|
# And just to be sure, check that the machine still boots after
|
|
|
|
# "nixos-rebuild switch".
|
|
|
|
my $machine = Machine->new({ hda => "harddisk" });
|
|
|
|
$machine->mustSucceed("echo hello");
|
|
|
|
$machine->shutdown;
|
2010-01-06 15:14:26 +00:00
|
|
|
'';
|
2010-01-06 16:46:21 +00:00
|
|
|
|
2010-01-10 01:26:01 +00:00
|
|
|
|
|
|
|
makeTest = { createPartitions, fileSystems, testChannel ? false }:
|
2010-01-07 13:19:38 +00:00
|
|
|
{ inherit iso;
|
2010-01-10 01:26:01 +00:00
|
|
|
nodes = if testChannel then { inherit webserver; } else { };
|
|
|
|
testScript = testScriptFun {
|
|
|
|
inherit createPartitions fileSystems testChannel;
|
|
|
|
};
|
2010-01-07 13:19:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
# The (almost) simplest partitioning scheme: a swap partition and
|
|
|
|
# one big filesystem partition.
|
|
|
|
simple = makeTest
|
|
|
|
{ createPartitions =
|
|
|
|
''
|
|
|
|
$machine->mustSucceed(
|
|
|
|
"parted /dev/vda mklabel msdos",
|
2010-01-10 19:05:30 +00:00
|
|
|
"udevadm settle",
|
2010-01-07 13:19:38 +00:00
|
|
|
"parted /dev/vda -- mkpart primary linux-swap 1M 1024M",
|
2010-01-10 19:05:30 +00:00
|
|
|
"udevadm settle",
|
2010-01-07 13:19:38 +00:00
|
|
|
"parted /dev/vda -- mkpart primary ext2 1024M -1s",
|
|
|
|
"udevadm settle",
|
|
|
|
"mkswap /dev/vda1 -L swap",
|
|
|
|
"swapon -L swap",
|
|
|
|
"mkfs.ext3 -L nixos /dev/vda2",
|
|
|
|
"mount LABEL=nixos /mnt",
|
|
|
|
);
|
|
|
|
'';
|
|
|
|
fileSystems = rootFS;
|
2010-01-10 01:26:01 +00:00
|
|
|
testChannel = true;
|
2010-01-07 13:19:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Same as the previous, but now with a separate /boot partition.
|
|
|
|
separateBoot = makeTest
|
|
|
|
{ createPartitions =
|
|
|
|
''
|
|
|
|
$machine->mustSucceed(
|
|
|
|
"parted /dev/vda mklabel msdos",
|
|
|
|
"parted /dev/vda -- mkpart primary ext2 1M 50MB", # /boot
|
2010-01-10 19:05:30 +00:00
|
|
|
"udevadm settle",
|
2010-01-07 13:19:38 +00:00
|
|
|
"parted /dev/vda -- mkpart primary linux-swap 50MB 1024M",
|
2010-01-10 19:05:30 +00:00
|
|
|
"udevadm settle",
|
2010-01-07 13:19:38 +00:00
|
|
|
"parted /dev/vda -- mkpart primary ext2 1024M -1s", # /
|
|
|
|
"udevadm settle",
|
|
|
|
"mkswap /dev/vda2 -L swap",
|
|
|
|
"swapon -L swap",
|
|
|
|
"mkfs.ext3 -L nixos /dev/vda3",
|
|
|
|
"mount LABEL=nixos /mnt",
|
|
|
|
"mkfs.ext3 -L boot /dev/vda1",
|
|
|
|
"mkdir /mnt/boot",
|
|
|
|
"mount LABEL=boot /mnt/boot",
|
|
|
|
);
|
|
|
|
'';
|
|
|
|
fileSystems = rootFS + bootFS;
|
|
|
|
};
|
|
|
|
|
2010-01-07 14:19:19 +00:00
|
|
|
# Create two physical LVM partitions combined into one volume group
|
|
|
|
# that contains the logical swap and root partitions.
|
|
|
|
lvm = makeTest
|
|
|
|
{ createPartitions =
|
|
|
|
''
|
|
|
|
$machine->mustSucceed(
|
|
|
|
"parted /dev/vda mklabel msdos",
|
2010-01-07 14:59:43 +00:00
|
|
|
"parted /dev/vda -- mkpart primary 1M 2048M", # first PV
|
2010-01-10 15:22:09 +00:00
|
|
|
"udevadm settle",
|
2010-01-07 14:59:43 +00:00
|
|
|
"parted /dev/vda -- set 1 lvm on",
|
2010-01-10 19:05:30 +00:00
|
|
|
"udevadm settle",
|
2010-01-07 14:19:19 +00:00
|
|
|
"parted /dev/vda -- mkpart primary 2048M -1s", # second PV
|
|
|
|
"udevadm settle",
|
2010-01-10 15:22:09 +00:00
|
|
|
"parted /dev/vda -- set 2 lvm on",
|
2010-01-10 19:19:52 +00:00
|
|
|
"udevadm settle",
|
2010-01-07 14:59:43 +00:00
|
|
|
"pvcreate /dev/vda1 /dev/vda2",
|
|
|
|
"vgcreate MyVolGroup /dev/vda1 /dev/vda2",
|
2010-01-07 14:19:19 +00:00
|
|
|
"lvcreate --size 1G --name swap MyVolGroup",
|
|
|
|
"lvcreate --size 2G --name nixos MyVolGroup",
|
|
|
|
"mkswap -f /dev/MyVolGroup/swap -L swap",
|
|
|
|
"swapon -L swap",
|
|
|
|
"mkfs.ext3 -L nixos /dev/MyVolGroup/nixos",
|
|
|
|
"mount LABEL=nixos /mnt",
|
|
|
|
);
|
|
|
|
'';
|
2010-01-10 19:05:30 +00:00
|
|
|
fileSystems = rootFS;
|
2010-01-07 14:19:19 +00:00
|
|
|
};
|
|
|
|
|
2010-01-06 13:36:21 +00:00
|
|
|
}
|