gnu: Add rust-ansi-colours-1.
[jackhill/guix/guix.git] / tests / guix-gc.sh
CommitLineData
233e7676 1# GNU Guix --- Functional package management for GNU
bacf980c 2# Copyright © 2013, 2015, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
fe8ff028 3#
233e7676 4# This file is part of GNU Guix.
fe8ff028 5#
233e7676 6# GNU Guix is free software; you can redistribute it and/or modify it
fe8ff028
LC
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#
233e7676 11# GNU Guix is distributed in the hope that it will be useful, but
fe8ff028
LC
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
233e7676 17# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
fe8ff028
LC
18
19#
e49951eb 20# Test the `guix gc' command-line utility.
fe8ff028
LC
21#
22
e49951eb 23guix gc --version
fe8ff028
LC
24
25trap "rm -f guix-gc-root" EXIT
26rm -f guix-gc-root
27
ff23b47d
LC
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
3a96d7c3 36# For some operations, passing extra arguments is an error.
bacf980c 37for option in "" "-C 500M" "--verify" "--optimize" "--list-roots"
3a96d7c3
LC
38do
39 if guix gc $option whatever; then false; else true; fi
40done
41
3caab236
LC
42# This should fail.
43if guix gc --verify=foo; then false; else true; fi
44
ba8b732d
LC
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
8980eea5
LC
57# Check derivers.
58guix gc --derivers "$out" | grep "$drv"
59
fe8ff028 60# Add then reclaim a .drv file.
e49951eb 61drv="`guix build idutils -d`"
fe8ff028
LC
62test -f "$drv"
63
e49951eb
MW
64guix gc --list-dead | grep "$drv"
65guix gc --delete "$drv"
fe8ff028
LC
66! test -f "$drv"
67
68# Add a .drv, register it as a root.
e49951eb 69drv="`guix build --root=guix-gc-root lsh -d`"
fe8ff028
LC
70test -f "$drv" && test -L guix-gc-root
71
bacf980c
LC
72guix gc --list-roots | grep "$PWD/guix-gc-root"
73
e49951eb
MW
74guix gc --list-live | grep "$drv"
75if guix gc --delete "$drv";
fe8ff028
LC
76then false; else true; fi
77
78rm guix-gc-root
e49951eb
MW
79guix gc --list-dead | grep "$drv"
80guix gc --delete "$drv"
fe8ff028
LC
81! test -f "$drv"
82
83# Try a random collection.
e49951eb 84guix gc -C 1KiB
fe8ff028
LC
85
86# Check trivial error cases.
e49951eb 87if guix gc --delete /dev/null;
fe8ff028 88then false; else true; fi
cdb5b075
CS
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"