* Refactor a bit so that more tests can be added.

This commit is contained in:
Eelco Dolstra 2011-12-20 17:01:02 +00:00
parent b5363810bb
commit 46e42c92c1
5 changed files with 26 additions and 36 deletions

View File

@ -36,7 +36,6 @@ EXTRA_DIST = $(TESTS) \
timeout.nix timeout.builder.sh \
secure-drv-outputs.nix \
multiple-outputs.nix \
multiple-outputs.a.builder.sh multiple-outputs.b.builder.sh \
$(wildcard lang/*.nix) $(wildcard lang/*.exp) $(wildcard lang/*.exp.xml) $(wildcard lang/*.flags) $(wildcard lang/dir*/*.nix) \
common.sh.in

View File

@ -1,6 +0,0 @@
mkdir $first
mkdir $second
test -z $all
echo "second" > $first/file
echo "first" > $second/file

View File

@ -1,7 +0,0 @@
mkdir $out
test "$firstOutput $secondOutput" = "$allOutputs"
test "$defaultOutput" = "$firstOutput"
test "$(cat $firstOutput/file)" = "second"
test "$(cat $secondOutput/file)" = "first"
echo "success" > $out/file

View File

@ -1,23 +1,35 @@
with import ./config.nix;
let
rec {
a = mkDerivation {
name = "multiple-outputs-a";
outputs = [ "first" "second" ];
builder = ./multiple-outputs.a.builder.sh;
builder = builtins.toFile "builder.sh"
''
mkdir $first $second
test -z $all
echo "second" > $first/file
echo "first" > $second/file
'';
helloString = "Hello, world!";
};
in
b = mkDerivation {
defaultOutput = assert a.second.helloString == "Hello, world!"; a;
firstOutput = a.first.first;
secondOutput = a.second.first.first.second.second.first.second;
allOutputs = a.all;
name = "multiple-outputs-b";
builder = builtins.toFile "builder.sh"
''
mkdir $out
test "$firstOutput $secondOutput" = "$allOutputs"
test "$defaultOutput" = "$firstOutput"
test "$(cat $firstOutput/file)" = "second"
test "$(cat $secondOutput/file)" = "first"
echo "success" > $out/file
'';
};
assert a.second.helloString == "Hello, world!";
mkDerivation {
defaultOutput = a;
firstOutput = a.first.first;
secondOutput = a.second.first.first.second.second.first.second;
allOutputs = a.all;
name = "multiple-outputs-b";
builder = ./multiple-outputs.b.builder.sh;
}

View File

@ -2,14 +2,6 @@ source common.sh
echo "Testing multiple outputs..."
drvPath=$(nix-instantiate multiple-outputs.nix)
echo "derivation is $drvPath"
outPath=$(nix-store -rvv "$drvPath")
outPath=$(nix-build multiple-outputs.nix -A b)
echo "output path is $outPath"
text=$(cat "$outPath"/file)
if test "$text" != "success"; then exit 1; fi
[ "$(cat "$outPath"/file)" = "success" ]