gnu: tiled: Update to 1.1.1.
[jackhill/guix/guix.git] / tests / guix-package.sh
CommitLineData
233e7676 1# GNU Guix --- Functional package management for GNU
aa042770 2# Copyright © 2012, 2013, 2014, 2015, 2016, 2017 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 32profile="t-profile-$$"
db5a9444
LC
33tmpfile="t-guix-package-file-$$"
34rm -f "$profile" "$tmpfile"
0afdc485 35
db5a9444 36trap 'rm -f "$profile" "$profile-"[0-9]* "$tmpfile"; rm -rf "$module_dir" t-home-'"$$" EXIT
7a6548cb 37
5d4b411f
LC
38# Use `-e' with a non-package expression.
39if guix package --bootstrap -e +;
40then false; else true; fi
41
aa042770
LC
42# Install a store item and make sure the version and output in the manifest
43# are correct.
44guix package --bootstrap -p "$profile" -i `guix build guile-bootstrap`
45test "`guix package -A guile-bootstrap | cut -f 1-2`" \
46 = "`guix package -p "$profile" -I | cut -f 1-2`"
47test "`guix package -p "$profile" -I | cut -f 3`" = "out"
48rm "$profile"
49
e49951eb 50guix package --bootstrap -p "$profile" -i guile-bootstrap
0afdc485
LC
51test -L "$profile" && test -L "$profile-1-link"
52test -f "$profile/bin/guile"
53
d2952326
LC
54# Make sure the profile is a GC root.
55guix gc --list-live | grep "`readlink "$profile-1-link"`"
56
1c67d639 57# Installing the same package a second time does nothing.
e49951eb 58guix package --bootstrap -p "$profile" -i guile-bootstrap
1c67d639
LC
59test -L "$profile" && test -L "$profile-1-link"
60! test -f "$profile-2-link"
61test -f "$profile/bin/guile"
0afdc485 62
5924080d 63# No search path env. var. here.
dbc31ab2
LC
64guix package -p "$profile" --search-paths
65guix package -p "$profile" --search-paths | grep '^export PATH='
66test "`guix package -p "$profile" --search-paths | wc -l`" = 1 # $PATH
67( set -e; set -x; \
68 eval `guix package --search-paths=prefix -p "$PWD/$profile"`; \
69 test "`type -P guile`" = "$PWD/$profile/bin/guile" ; \
70 type -P rm )
5924080d 71
57b86237
LC
72# Exit with 1 when a generation does not exist.
73if guix package -p "$profile" --delete-generations=42;
74then false; else true; fi
75
76# Exit with 0 when trying to delete the zeroth generation.
77guix package -p "$profile" --delete-generations=0
0afdc485 78
6447738c
MW
79# Make sure multiple arguments to -i works.
80guix package --bootstrap -i guile gcc -p "$profile" -n
81
9518856b 82# Make sure the `:' syntax works.
ecb1b610 83guix package --bootstrap -i "glibc:debug" -p "$profile" -n
9518856b 84
aa92cf98 85# Make sure nonexistent outputs are reported.
e49951eb
MW
86guix package --bootstrap -i "guile-bootstrap:out" -p "$profile" -n
87if guix package --bootstrap -i "guile-bootstrap:does-not-exist" -p "$profile" -n;
aa92cf98 88then false; else true; fi
e49951eb 89if guix package --bootstrap -i "guile-bootstrap:does-not-exist" -p "$profile";
aa92cf98
LC
90then false; else true; fi
91
64fc89b6 92# Check whether `--list-available' returns something sensible.
03f4ef28 93guix package -p "$profile" -A 'gui.*e' | grep guile
64fc89b6 94
2aa6efb0 95# Check whether `--show' returns something sensible.
3ce9aa44 96guix package --show=guile | grep "^name: guile"
2aa6efb0 97
1b0a86dd 98# Ensure `--show' doesn't fail for packages with non-package inputs.
5e6feee6
EB
99guix package --show=texlive
100
1b0a86dd
LC
101# Search.
102LC_MESSAGES=C
103export LC_MESSAGES
104test "`guix package -s "An example GNU package" | grep ^name:`" = \
105 "name: hello"
106test -z "`guix package -s "n0t4r341p4ck4g3"`"
107
db5a9444
LC
108# Search with one and then two regexps.
109# First we get printed circuit boards *and* board games.
110guix package -s '\<board\>' > "$tmpfile"
111grep '^name: pcb' "$tmpfile"
112grep '^name: gnubg' "$tmpfile"
113
114# Second we get only board games.
115guix package -s '\<board\>' -s game > "$tmpfile"
116grep -v '^name: pcb' "$tmpfile" > /dev/null
117grep '^name: gnubg' "$tmpfile"
118
119rm -f "$tmpfile"
120
1b0a86dd
LC
121# Make sure `--search' can display all the packages.
122guix package --search="" > /dev/null
123
d7ddb257
LC
124# There's no generation older than 12 months, so the following command should
125# have no effect.
126generation="`readlink_base "$profile"`"
127if guix package -p "$profile" --delete-generations=12m;
128then false; else true; fi
129test "`readlink_base "$profile"`" = "$generation"
130
d26eb84d
LC
131# The following command should not delete the current generation, even though
132# it matches the given pattern (see <http://bugs.gnu.org/19978>.) And since
133# there's nothing else to delete, it should just fail.
134guix package --list-generations -p "$profile"
135if guix package --bootstrap -p "$profile" --delete-generations=1..
136then false; else true; fi
137test "`readlink_base "$profile"`" = "$generation"
138
c9323a4c
LC
139# Make sure $profile is a GC root at this point.
140real_profile="`readlink -f "$profile"`"
141if guix gc -d "$real_profile"
142then false; else true; fi
143test -d "$real_profile"
144
145# Now, let's remove all the symlinks to $real_profile, and make sure
146# $real_profile is no longer a GC root.
147rm "$profile" "$profile"-[0-9]-link
148guix gc -d "$real_profile"
149[ ! -d "$real_profile" ]
150
494dc2fc
LC
151# Package transformations.
152
153# Make sure we get the right version number when using '--with-source'.
154mkdir "$module_dir"
155emacs_tarball="$module_dir/emacs-42.5.9rc7.tar.gz"
156touch "$emacs_tarball"
157guix package -p "$profile" -i emacs --with-source="$emacs_tarball" -n \
158 2> "$tmpfile"
159grep -E 'emacs[[:blank:]]+42\.5\.9rc7[[:blank:]]+.*-emacs-42.5.9rc7' \
160 "$tmpfile"
161rm "$emacs_tarball" "$tmpfile"
162rmdir "$module_dir"
163
164
67668155 165#
0ec1af59 166# Try with the default profile.
67668155 167#
0ec1af59
LC
168
169XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
170export XDG_CACHE_HOME
88371f0d 171HOME="$PWD/t-home-$$"
0ec1af59
LC
172export HOME
173
174mkdir -p "$HOME"
175
59c51be2
LC
176# Get the canonical directory name so that 'guix package' recognizes it.
177HOME="`cd $HOME; pwd -P`"
178
e49951eb 179guix package --bootstrap -i guile-bootstrap
0ec1af59
LC
180test -L "$HOME/.guix-profile"
181test -f "$HOME/.guix-profile/bin/guile"
24e262f0 182
d9307267
LC
183# Move to the empty profile.
184default_profile="`readlink "$HOME/.guix-profile"`"
185for i in `seq 1 3`
186do
d2952326
LC
187 # Make sure the current generation is a GC root.
188 profile_link="`readlink "$default_profile"`"
189 guix gc --list-live | grep "`readlink "$profile_link"`"
190
e49951eb 191 guix package --bootstrap --roll-back
d9307267
LC
192 ! test -f "$HOME/.guix-profile/bin"
193 ! test -f "$HOME/.guix-profile/lib"
194 test "`readlink "$default_profile"`" = "$default_profile-0-link"
195done
3b9c0020 196
88371f0d
LC
197# Check whether '-p ~/.guix-profile' makes any difference.
198# See <http://bugs.gnu.org/17939>.
199if test -e "$HOME/.guix-profile-0-link"; then false; fi
200if test -e "$HOME/.guix-profile-1-link"; then false; fi
201guix package --bootstrap -p "$HOME/.guix-profile" -i guile-bootstrap
202if test -e "$HOME/.guix-profile-1-link"; then false; fi
203guix package --bootstrap --roll-back -p "$HOME/.guix-profile"
204if test -e "$HOME/.guix-profile-0-link"; then false; fi
205
3b9c0020 206# Extraneous argument.
e49951eb 207if guix package install foo-bar;
aa92cf98 208then false; else true; fi
1a43e4dc
LC
209
210# Make sure the "broken pipe" doesn't yield an error.
211# Note: 'pipefail' is a Bash-specific option.
212set -o pipefail || true
213guix package -A g | head -1 2> "$HOME/err1"
214guix package -I | head -1 2> "$HOME/err2"
215test "`cat "$HOME/err1" "$HOME/err2"`" = ""
300868ba
LC
216
217# Make sure '-L' extends the package module search path.
300868ba 218mkdir "$module_dir"
300868ba
LC
219
220cat > "$module_dir/foo.scm"<<EOF
221(define-module (foo)
222 #:use-module (guix packages)
223 #:use-module (gnu packages emacs))
224
225(define-public x
226 (package (inherit emacs)
227 (name "emacs-foo-bar")
228 (version "42")))
229EOF
230
231guix package -A emacs-foo-bar -L "$module_dir" | grep 42
1b846da8 232guix package -i emacs-foo-bar@42 -n -L "$module_dir"
8689901f
LC
233
234# Same thing using the 'GUIX_PACKAGE_PATH' environment variable.
235GUIX_PACKAGE_PATH="$module_dir"
236export GUIX_PACKAGE_PATH
237guix package -A emacs-foo-bar | grep 42
1b846da8 238guix package -i emacs-foo-bar@42 -n
ee06af5b
LC
239
240# Make sure patches that live under $GUIX_PACKAGE_PATH are found.
241cat > "$module_dir/emacs.patch"<<EOF
242This is a fake patch.
243EOF
244cat > "$module_dir/foo.scm"<<EOF
245(define-module (foo)
246 #:use-module (guix packages)
247 #:use-module (gnu packages)
248 #:use-module (gnu packages emacs))
249
250(define-public x
251 (package (inherit emacs)
252 (source (origin (inherit (package-source emacs))
253 (patches (list (search-patch "emacs.patch")))))
254 (name "emacs-foo-bar-patched")
255 (version "42")))
5763ad92
LC
256
257(define-public y
258 (package (inherit emacs)
259 (name "super-non-portable-emacs")
260 (supported-systems '("foobar64-hurd"))))
ee06af5b
LC
261EOF
262guix package -i emacs-foo-bar-patched -n
263
223d7939
LC
264# Same when -L is used.
265( unset GUIX_PACKAGE_PATH; \
266 guix package -L "$module_dir" -i emacs-foo-bar-patched -n )
267
0d279400
DT
268# Make sure installing from a file works.
269cat > "$module_dir/package.scm"<<EOF
270(use-modules (gnu))
271(use-package-modules bootstrap)
272
273%bootstrap-guile
274EOF
275guix package --bootstrap --install-from-file="$module_dir/package.scm"
276
5763ad92
LC
277# This one should not show up in searches since it's no supported on the
278# current system.
279test "`guix package -A super-non-portable-emacs`" = ""
280test "`guix package -s super-non-portable-emacs | grep ^systems:`" = "systems: "
281
fc8fdcf5
LC
282# Don't upgrade packages marked for removal: <http://bugs.gnu.org/27262>.
283guix package --bootstrap -p "$profile" -i guile-bootstrap
284
285cat > "$module_dir/foo.scm"<<EOF
286(define-module (foo)
287 #:use-module (guix)
288 #:use-module (gnu packages bootstrap))
289
290(define-public x
291 (package (inherit %bootstrap-guile) (version "42")))
292EOF
293
294guix package --bootstrap -p "$profile" -r guile-bootstrap -u guile
295test ! -f "$profile/bin/guile"
296guix package --bootstrap -p "$profile" --roll-back
297test -f "$profile/bin/guile"
298rm "$profile-2-link"
299
847391fe
DP
300unset GUIX_PACKAGE_PATH
301
fc8fdcf5 302
847391fe 303# Using 'GUIX_BUILD_OPTIONS'.
847391fe 304available="`guix package -A | sort`"
442a6ff5 305GUIX_BUILD_OPTIONS="--dry-run --no-grafts"
847391fe
DP
306export GUIX_BUILD_OPTIONS
307
308# Make sure $GUIX_BUILD_OPTIONS is not simply appended to the command-line,
309# which would break 'guix package -A' and similar.
310available2="`guix package -A | sort`"
311test "$available2" = "$available"
312guix package -I
1b676447 313
442a6ff5
LC
314# Restore '--no-grafts', which makes sure we don't end up building stuff when
315# '--dry-run' is passed.
316GUIX_BUILD_OPTIONS="--no-grafts"
1b676447 317
5f1087c4 318# Applying a manifest file.
1b676447
DT
319cat > "$module_dir/manifest.scm"<<EOF
320(use-package-modules bootstrap)
321
322(packages->manifest (list %bootstrap-guile))
323EOF
324guix package --bootstrap -m "$module_dir/manifest.scm"
325guix package -I | grep guile
326test `guix package -I | wc -l` -eq 1
5f1087c4
LC
327
328# Error reporting.
329cat > "$module_dir/manifest.scm"<<EOF
330(use-package-modules bootstrap)
331(packages->manifest
332 (list %bootstrap-guile
333 wonderful-package-that-does-not-exist))
334EOF
335if guix package --bootstrap -n -m "$module_dir/manifest.scm" \
336 2> "$module_dir/stderr"
337then false
338else
339 cat "$module_dir/stderr"
ae0307f7 340 grep "manifest.scm:[1-3]:.*wonderful-package.*: unbound variable" \
5f1087c4
LC
341 "$module_dir/stderr"
342fi