2015-06-01 16:18:23 +02:00
|
|
|
|
source common.sh
|
|
|
|
|
|
|
|
|
|
clearStore
|
|
|
|
|
|
2016-05-30 14:53:57 +02:00
|
|
|
|
rm -rf $TEST_HOME
|
2015-06-02 13:20:43 +02:00
|
|
|
|
|
2015-06-01 16:18:23 +02:00
|
|
|
|
tarroot=$TEST_ROOT/tarball
|
|
|
|
|
rm -rf $tarroot
|
|
|
|
|
mkdir -p $tarroot
|
|
|
|
|
cp dependencies.nix $tarroot/default.nix
|
|
|
|
|
cp config.nix dependencies.builder*.sh $tarroot/
|
2023-08-22 19:29:25 +02:00
|
|
|
|
touch -d '@1000000000' $tarroot $tarroot/*
|
2015-06-01 16:18:23 +02:00
|
|
|
|
|
2020-07-24 18:44:43 +02:00
|
|
|
|
hash=$(nix hash path $tarroot)
|
2020-03-30 16:04:18 +02:00
|
|
|
|
|
2019-12-13 17:26:58 +01:00
|
|
|
|
test_tarball() {
|
|
|
|
|
local ext="$1"
|
|
|
|
|
local compressor="$2"
|
2015-06-01 16:18:23 +02:00
|
|
|
|
|
2019-12-13 17:26:58 +01:00
|
|
|
|
tarball=$TEST_ROOT/tarball.tar$ext
|
2024-03-04 05:34:19 +01:00
|
|
|
|
(cd $TEST_ROOT && GNUTAR_REPRODUCIBLE= tar --mtime=$tarroot/default.nix --owner=0 --group=0 --numeric-owner --sort=name -c -f - tarball) | $compressor > $tarball
|
2015-06-01 16:18:23 +02:00
|
|
|
|
|
2021-12-09 16:26:46 +01:00
|
|
|
|
nix-env -f file://$tarball -qa --out-path | grepQuiet dependencies
|
2015-06-01 16:18:23 +02:00
|
|
|
|
|
2019-12-13 17:26:58 +01:00
|
|
|
|
nix-build -o $TEST_ROOT/result file://$tarball
|
2015-06-01 16:18:23 +02:00
|
|
|
|
|
2019-12-13 17:26:58 +01:00
|
|
|
|
nix-build -o $TEST_ROOT/result '<foo>' -I foo=file://$tarball
|
2016-04-14 15:32:24 +02:00
|
|
|
|
|
2024-08-10 15:12:26 +02:00
|
|
|
|
nix-build -o $TEST_ROOT/result -E "import (fetchTarball \"file://$tarball\")"
|
2022-02-27 15:25:22 +01:00
|
|
|
|
# Do not re-fetch paths already present
|
2024-08-10 15:12:26 +02:00
|
|
|
|
nix-build -o $TEST_ROOT/result -E "import (fetchTarball { url = \"file:///does-not-exist/must-remain-unused/$tarball\"; sha256 = \"$hash\"; })"
|
2016-04-14 15:32:24 +02:00
|
|
|
|
|
2024-08-10 15:12:26 +02:00
|
|
|
|
nix-build -o $TEST_ROOT/result -E "import (fetchTree \"file://$tarball\")"
|
|
|
|
|
nix-build -o $TEST_ROOT/result -E "import (fetchTree { type = \"tarball\"; url = \"file://$tarball\"; })"
|
|
|
|
|
nix-build -o $TEST_ROOT/result -E "import (fetchTree { type = \"tarball\"; url = \"file://$tarball\"; narHash = \"$hash\"; })"
|
2022-02-27 15:25:22 +01:00
|
|
|
|
# Do not re-fetch paths already present
|
2024-08-10 15:12:26 +02:00
|
|
|
|
nix-build -o $TEST_ROOT/result -E "import (fetchTree { type = \"tarball\"; url = \"file:///does-not-exist/must-remain-unused/$tarball\"; narHash = \"$hash\"; })"
|
|
|
|
|
expectStderr 102 nix-build -o $TEST_ROOT/result -E "import (fetchTree { type = \"tarball\"; url = \"file://$tarball\"; narHash = \"sha256-xdKv2pq/IiwLSnBBJXW8hNowI4MrdZfW+SYqDQs7Tzc=\"; })" | grep 'NAR hash mismatch in input'
|
2020-04-29 22:39:58 +02:00
|
|
|
|
|
2024-08-10 15:12:26 +02:00
|
|
|
|
[[ $(nix eval --impure --expr "(fetchTree \"file://$tarball\").lastModified") = 1000000000 ]]
|
2023-08-22 19:29:25 +02:00
|
|
|
|
|
2024-08-10 15:12:26 +02:00
|
|
|
|
nix-instantiate --strict --eval -E "!((import (fetchTree { type = \"tarball\"; url = \"file://$tarball\"; narHash = \"$hash\"; })) ? submodules)" >&2
|
|
|
|
|
nix-instantiate --strict --eval -E "!((import (fetchTree { type = \"tarball\"; url = \"file://$tarball\"; narHash = \"$hash\"; })) ? submodules)" 2>&1 | grep 'true'
|
2020-03-30 16:04:18 +02:00
|
|
|
|
|
2019-12-13 17:26:58 +01:00
|
|
|
|
nix-instantiate --eval -E '1 + 2' -I fnord=file://no-such-tarball.tar$ext
|
|
|
|
|
nix-instantiate --eval -E 'with <fnord/xyzzy>; 1 + 2' -I fnord=file://no-such-tarball$ext
|
|
|
|
|
(! nix-instantiate --eval -E '<fnord/xyzzy> 1' -I fnord=file://no-such-tarball$ext)
|
2019-12-13 09:29:33 +01:00
|
|
|
|
|
2019-12-13 17:26:58 +01:00
|
|
|
|
nix-instantiate --eval -E '<fnord/config.nix>' -I fnord=file://no-such-tarball$ext -I fnord=.
|
2021-07-08 13:29:58 +02:00
|
|
|
|
|
|
|
|
|
# Ensure that the `name` attribute isn’t accepted as that would mess
|
|
|
|
|
# with the content-addressing
|
2024-08-10 15:12:26 +02:00
|
|
|
|
(! nix-instantiate --eval -E "fetchTree { type = \"tarball\"; url = \"file://$tarball\"; narHash = \"$hash\"; name = \"foo\"; }")
|
2021-07-08 13:29:58 +02:00
|
|
|
|
|
2019-12-13 17:26:58 +01:00
|
|
|
|
}
|
2019-12-13 09:29:33 +01:00
|
|
|
|
|
2019-12-13 17:26:58 +01:00
|
|
|
|
test_tarball '' cat
|
|
|
|
|
test_tarball .xz xz
|
|
|
|
|
test_tarball .gz gzip
|
2019-12-13 18:11:37 +01:00
|
|
|
|
|
|
|
|
|
rm -rf $TEST_ROOT/tmp
|
|
|
|
|
mkdir -p $TEST_ROOT/tmp
|
|
|
|
|
(! TMPDIR=$TEST_ROOT/tmp XDG_RUNTIME_DIR=$TEST_ROOT/tmp nix-env -f file://$(pwd)/bad.tar.xz -qa --out-path)
|
|
|
|
|
(! [ -e $TEST_ROOT/tmp/bad ])
|