nix-gh/tests/dependencies.sh

49 lines
1.5 KiB
Bash
Raw Normal View History

drvPath=$($TOP/src/nix-instantiate/nix-instantiate dependencies.nix)
2004-05-04 15:22:33 +02:00
echo "derivation is $drvPath"
2004-05-04 15:22:33 +02:00
2006-02-22 16:20:11 +01:00
$TOP/src/nix-store/nix-store -q --tree "$drvPath" | grep ' +---.*builder1.sh'
# Test Graphviz graph generation.
$TOP/src/nix-store/nix-store -q --graph "$drvPath" > $TEST_ROOT/graph
if test -n "$dot"; then
# Does it parse?
$dot < $TEST_ROOT/graph
fi
outPath=$($TOP/src/nix-store/nix-store -rvv "$drvPath")
2004-05-04 15:22:33 +02:00
# Test Graphviz graph generation.
$TOP/src/nix-store/nix-store -q --graph "$outPath" > $TEST_ROOT/graph
if test -n "$dot"; then
# Does it parse?
$dot < $TEST_ROOT/graph
fi
2006-02-22 16:20:11 +01:00
$TOP/src/nix-store/nix-store -q --tree "$outPath" | grep '+---.*dependencies-input-2'
2004-05-04 15:22:33 +02:00
echo "output path is $outPath"
text=$(cat "$outPath"/foobar)
if test "$text" != "FOOBAR"; then exit 1; fi
deps=$($TOP/src/nix-store/nix-store -quR "$drvPath")
2004-05-04 15:22:33 +02:00
echo "output closure contains $deps"
2004-05-04 15:22:33 +02: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.
input2OutPath=$(echo "$deps" | grep "dependencies-input-2")
# The referrers closure of input-2 should include outPath.
$TOP/src/nix-store/nix-store -q --referrers-closure "$input2OutPath" | grep "$outPath"
# Check that the derivers are set properly.
test $($TOP/src/nix-store/nix-store -q --deriver "$outPath") = "$drvPath"
$TOP/src/nix-store/nix-store -q --deriver "$input2OutPath" | grep -q -- "-input-2.drv"