2006-03-01 14:15:33 +02:00
|
|
|
source common.sh
|
|
|
|
|
2021-10-14 14:28:22 +03:00
|
|
|
clearStore
|
|
|
|
|
2011-10-11 00:32:34 +03:00
|
|
|
drvPath=$(nix-instantiate dependencies.nix)
|
|
|
|
outPath=$(nix-store -rvv "$drvPath")
|
2005-01-27 19:48:50 +02:00
|
|
|
|
|
|
|
# Set a GC root.
|
2006-03-01 15:25:08 +02:00
|
|
|
rm -f "$NIX_STATE_DIR"/gcroots/foo
|
|
|
|
ln -sf $outPath "$NIX_STATE_DIR"/gcroots/foo
|
2005-01-27 19:48:50 +02:00
|
|
|
|
2019-03-10 02:50:33 +02:00
|
|
|
[ "$(nix-store -q --roots $outPath)" = "$NIX_STATE_DIR/gcroots/foo -> $outPath" ]
|
2014-02-26 19:00:46 +02:00
|
|
|
|
2011-10-11 00:32:34 +03:00
|
|
|
nix-store --gc --print-roots | grep $outPath
|
|
|
|
nix-store --gc --print-live | grep $outPath
|
|
|
|
nix-store --gc --print-dead | grep $drvPath
|
2021-06-23 18:37:29 +03:00
|
|
|
if nix-store --gc --print-dead | grep -E $outPath$; then false; fi
|
2006-03-01 16:00:27 +02:00
|
|
|
|
2011-10-11 00:32:34 +03:00
|
|
|
nix-store --gc --print-dead
|
2006-03-01 16:26:03 +02:00
|
|
|
|
2022-01-19 15:15:45 +02:00
|
|
|
inUse=$(readLink $outPath/reference-to-input-2)
|
2011-10-11 00:32:34 +03:00
|
|
|
if nix-store --delete $inUse; then false; fi
|
2006-03-01 16:26:03 +02:00
|
|
|
test -e $inUse
|
|
|
|
|
2011-10-11 00:32:34 +03:00
|
|
|
if nix-store --delete $outPath; then false; fi
|
2006-03-01 16:26:03 +02:00
|
|
|
test -e $outPath
|
|
|
|
|
2021-10-14 14:28:22 +03:00
|
|
|
for i in $NIX_STORE_DIR/*; do
|
2021-10-15 13:41:27 +03:00
|
|
|
if [[ $i =~ /trash ]]; then continue; fi # compat with old daemon
|
2021-10-14 14:28:22 +03:00
|
|
|
touch $i.lock
|
|
|
|
touch $i.chroot
|
|
|
|
done
|
|
|
|
|
2011-10-11 00:32:34 +03:00
|
|
|
nix-collect-garbage
|
2005-01-27 19:48:50 +02:00
|
|
|
|
|
|
|
# Check that the root and its dependencies haven't been deleted.
|
|
|
|
cat $outPath/foobar
|
2022-01-19 15:15:45 +02:00
|
|
|
cat $outPath/reference-to-input-2/bar
|
2005-01-27 19:48:50 +02:00
|
|
|
|
|
|
|
# Check that the derivation has been GC'd.
|
2006-03-01 16:00:27 +02:00
|
|
|
if test -e $drvPath; then false; fi
|
2006-03-01 15:25:08 +02:00
|
|
|
|
|
|
|
rm "$NIX_STATE_DIR"/gcroots/foo
|
2006-03-01 16:00:27 +02:00
|
|
|
|
2011-10-11 00:32:34 +03:00
|
|
|
nix-collect-garbage
|
2006-03-01 16:00:27 +02:00
|
|
|
|
|
|
|
# Check that the output has been GC'd.
|
|
|
|
if test -e $outPath/foobar; then false; fi
|
2021-10-14 14:28:22 +03:00
|
|
|
|
|
|
|
# Check that the store is empty.
|
|
|
|
rmdir $NIX_STORE_DIR/.links
|
|
|
|
rmdir $NIX_STORE_DIR
|
2023-03-07 11:33:21 +02:00
|
|
|
|
|
|
|
## Test `nix-collect-garbage -d`
|
|
|
|
# `nix-env` doesn't work with CA derivations, so let's ignore that bit if we're
|
|
|
|
# using them
|
|
|
|
if [[ -z "${NIX_TESTS_CA_BY_DEFAULT:-}" ]]; then
|
|
|
|
clearProfiles
|
|
|
|
# Run two `nix-env` commands, should create two generations of
|
|
|
|
# the profile
|
|
|
|
nix-env -f ./user-envs.nix -i foo-1.0
|
|
|
|
nix-env -f ./user-envs.nix -i foo-2.0pre1
|
|
|
|
[[ $(nix-env --list-generations | wc -l) -eq 2 ]]
|
|
|
|
|
|
|
|
# Clear the profile history. There should be only one generation
|
|
|
|
# left
|
|
|
|
nix-collect-garbage -d
|
|
|
|
[[ $(nix-env --list-generations | wc -l) -eq 1 ]]
|
|
|
|
fi
|