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
|
|
|
|
|
|
|
# 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";
|
|
|
|
inherit tests;
|
2010-01-06 13:36:21 +00:00
|
|
|
|
2010-02-05 16:51:37 +00:00
|
|
|
buildInputs = [ pkgs.qemu_kvm pkgs.imagemagick ];
|
2010-01-06 13:36:21 +00:00
|
|
|
|
2010-01-05 11:18:43 +00:00
|
|
|
buildCommand =
|
|
|
|
''
|
|
|
|
mkdir $out
|
|
|
|
cp ${./test-driver/Machine.pm} Machine.pm
|
|
|
|
ensureDir $out/nix-support
|
|
|
|
|
|
|
|
${perl}/bin/perl ${./test-driver/test-driver.pl} ${network}/vms/*/bin/run-*-vm
|
|
|
|
|
|
|
|
for i in */coverage-data; do
|
|
|
|
ensureDir $out/coverage-data
|
|
|
|
mv $i $out/coverage-data/$(dirname $i)
|
|
|
|
done
|
|
|
|
|
2010-01-07 16:50:26 +00:00
|
|
|
touch $out/nix-support/hydra-build-products
|
|
|
|
|
2010-01-05 11:18:43 +00:00
|
|
|
for i in $out/*.png; do
|
|
|
|
echo "report screenshot $i" >> $out/nix-support/hydra-build-products
|
|
|
|
done
|
|
|
|
''; # */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
# Generate a coverage report from the coverage data produced by
|
|
|
|
# runTests.
|
|
|
|
makeReport = x: runCommand "report" { buildInputs = [rsync]; }
|
|
|
|
''
|
|
|
|
for d in ${x}/coverage-data/*; do
|
|
|
|
|
|
|
|
echo "doing $d"
|
|
|
|
|
|
|
|
ensureDir $TMPDIR/gcov/
|
|
|
|
|
|
|
|
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..."
|
|
|
|
ensureDir $out/coverage
|
|
|
|
${pkgs.lcov}/bin/genhtml --show-details $TMPDIR/full.info -o $out/coverage
|
|
|
|
cp $TMPDIR/full.info $out/coverage/
|
|
|
|
|
|
|
|
ensureDir $out/nix-support
|
|
|
|
echo "report coverage $out/coverage" >> $out/nix-support/hydra-build-products
|
|
|
|
''; # */
|
2010-02-17 09:37:22 +00:00
|
|
|
|
2010-03-10 22:51:53 +00:00
|
|
|
|
|
|
|
# !!! Rename these functions to something more sensible.
|
2010-02-17 09:37:22 +00:00
|
|
|
call = f: f { inherit pkgs nixpkgs system; };
|
|
|
|
|
|
|
|
apply = testFun: complete (call testFun);
|
|
|
|
|
|
|
|
complete = t: t // rec {
|
|
|
|
nodes =
|
|
|
|
if t ? nodes then t.nodes else
|
|
|
|
if t ? machine then { machine = t.machine; }
|
|
|
|
else { };
|
|
|
|
vms = buildVirtualNetwork { inherit nodes; };
|
2010-05-21 14:31:05 +00:00
|
|
|
test = runTests vms
|
|
|
|
# Call the test script with the computed nodes.
|
|
|
|
(if builtins.isFunction t.testScript then t.testScript { inherit (vms) nodes; } else t.testScript);
|
2010-02-17 09:37:22 +00:00
|
|
|
report = makeReport test;
|
|
|
|
};
|
2010-03-10 22:51:53 +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; } ; };
|
|
|
|
|
2010-04-29 12:45:22 +00:00
|
|
|
# ugly workaround, until we figure out why some fs actions work properly inside
|
|
|
|
# the vm. (e.g. unlink gives access denied over smb in qemu). note that the function
|
|
|
|
# now only works for derivations that lead to a directory in the store, not a file.
|
2010-03-11 13:11:06 +00:00
|
|
|
buildrunner = writeText "vm-build" ''
|
|
|
|
source $1
|
2010-04-29 12:45:22 +00:00
|
|
|
oldout=$out
|
|
|
|
out=$TMPDIR$out
|
|
|
|
${coreutils}/bin/mkdir -p $out
|
|
|
|
${coreutils}/bin/mkdir -p $oldout
|
|
|
|
${coreutils}/bin/ln -s $out $oldout
|
|
|
|
|
2010-03-11 13:11:06 +00:00
|
|
|
${coreutils}/bin/mkdir -p $TMPDIR
|
2010-03-11 13:12:17 +00:00
|
|
|
exec $origBuilder $origArgs
|
2010-04-29 12:45:22 +00:00
|
|
|
|
|
|
|
${coreutils}/bin/rm -v $oldout
|
|
|
|
${coreutils}/bin/cp -Rv $out/* $oldout/
|
|
|
|
out=$oldout
|
2010-03-11 13:11:06 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
testscript = ''
|
|
|
|
startAll;
|
|
|
|
${preBuild}
|
|
|
|
print STDERR $client->mustSucceed("source ${buildrunner} /hostfs".$client->stateDir."/saved-env");
|
|
|
|
${postBuild}
|
|
|
|
'';
|
|
|
|
|
|
|
|
vmRunCommand = writeText "vm-run" ''
|
|
|
|
${coreutils}/bin/mkdir -p client
|
|
|
|
export > client/saved-env
|
|
|
|
export PATH=${qemu_kvm}/bin:${coreutils}/bin
|
|
|
|
cp ${./test-driver/Machine.pm} Machine.pm
|
|
|
|
export tests='${testscript}'
|
|
|
|
${perl}/bin/perl ${./test-driver/test-driver.pl} ${vms}/vms/*/bin/run-*-vm
|
|
|
|
'';
|
|
|
|
|
|
|
|
in
|
|
|
|
lib.overrideDerivation drv (attrs: {
|
|
|
|
builder = "${bash}/bin/sh";
|
|
|
|
args = ["-e" vmRunCommand];
|
|
|
|
origArgs = attrs.args;
|
|
|
|
origBuilder = attrs.builder;
|
|
|
|
});
|
2010-03-11 15:09:10 +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 = ''
|
|
|
|
$client->waitForX ;
|
|
|
|
'' ;
|
|
|
|
} // args );
|
|
|
|
|
2010-03-10 22:51:53 +00:00
|
|
|
simpleTest = as: (apply ({ ... }: as)).test;
|
|
|
|
|
2010-01-05 11:18:43 +00:00
|
|
|
}
|