2010-01-05 11:18:43 +00:00
|
|
|
{ nixpkgs, services, system }:
|
|
|
|
|
|
|
|
with import ./build-vms.nix { inherit nixpkgs services system; };
|
|
|
|
with pkgs;
|
|
|
|
|
|
|
|
rec {
|
|
|
|
|
2010-03-09 10:14:45 +00:00
|
|
|
inherit pkgs;
|
|
|
|
|
2010-01-05 11:18:43 +00:00
|
|
|
|
2010-12-16 15:54:15 +00:00
|
|
|
testDriver = stdenv.mkDerivation {
|
|
|
|
name = "nixos-test-driver";
|
2011-01-05 14:04:38 +00:00
|
|
|
|
|
|
|
buildInputs = [ makeWrapper perl ];
|
|
|
|
|
|
|
|
unpackPhase = "true";
|
|
|
|
|
|
|
|
installPhase =
|
2010-12-16 15:54:15 +00:00
|
|
|
''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp ${./test-driver/test-driver.pl} $out/bin/nixos-test-driver
|
|
|
|
chmod u+x $out/bin/nixos-test-driver
|
|
|
|
|
|
|
|
libDir=$out/lib/perl5/site_perl
|
|
|
|
mkdir -p $libDir
|
|
|
|
cp ${./test-driver/Machine.pm} $libDir/Machine.pm
|
2011-01-06 17:28:35 +00:00
|
|
|
cp ${./test-driver/Logger.pm} $libDir/Logger.pm
|
2010-12-16 15:54:15 +00:00
|
|
|
|
2011-01-05 14:04:38 +00:00
|
|
|
wrapProgram $out/bin/nixos-test-driver \
|
|
|
|
--prefix PATH : "${imagemagick}/bin" \
|
|
|
|
--prefix PERL5LIB : "${lib.makePerlPath [ perlPackages.TermReadLineGnu perlPackages.XMLWriter ]}:$out/lib/perl5/site_perl"
|
2010-12-16 15:54:15 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-01-05 11:18:43 +00:00
|
|
|
# Run an automated test suite in the given virtual network.
|
|
|
|
# `network' must be the result of a call to the
|
|
|
|
# `buildVirtualNetwork' function. `tests' is a Perl fragment
|
|
|
|
# describing the tests.
|
|
|
|
runTests = network: tests:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "vm-test-run";
|
2010-08-29 23:24:54 +00:00
|
|
|
|
|
|
|
requiredSystemFeatures = [ "kvm" ];
|
|
|
|
|
2010-01-05 11:18:43 +00:00
|
|
|
inherit tests;
|
2010-01-06 13:36:21 +00:00
|
|
|
|
2011-01-09 17:58:52 +00:00
|
|
|
buildInputs = [ pkgs.qemu_kvm pkgs.libxslt ];
|
2010-08-29 23:24:54 +00:00
|
|
|
|
2010-01-05 11:18:43 +00:00
|
|
|
buildCommand =
|
|
|
|
''
|
2011-01-09 22:21:22 +00:00
|
|
|
mkdir -p $out/nix-support
|
2010-12-16 15:54:15 +00:00
|
|
|
|
2011-01-09 18:56:11 +00:00
|
|
|
LOGFILE=$out/log.xml ${testDriver}/bin/nixos-test-driver ${network}/vms/*/bin/run-*-vm || failed=1
|
2010-01-05 11:18:43 +00:00
|
|
|
|
2011-01-09 18:56:11 +00:00
|
|
|
# Generate a pretty-printed log.
|
2011-01-09 17:58:52 +00:00
|
|
|
xsltproc --output $out/log.html ${./test-driver/log2html.xsl} $out/log.xml
|
|
|
|
ln -s ${./test-driver/logfile.css} $out/logfile.css
|
|
|
|
ln -s ${./test-driver/treebits.js} $out/treebits.js
|
|
|
|
ln -s ${pkgs.jquery_ui}/js/jquery.min.js $out/
|
|
|
|
ln -s ${pkgs.jquery_ui}/js/jquery-ui.min.js $out/
|
|
|
|
|
2010-01-07 16:50:26 +00:00
|
|
|
touch $out/nix-support/hydra-build-products
|
2011-01-09 18:46:02 +00:00
|
|
|
echo "report testlog $out log.html" >> $out/nix-support/hydra-build-products
|
2011-01-09 18:56:11 +00:00
|
|
|
|
|
|
|
for i in */coverage-data; do
|
2011-01-09 22:21:22 +00:00
|
|
|
mkdir -p $out/coverage-data
|
2011-01-09 18:56:11 +00:00
|
|
|
mv $i $out/coverage-data/$(dirname $i)
|
|
|
|
done
|
|
|
|
|
|
|
|
[ -z "$failed" ] || touch $out/nix-support/failed
|
2010-01-05 11:18:43 +00:00
|
|
|
''; # */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
# Generate a coverage report from the coverage data produced by
|
|
|
|
# runTests.
|
|
|
|
makeReport = x: runCommand "report" { buildInputs = [rsync]; }
|
|
|
|
''
|
2011-01-09 21:37:01 +00:00
|
|
|
mkdir -p $TMPDIR/gcov/
|
2010-01-05 11:18:43 +00:00
|
|
|
|
2011-01-09 21:37:01 +00:00
|
|
|
for d in ${x}/coverage-data/*; do
|
2010-01-05 11:18:43 +00:00
|
|
|
echo "doing $d"
|
2011-01-09 21:37:01 +00:00
|
|
|
[ -n "$(ls -A "$d")" ] || continue
|
2010-01-05 11:18:43 +00:00
|
|
|
|
|
|
|
for i in $(cd $d/nix/store && ls); do
|
|
|
|
if ! test -e $TMPDIR/gcov/nix/store/$i; then
|
|
|
|
echo "copying $i"
|
|
|
|
mkdir -p $TMPDIR/gcov/$(echo $i | cut -c34-)
|
|
|
|
rsync -rv /nix/store/$i/.build/* $TMPDIR/gcov/
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
chmod -R u+w $TMPDIR/gcov
|
|
|
|
|
|
|
|
find $TMPDIR/gcov -name "*.gcda" -exec rm {} \;
|
|
|
|
|
|
|
|
for i in $(cd $d/nix/store && ls); do
|
|
|
|
rsync -rv $d/nix/store/$i/.build/* $TMPDIR/gcov/
|
|
|
|
done
|
|
|
|
|
|
|
|
find $TMPDIR/gcov -name "*.gcda" -exec chmod 644 {} \;
|
|
|
|
|
|
|
|
echo "producing info..."
|
|
|
|
${pkgs.lcov}/bin/geninfo --ignore-errors source,gcov $TMPDIR/gcov --output-file $TMPDIR/app.info
|
|
|
|
cat $TMPDIR/app.info >> $TMPDIR/full.info
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "making report..."
|
2011-01-09 22:21:22 +00:00
|
|
|
mkdir -p $out/coverage
|
2010-01-05 11:18:43 +00:00
|
|
|
${pkgs.lcov}/bin/genhtml --show-details $TMPDIR/full.info -o $out/coverage
|
|
|
|
cp $TMPDIR/full.info $out/coverage/
|
|
|
|
|
2011-01-09 22:21:22 +00:00
|
|
|
mkdir -p $out/nix-support
|
|
|
|
cat ${x}/nix-support/hydra-build-products >> $out/nix-support/hydra-build-products
|
2010-01-05 11:18:43 +00:00
|
|
|
echo "report coverage $out/coverage" >> $out/nix-support/hydra-build-products
|
2011-01-09 22:21:22 +00:00
|
|
|
[ ! -e ${x}/nix-support/failed ] || touch $out/nix-support/failed
|
2010-01-05 11:18:43 +00:00
|
|
|
''; # */
|
2010-02-17 09:37:22 +00:00
|
|
|
|
2010-03-10 22:51:53 +00:00
|
|
|
|
2010-05-23 12:02:54 +00:00
|
|
|
makeTest = testFun: complete (call testFun);
|
|
|
|
makeTests = testsFun: lib.mapAttrs (name: complete) (call testsFun);
|
2010-02-17 09:37:22 +00:00
|
|
|
|
2010-05-23 12:02:54 +00:00
|
|
|
apply = makeTest; # compatibility
|
|
|
|
call = f: f { inherit pkgs nixpkgs system; };
|
2010-02-17 09:37:22 +00:00
|
|
|
|
|
|
|
complete = t: t // rec {
|
|
|
|
nodes =
|
|
|
|
if t ? nodes then t.nodes else
|
|
|
|
if t ? machine then { machine = t.machine; }
|
|
|
|
else { };
|
2010-12-16 19:35:43 +00:00
|
|
|
|
2010-02-17 09:37:22 +00:00
|
|
|
vms = buildVirtualNetwork { inherit nodes; };
|
2010-12-16 19:35:43 +00:00
|
|
|
|
|
|
|
testScript =
|
2010-05-21 14:31:05 +00:00
|
|
|
# Call the test script with the computed nodes.
|
2010-12-16 19:35:43 +00:00
|
|
|
if builtins.isFunction t.testScript
|
|
|
|
then t.testScript { inherit (vms) nodes; }
|
|
|
|
else t.testScript;
|
|
|
|
|
|
|
|
test = runTests vms testScript;
|
|
|
|
|
2010-02-17 09:37:22 +00:00
|
|
|
report = makeReport test;
|
2010-12-16 15:54:15 +00:00
|
|
|
|
|
|
|
# Generate a convenience wrapper for running the test driver
|
|
|
|
# interactively with the specified network.
|
2010-12-16 19:35:43 +00:00
|
|
|
driver = runCommand "nixos-test-driver"
|
|
|
|
{ buildInputs = [ makeWrapper];
|
|
|
|
inherit testScript;
|
|
|
|
}
|
2010-12-16 15:54:15 +00:00
|
|
|
''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
ln -s ${vms}/bin/* $out/bin/
|
|
|
|
ln -s ${testDriver}/bin/* $out/bin/
|
|
|
|
wrapProgram $out/bin/nixos-test-driver \
|
2010-12-16 19:35:43 +00:00
|
|
|
--add-flags "${vms}/vms/*/bin/run-*-vm" \
|
|
|
|
--run "testScript=\"\$(cat $out/test-script)\"" \
|
|
|
|
--set testScript '"$testScript"'
|
|
|
|
echo "$testScript" > $out/test-script
|
2010-12-16 15:54:15 +00:00
|
|
|
''; # "
|
2010-02-17 09:37:22 +00:00
|
|
|
};
|
2010-03-10 22:51:53 +00:00
|
|
|
|
2010-12-16 19:35:43 +00:00
|
|
|
|
2010-05-21 14:31:05 +00:00
|
|
|
runInMachine =
|
|
|
|
{ drv
|
|
|
|
, machine
|
|
|
|
, preBuild ? ""
|
|
|
|
, postBuild ? ""
|
|
|
|
, ...
|
|
|
|
}:
|
2010-03-11 13:11:06 +00:00
|
|
|
let
|
|
|
|
vms =
|
|
|
|
buildVirtualNetwork { nodes = { client = machine; } ; };
|
|
|
|
|
|
|
|
buildrunner = writeText "vm-build" ''
|
|
|
|
source $1
|
2010-07-23 13:59:50 +00:00
|
|
|
|
2010-03-11 13:11:06 +00:00
|
|
|
${coreutils}/bin/mkdir -p $TMPDIR
|
2010-07-23 13:59:50 +00:00
|
|
|
cd $TMPDIR
|
|
|
|
|
|
|
|
$origBuilder $origArgs
|
|
|
|
|
2010-08-11 07:40:16 +00:00
|
|
|
exit $?
|
2010-03-11 13:11:06 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
testscript = ''
|
|
|
|
startAll;
|
|
|
|
${preBuild}
|
2010-07-23 13:59:50 +00:00
|
|
|
print STDERR $client->mustSucceed("env -i ${pkgs.bash}/bin/bash ${buildrunner} /hostfs".$client->stateDir."/saved-env");
|
2010-03-11 13:11:06 +00:00
|
|
|
${postBuild}
|
|
|
|
'';
|
|
|
|
|
|
|
|
vmRunCommand = writeText "vm-run" ''
|
2010-12-21 10:57:19 +00:00
|
|
|
${coreutils}/bin/mkdir -p vm-state-client
|
|
|
|
export > vm-state-client/saved-env
|
2010-03-11 13:11:06 +00:00
|
|
|
export PATH=${qemu_kvm}/bin:${coreutils}/bin
|
|
|
|
export tests='${testscript}'
|
2010-12-16 15:54:15 +00:00
|
|
|
${testDriver}/bin/nixos-test-driver ${vms}/vms/*/bin/run-*-vm
|
2010-08-29 23:24:54 +00:00
|
|
|
''; # */
|
2010-03-11 13:11:06 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
lib.overrideDerivation drv (attrs: {
|
2010-08-29 23:24:54 +00:00
|
|
|
requiredSystemFeatures = [ "kvm" ];
|
2010-03-11 13:11:06 +00:00
|
|
|
builder = "${bash}/bin/sh";
|
|
|
|
args = ["-e" vmRunCommand];
|
|
|
|
origArgs = attrs.args;
|
2010-07-23 13:59:50 +00:00
|
|
|
origBuilder = attrs.builder;
|
2010-03-11 13:11:06 +00:00
|
|
|
});
|
2010-03-11 15:09:10 +00:00
|
|
|
|
2010-12-16 19:35:43 +00:00
|
|
|
|
2010-04-29 12:45:22 +00:00
|
|
|
runInMachineWithX = { require ? [], ...}@args :
|
2010-03-11 15:09:10 +00:00
|
|
|
let
|
|
|
|
client =
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
2010-04-29 12:45:22 +00:00
|
|
|
inherit require;
|
2010-03-11 15:09:10 +00:00
|
|
|
virtualisation.memorySize = 1024;
|
|
|
|
services.xserver.enable = true;
|
|
|
|
services.xserver.displayManager.slim.enable = false;
|
|
|
|
services.xserver.displayManager.auto.enable = true;
|
|
|
|
services.xserver.windowManager.default = "icewm";
|
|
|
|
services.xserver.windowManager.icewm.enable = true;
|
|
|
|
services.xserver.desktopManager.default = "none";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
runInMachine ({
|
|
|
|
machine = client;
|
|
|
|
preBuild = ''
|
2010-05-23 12:02:54 +00:00
|
|
|
$client->waitForX;
|
2010-03-11 15:09:10 +00:00
|
|
|
'' ;
|
|
|
|
} // args );
|
|
|
|
|
2010-12-16 19:35:43 +00:00
|
|
|
|
2010-05-23 12:02:54 +00:00
|
|
|
simpleTest = as: (makeTest ({ ... }: as)).test;
|
2010-03-10 22:51:53 +00:00
|
|
|
|
2010-01-05 11:18:43 +00:00
|
|
|
}
|