size: Get the item's size from the daemon rather than compute it.
[jackhill/guix/guix.git] / tests / guix-package.sh
CommitLineData
233e7676 1# GNU Guix --- Functional package management for GNU
ee06af5b 2# Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
acc08466 3# Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
0afdc485 4#
233e7676 5# This file is part of GNU Guix.
0afdc485 6#
233e7676 7# GNU Guix is free software; you can redistribute it and/or modify it
0afdc485
LC
8# under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 3 of the License, or (at
10# your option) any later version.
11#
233e7676 12# GNU Guix is distributed in the hope that it will be useful, but
0afdc485
LC
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
233e7676 18# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
0afdc485
LC
19
20#
e49951eb 21# Test the `guix package' command-line utility.
0afdc485
LC
22#
23
e49951eb 24guix package --version
0afdc485 25
24e262f0
LC
26readlink_base ()
27{
28 basename `readlink "$1"`
29}
30
e25234e3 31module_dir="t-guix-package-$$"
0afdc485
LC
32profile="t-profile-$$"
33rm -f "$profile"
34
c9323a4c 35trap 'rm -f "$profile" "$profile-"[0-9]* ; rm -rf "$module_dir" t-home-'"$$" EXIT
7a6548cb 36
5d4b411f
LC
37# Use `-e' with a non-package expression.
38if guix package --bootstrap -e +;
39then false; else true; fi
40
e49951eb 41guix package --bootstrap -p "$profile" -i guile-bootstrap
0afdc485
LC
42test -L "$profile" && test -L "$profile-1-link"
43test -f "$profile/bin/guile"
44
d2952326
LC
45# Make sure the profile is a GC root.
46guix gc --list-live | grep "`readlink "$profile-1-link"`"
47
1c67d639 48# Installing the same package a second time does nothing.
e49951eb 49guix package --bootstrap -p "$profile" -i guile-bootstrap
1c67d639
LC
50test -L "$profile" && test -L "$profile-1-link"
51! test -f "$profile-2-link"
52test -f "$profile/bin/guile"
0afdc485 53
5924080d 54# No search path env. var. here.
dbc31ab2
LC
55guix package -p "$profile" --search-paths
56guix package -p "$profile" --search-paths | grep '^export PATH='
57test "`guix package -p "$profile" --search-paths | wc -l`" = 1 # $PATH
58( set -e; set -x; \
59 eval `guix package --search-paths=prefix -p "$PWD/$profile"`; \
60 test "`type -P guile`" = "$PWD/$profile/bin/guile" ; \
61 type -P rm )
5924080d 62
57b86237
LC
63# Exit with 1 when a generation does not exist.
64if guix package -p "$profile" --delete-generations=42;
65then false; else true; fi
66
67# Exit with 0 when trying to delete the zeroth generation.
68guix package -p "$profile" --delete-generations=0
0afdc485 69
6447738c
MW
70# Make sure multiple arguments to -i works.
71guix package --bootstrap -i guile gcc -p "$profile" -n
72
9518856b 73# Make sure the `:' syntax works.
ecb1b610 74guix package --bootstrap -i "glibc:debug" -p "$profile" -n
9518856b 75
aa92cf98 76# Make sure nonexistent outputs are reported.
e49951eb
MW
77guix package --bootstrap -i "guile-bootstrap:out" -p "$profile" -n
78if guix package --bootstrap -i "guile-bootstrap:does-not-exist" -p "$profile" -n;
aa92cf98 79then false; else true; fi
e49951eb 80if guix package --bootstrap -i "guile-bootstrap:does-not-exist" -p "$profile";
aa92cf98
LC
81then false; else true; fi
82
64fc89b6 83# Check whether `--list-available' returns something sensible.
03f4ef28 84guix package -p "$profile" -A 'gui.*e' | grep guile
64fc89b6 85
2aa6efb0 86# Check whether `--show' returns something sensible.
3ce9aa44 87guix package --show=guile | grep "^name: guile"
2aa6efb0 88
1b0a86dd 89# Ensure `--show' doesn't fail for packages with non-package inputs.
5e6feee6
EB
90guix package --show=texlive
91
1b0a86dd
LC
92# Search.
93LC_MESSAGES=C
94export LC_MESSAGES
95test "`guix package -s "An example GNU package" | grep ^name:`" = \
96 "name: hello"
97test -z "`guix package -s "n0t4r341p4ck4g3"`"
98
99# Make sure `--search' can display all the packages.
100guix package --search="" > /dev/null
101
d7ddb257
LC
102# There's no generation older than 12 months, so the following command should
103# have no effect.
104generation="`readlink_base "$profile"`"
105if guix package -p "$profile" --delete-generations=12m;
106then false; else true; fi
107test "`readlink_base "$profile"`" = "$generation"
108
d26eb84d
LC
109# The following command should not delete the current generation, even though
110# it matches the given pattern (see <http://bugs.gnu.org/19978>.) And since
111# there's nothing else to delete, it should just fail.
112guix package --list-generations -p "$profile"
113if guix package --bootstrap -p "$profile" --delete-generations=1..
114then false; else true; fi
115test "`readlink_base "$profile"`" = "$generation"
116
c9323a4c
LC
117# Make sure $profile is a GC root at this point.
118real_profile="`readlink -f "$profile"`"
119if guix gc -d "$real_profile"
120then false; else true; fi
121test -d "$real_profile"
122
123# Now, let's remove all the symlinks to $real_profile, and make sure
124# $real_profile is no longer a GC root.
125rm "$profile" "$profile"-[0-9]-link
126guix gc -d "$real_profile"
127[ ! -d "$real_profile" ]
128
67668155 129#
0ec1af59 130# Try with the default profile.
67668155 131#
0ec1af59
LC
132
133XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
134export XDG_CACHE_HOME
88371f0d 135HOME="$PWD/t-home-$$"
0ec1af59
LC
136export HOME
137
138mkdir -p "$HOME"
139
59c51be2
LC
140# Get the canonical directory name so that 'guix package' recognizes it.
141HOME="`cd $HOME; pwd -P`"
142
e49951eb 143guix package --bootstrap -i guile-bootstrap
0ec1af59
LC
144test -L "$HOME/.guix-profile"
145test -f "$HOME/.guix-profile/bin/guile"
24e262f0 146
d9307267
LC
147# Move to the empty profile.
148default_profile="`readlink "$HOME/.guix-profile"`"
149for i in `seq 1 3`
150do
d2952326
LC
151 # Make sure the current generation is a GC root.
152 profile_link="`readlink "$default_profile"`"
153 guix gc --list-live | grep "`readlink "$profile_link"`"
154
e49951eb 155 guix package --bootstrap --roll-back
d9307267
LC
156 ! test -f "$HOME/.guix-profile/bin"
157 ! test -f "$HOME/.guix-profile/lib"
158 test "`readlink "$default_profile"`" = "$default_profile-0-link"
159done
3b9c0020 160
88371f0d
LC
161# Check whether '-p ~/.guix-profile' makes any difference.
162# See <http://bugs.gnu.org/17939>.
163if test -e "$HOME/.guix-profile-0-link"; then false; fi
164if test -e "$HOME/.guix-profile-1-link"; then false; fi
165guix package --bootstrap -p "$HOME/.guix-profile" -i guile-bootstrap
166if test -e "$HOME/.guix-profile-1-link"; then false; fi
167guix package --bootstrap --roll-back -p "$HOME/.guix-profile"
168if test -e "$HOME/.guix-profile-0-link"; then false; fi
169
3b9c0020 170# Extraneous argument.
e49951eb 171if guix package install foo-bar;
aa92cf98 172then false; else true; fi
1a43e4dc
LC
173
174# Make sure the "broken pipe" doesn't yield an error.
175# Note: 'pipefail' is a Bash-specific option.
176set -o pipefail || true
177guix package -A g | head -1 2> "$HOME/err1"
178guix package -I | head -1 2> "$HOME/err2"
179test "`cat "$HOME/err1" "$HOME/err2"`" = ""
300868ba
LC
180
181# Make sure '-L' extends the package module search path.
300868ba 182mkdir "$module_dir"
300868ba
LC
183
184cat > "$module_dir/foo.scm"<<EOF
185(define-module (foo)
186 #:use-module (guix packages)
187 #:use-module (gnu packages emacs))
188
189(define-public x
190 (package (inherit emacs)
191 (name "emacs-foo-bar")
192 (version "42")))
193EOF
194
195guix package -A emacs-foo-bar -L "$module_dir" | grep 42
196guix package -i emacs-foo-bar-42 -n -L "$module_dir"
8689901f
LC
197
198# Same thing using the 'GUIX_PACKAGE_PATH' environment variable.
199GUIX_PACKAGE_PATH="$module_dir"
200export GUIX_PACKAGE_PATH
201guix package -A emacs-foo-bar | grep 42
202guix package -i emacs-foo-bar-42 -n
ee06af5b
LC
203
204# Make sure patches that live under $GUIX_PACKAGE_PATH are found.
205cat > "$module_dir/emacs.patch"<<EOF
206This is a fake patch.
207EOF
208cat > "$module_dir/foo.scm"<<EOF
209(define-module (foo)
210 #:use-module (guix packages)
211 #:use-module (gnu packages)
212 #:use-module (gnu packages emacs))
213
214(define-public x
215 (package (inherit emacs)
216 (source (origin (inherit (package-source emacs))
217 (patches (list (search-patch "emacs.patch")))))
218 (name "emacs-foo-bar-patched")
219 (version "42")))
5763ad92
LC
220
221(define-public y
222 (package (inherit emacs)
223 (name "super-non-portable-emacs")
224 (supported-systems '("foobar64-hurd"))))
ee06af5b
LC
225EOF
226guix package -i emacs-foo-bar-patched -n
227
5763ad92
LC
228# This one should not show up in searches since it's no supported on the
229# current system.
230test "`guix package -A super-non-portable-emacs`" = ""
231test "`guix package -s super-non-portable-emacs | grep ^systems:`" = "systems: "
232
847391fe
DP
233unset GUIX_PACKAGE_PATH
234
235# Using 'GUIX_BUILD_OPTIONS'.
847391fe
DP
236available="`guix package -A | sort`"
237GUIX_BUILD_OPTIONS="--dry-run"
238export GUIX_BUILD_OPTIONS
239
240# Make sure $GUIX_BUILD_OPTIONS is not simply appended to the command-line,
241# which would break 'guix package -A' and similar.
242available2="`guix package -A | sort`"
243test "$available2" = "$available"
244guix package -I
1b676447
DT
245
246unset GUIX_BUILD_OPTIONS
247
5f1087c4 248# Applying a manifest file.
1b676447
DT
249cat > "$module_dir/manifest.scm"<<EOF
250(use-package-modules bootstrap)
251
252(packages->manifest (list %bootstrap-guile))
253EOF
254guix package --bootstrap -m "$module_dir/manifest.scm"
255guix package -I | grep guile
256test `guix package -I | wc -l` -eq 1
5f1087c4
LC
257
258# Error reporting.
259cat > "$module_dir/manifest.scm"<<EOF
260(use-package-modules bootstrap)
261(packages->manifest
262 (list %bootstrap-guile
263 wonderful-package-that-does-not-exist))
264EOF
265if guix package --bootstrap -n -m "$module_dir/manifest.scm" \
266 2> "$module_dir/stderr"
267then false
268else
269 cat "$module_dir/stderr"
270 grep "manifest.scm:[1-3]:.*[Uu]nbound variable.*wonderful-package" \
271 "$module_dir/stderr"
272fi