2006-03-01 12:15:33 +00:00
|
|
|
source common.sh
|
|
|
|
|
2009-03-18 14:48:42 +00:00
|
|
|
clearStore
|
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
drvPath=$(nix-instantiate dependencies.nix)
|
2004-05-04 13:22:33 +00:00
|
|
|
|
2005-02-09 12:57:13 +00:00
|
|
|
echo "derivation is $drvPath"
|
2004-05-04 13:22:33 +00:00
|
|
|
|
2020-05-12 11:49:55 +00:00
|
|
|
nix-store -q --tree "$drvPath" | grep '───.*builder-dependencies-input-1.sh'
|
2006-02-22 13:55:41 +00:00
|
|
|
|
|
|
|
# Test Graphviz graph generation.
|
2011-10-10 21:32:34 +00:00
|
|
|
nix-store -q --graph "$drvPath" > $TEST_ROOT/graph
|
2006-02-22 13:55:41 +00:00
|
|
|
if test -n "$dot"; then
|
|
|
|
# Does it parse?
|
|
|
|
$dot < $TEST_ROOT/graph
|
2008-06-09 13:52:45 +00:00
|
|
|
fi
|
2006-02-22 13:55:41 +00:00
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
outPath=$(nix-store -rvv "$drvPath") || fail "build failed"
|
2004-05-04 13:22:33 +00:00
|
|
|
|
2006-02-22 13:55:41 +00:00
|
|
|
# Test Graphviz graph generation.
|
2011-10-10 21:32:34 +00:00
|
|
|
nix-store -q --graph "$outPath" > $TEST_ROOT/graph
|
2006-02-22 13:55:41 +00:00
|
|
|
if test -n "$dot"; then
|
|
|
|
# Does it parse?
|
|
|
|
$dot < $TEST_ROOT/graph
|
2020-03-24 13:17:10 +00:00
|
|
|
fi
|
2006-02-22 13:55:41 +00:00
|
|
|
|
2020-03-24 13:17:10 +00:00
|
|
|
nix-store -q --tree "$outPath" | grep '───.*dependencies-input-2'
|
2006-02-22 13:55:41 +00:00
|
|
|
|
2004-05-04 13:22:33 +00:00
|
|
|
echo "output path is $outPath"
|
|
|
|
|
|
|
|
text=$(cat "$outPath"/foobar)
|
|
|
|
if test "$text" != "FOOBAR"; then exit 1; fi
|
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
deps=$(nix-store -quR "$drvPath")
|
2004-05-04 13:22:33 +00:00
|
|
|
|
2005-01-25 10:55:33 +00:00
|
|
|
echo "output closure contains $deps"
|
2004-05-04 13:22:33 +00:00
|
|
|
|
|
|
|
# The output path should be in the closure.
|
|
|
|
echo "$deps" | grep -q "$outPath"
|
|
|
|
|
|
|
|
# Input-1 is not retained.
|
|
|
|
if echo "$deps" | grep -q "dependencies-input-1"; then exit 1; fi
|
|
|
|
|
|
|
|
# Input-2 is retained.
|
2005-01-25 11:18:03 +00:00
|
|
|
input2OutPath=$(echo "$deps" | grep "dependencies-input-2")
|
|
|
|
|
2005-12-13 21:04:48 +00:00
|
|
|
# The referrers closure of input-2 should include outPath.
|
2011-10-10 21:32:34 +00:00
|
|
|
nix-store -q --referrers-closure "$input2OutPath" | grep "$outPath"
|
2005-02-09 12:57:13 +00:00
|
|
|
|
|
|
|
# Check that the derivers are set properly.
|
2011-10-10 21:32:34 +00:00
|
|
|
test $(nix-store -q --deriver "$outPath") = "$drvPath"
|
2020-03-24 13:17:10 +00:00
|
|
|
nix-store -q --deriver "$input2OutPath" | grep -q -- "-input-2.drv"
|