2010-01-05 12:18:43 +01:00
|
|
|
{ nixpkgs, services, system }:
|
|
|
|
|
|
|
|
with import ./build-vms.nix { inherit nixpkgs services system; };
|
|
|
|
with pkgs;
|
|
|
|
|
|
|
|
rec {
|
|
|
|
|
2010-03-09 11:14:45 +01:00
|
|
|
inherit pkgs;
|
|
|
|
|
2010-01-05 12:18:43 +01: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 14:36:21 +01:00
|
|
|
|
2010-02-05 17:51:37 +01:00
|
|
|
buildInputs = [ pkgs.qemu_kvm pkgs.imagemagick ];
|
2010-01-06 14:36:21 +01:00
|
|
|
|
2010-01-05 12:18:43 +01: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 17:50:26 +01:00
|
|
|
touch $out/nix-support/hydra-build-products
|
|
|
|
|
2010-01-05 12:18:43 +01: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 10:37:22 +01: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; };
|
|
|
|
test = runTests vms t.testScript;
|
|
|
|
report = makeReport test;
|
|
|
|
};
|
|
|
|
|
2010-01-05 12:18:43 +01:00
|
|
|
}
|