gnu: Add rust-rspec-1.
[jackhill/guix/guix.git] / tests / guix-gc.sh
... / ...
CommitLineData
1# GNU Guix --- Functional package management for GNU
2# Copyright © 2013, 2015, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
3#
4# This file is part of GNU Guix.
5#
6# GNU Guix is free software; you can redistribute it and/or modify it
7# under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 3 of the License, or (at
9# your option) any later version.
10#
11# GNU Guix is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19#
20# Test the `guix gc' command-line utility.
21#
22
23guix gc --version
24
25trap "rm -f guix-gc-root" EXIT
26rm -f guix-gc-root
27
28# Below we are using 'drv' and 'out' to contain store file names. If 'drv'
29# and 'out' are environment variables, 'list-runtime-roots' will "see" them
30# and thus prevent $drv and $out from being garbage-collected. Using 'unset'
31# allows us to make sure these are truly local shell variables and not
32# environments variables.
33unset drv
34unset out
35
36# For some operations, passing extra arguments is an error.
37for option in "" "-C 500M" "--verify" "--optimize" "--list-roots"
38do
39 if guix gc $option whatever; then false; else true; fi
40done
41
42# This should fail.
43if guix gc --verify=foo; then false; else true; fi
44
45# Check the references of a .drv.
46drv="`guix build guile-bootstrap -d`"
47out="`guix build guile-bootstrap`"
48test -f "$drv" && test -d "$out"
49
50guix gc --references "$drv" | grep -e -bash
51guix gc --references "$out"
52guix gc --references "$out/bin/guile"
53
54if guix gc --references /dev/null;
55then false; else true; fi
56
57# Check derivers.
58guix gc --derivers "$out" | grep "$drv"
59
60# Add then reclaim a .drv file.
61drv="`guix build idutils -d`"
62test -f "$drv"
63
64guix gc --list-dead | grep "$drv"
65guix gc --delete "$drv"
66! test -f "$drv"
67
68# Add a .drv, register it as a root.
69drv="`guix build --root=guix-gc-root lsh -d`"
70test -f "$drv" && test -L guix-gc-root
71
72guix gc --list-roots | grep "$PWD/guix-gc-root"
73
74guix gc --list-live | grep "$drv"
75if guix gc --delete "$drv";
76then false; else true; fi
77
78rm guix-gc-root
79guix gc --list-dead | grep "$drv"
80guix gc --delete "$drv"
81! test -f "$drv"
82
83# Try a random collection.
84guix gc -C 1KiB
85
86# Check trivial error cases.
87if guix gc --delete /dev/null;
88then false; else true; fi
89
90# Bug #19757
91out="`guix build guile-bootstrap`"
92test -d "$out"
93
94guix gc --delete "$out"
95
96! test -d "$out"
97
98out="`guix build guile-bootstrap`"
99test -d "$out"
100
101guix gc --delete "$out/"
102
103! test -d "$out"
104
105out="`guix build guile-bootstrap`"
106test -d "$out"
107
108guix gc --delete "$out/bin/guile"