about summary refs log tree commit diff
path: root/tests/nix-pull.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nix-pull.sh')
-rw-r--r--tests/nix-pull.sh33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/nix-pull.sh b/tests/nix-pull.sh
new file mode 100644
index 000000000000..87239948c481
--- /dev/null
+++ b/tests/nix-pull.sh
@@ -0,0 +1,33 @@
+source common.sh
+
+pullCache () {
+    echo "pulling cache..."
+    nix-pull file://$TEST_ROOT/cache/MANIFEST
+}
+
+clearStore
+clearManifests
+pullCache
+
+drvPath=$(nix-instantiate dependencies.nix)
+outPath=$(nix-store -q $drvPath)
+
+echo "building $outPath using substitutes..."
+nix-store -r $outPath
+
+cat $outPath/input-2/bar
+
+clearStore
+clearManifests
+pullCache
+
+echo "building $drvPath using substitutes..."
+nix-store -r $drvPath
+
+cat $outPath/input-2/bar
+
+# Check that the derivers are set properly.
+test $(nix-store -q --deriver "$outPath") = "$drvPath"
+nix-store -q --deriver $(readLink $outPath/input-2) | grep -q -- "-input-2.drv"
+
+clearManifests