nix-super/tests/functional/gc.sh

57 lines
1.3 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
source common.sh
TODO_NixOS
clearStore
drvPath=$(nix-instantiate dependencies.nix)
outPath=$(nix-store -rvv "$drvPath")
# Set a GC root.
rm -f "$NIX_STATE_DIR/gcroots/foo"
ln -sf "$outPath" "$NIX_STATE_DIR/gcroots/foo"
[ "$(nix-store -q --roots "$outPath")" = "$NIX_STATE_DIR/gcroots/foo -> $outPath" ]
2014-02-26 19:00:46 +02:00
nix-store --gc --print-roots | grep "$outPath"
nix-store --gc --print-live | grep "$outPath"
nix-store --gc --print-dead | grep "$drvPath"
if nix-store --gc --print-dead | grep -E "$outPath"$; then false; fi
2006-03-01 16:00:27 +02:00
nix-store --gc --print-dead
2006-03-01 16:26:03 +02:00
inUse=$(readLink "$outPath/reference-to-input-2")
if nix-store --delete "$inUse"; then false; fi
test -e "$inUse"
2006-03-01 16:26:03 +02:00
if nix-store --delete "$outPath"; then false; fi
test -e "$outPath"
2006-03-01 16:26:03 +02: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
touch "$i.lock"
touch "$i.chroot"
done
nix-collect-garbage
# Check that the root and its dependencies haven't been deleted.
cat "$outPath/foobar"
cat "$outPath/reference-to-input-2/bar"
# Check that the derivation has been GC'd.
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
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
# Check that the store is empty.
rmdir "$NIX_STORE_DIR/.links"
rmdir "$NIX_STORE_DIR"