packages: 'package-transitive-supported-systems' ignores '%current-target-system'.
[jackhill/guix/guix.git] / tests / guix-package.sh
CommitLineData
233e7676 1# GNU Guix --- Functional package management for GNU
9fd7b050 2# Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 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
b1fb6634 36trap 'rm -f "$profile" "$profile.lock" "$profile-"[0-9]* "$tmpfile"; rm -rf "$module_dir" t-home-'"$$" EXIT
7a6548cb 37
5d4b411f 38# Use `-e' with a non-package expression.
d8934360 39! guix package --bootstrap -e +
5d4b411f 40
aa042770
LC
41# Install a store item and make sure the version and output in the manifest
42# are correct.
43guix package --bootstrap -p "$profile" -i `guix build guile-bootstrap`
44test "`guix package -A guile-bootstrap | cut -f 1-2`" \
45 = "`guix package -p "$profile" -I | cut -f 1-2`"
46test "`guix package -p "$profile" -I | cut -f 3`" = "out"
47rm "$profile"
48
e49951eb 49guix package --bootstrap -p "$profile" -i guile-bootstrap
0afdc485
LC
50test -L "$profile" && test -L "$profile-1-link"
51test -f "$profile/bin/guile"
52
d2952326
LC
53# Make sure the profile is a GC root.
54guix gc --list-live | grep "`readlink "$profile-1-link"`"
55
1c67d639 56# Installing the same package a second time does nothing.
e49951eb 57guix package --bootstrap -p "$profile" -i guile-bootstrap
1c67d639
LC
58test -L "$profile" && test -L "$profile-1-link"
59! test -f "$profile-2-link"
60test -f "$profile/bin/guile"
0afdc485 61
477ee222
LC
62# Collisions are properly flagged (in this case, 'g-wrap' propagates
63# guile@2.2, which conflicts with guile@2.0.)
d8934360 64! guix package --bootstrap -n -p "$profile" -i g-wrap guile@2.0
fc95dc4c 65
477ee222 66guix package --bootstrap -n -p "$profile" -i g-wrap guile@2.0 \
fc95dc4c
LC
67 --allow-collisions
68
5924080d 69# No search path env. var. here.
dbc31ab2
LC
70guix package -p "$profile" --search-paths
71guix package -p "$profile" --search-paths | grep '^export PATH='
72test "`guix package -p "$profile" --search-paths | wc -l`" = 1 # $PATH
73( set -e; set -x; \
74 eval `guix package --search-paths=prefix -p "$PWD/$profile"`; \
75 test "`type -P guile`" = "$PWD/$profile/bin/guile" ; \
76 type -P rm )
5924080d 77
57b86237 78# Exit with 1 when a generation does not exist.
d8934360 79! guix package -p "$profile" --delete-generations=42
57b86237
LC
80
81# Exit with 0 when trying to delete the zeroth generation.
82guix package -p "$profile" --delete-generations=0
0afdc485 83
6447738c 84# Make sure multiple arguments to -i works.
ccabb664 85guix package --bootstrap -i guile zile -p "$profile" -n
6447738c 86
9518856b 87# Make sure the `:' syntax works.
ecb1b610 88guix package --bootstrap -i "glibc:debug" -p "$profile" -n
9518856b 89
aa92cf98 90# Make sure nonexistent outputs are reported.
e49951eb 91guix package --bootstrap -i "guile-bootstrap:out" -p "$profile" -n
d8934360
EB
92! guix package --bootstrap -i "guile-bootstrap:does-not-exist" -p "$profile" -n
93! guix package --bootstrap -i "guile-bootstrap:does-not-exist" -p "$profile"
aa92cf98 94
487cbb01
LC
95# Make sure we get an error when trying to remove something that's not
96# installed.
d8934360 97! guix package --bootstrap -r something-not-installed -p "$profile"
487cbb01 98
64fc89b6 99# Check whether `--list-available' returns something sensible.
03f4ef28 100guix package -p "$profile" -A 'gui.*e' | grep guile
64fc89b6 101
2aa6efb0 102# Check whether `--show' returns something sensible.
3ce9aa44 103guix package --show=guile | grep "^name: guile"
2aa6efb0 104
1b0a86dd 105# Ensure `--show' doesn't fail for packages with non-package inputs.
5e6feee6
EB
106guix package --show=texlive
107
65216315 108# Fail for non-existent packages or package/version pairs.
d8934360
EB
109! guix package --show=does-not-exist
110! guix package --show=emacs@42
65216315 111
1b0a86dd
LC
112# Search.
113LC_MESSAGES=C
114export LC_MESSAGES
115test "`guix package -s "An example GNU package" | grep ^name:`" = \
116 "name: hello"
117test -z "`guix package -s "n0t4r341p4ck4g3"`"
118
db5a9444
LC
119# Search with one and then two regexps.
120# First we get printed circuit boards *and* board games.
121guix package -s '\<board\>' > "$tmpfile"
122grep '^name: pcb' "$tmpfile"
123grep '^name: gnubg' "$tmpfile"
124
125# Second we get only board games.
126guix package -s '\<board\>' -s game > "$tmpfile"
127grep -v '^name: pcb' "$tmpfile" > /dev/null
128grep '^name: gnubg' "$tmpfile"
129
130rm -f "$tmpfile"
131
0fb40579
LC
132# Make sure deprecated packages don't show up: <https://bugs.gnu.org/30566>.
133mkdir "$module_dir"
134cat > "$module_dir/foo.scm"<<EOF
135(define-module (foo)
136 #:use-module (guix packages)
137 #:use-module (gnu packages base))
138
139(define-public deprecated
140 (deprecated-package "fileutils" coreutils))
141EOF
142
143guix build -L "$module_dir" -e '(@ (foo) deprecated)' -n
144test "`guix package -L "$module_dir" -s ^fileutils$ | grep ^name:`" = ""
145
146rm -rf "$module_dir"
147
1b0a86dd
LC
148# Make sure `--search' can display all the packages.
149guix package --search="" > /dev/null
150
d7ddb257
LC
151# There's no generation older than 12 months, so the following command should
152# have no effect.
153generation="`readlink_base "$profile"`"
d8934360 154! guix package -p "$profile" --delete-generations=12m
d7ddb257
LC
155test "`readlink_base "$profile"`" = "$generation"
156
d26eb84d
LC
157# The following command should not delete the current generation, even though
158# it matches the given pattern (see <http://bugs.gnu.org/19978>.) And since
159# there's nothing else to delete, it should just fail.
160guix package --list-generations -p "$profile"
d8934360 161! guix package --bootstrap -p "$profile" --delete-generations=1..
d26eb84d
LC
162test "`readlink_base "$profile"`" = "$generation"
163
c9323a4c
LC
164# Make sure $profile is a GC root at this point.
165real_profile="`readlink -f "$profile"`"
d8934360 166! guix gc -d "$real_profile"
c9323a4c
LC
167test -d "$real_profile"
168
169# Now, let's remove all the symlinks to $real_profile, and make sure
170# $real_profile is no longer a GC root.
171rm "$profile" "$profile"-[0-9]-link
172guix gc -d "$real_profile"
173[ ! -d "$real_profile" ]
174
494dc2fc
LC
175# Package transformations.
176
177# Make sure we get the right version number when using '--with-source'.
178mkdir "$module_dir"
179emacs_tarball="$module_dir/emacs-42.5.9rc7.tar.gz"
180touch "$emacs_tarball"
181guix package -p "$profile" -i emacs --with-source="$emacs_tarball" -n \
182 2> "$tmpfile"
c136da3f 183grep -E 'emacs[[:blank:]]+42\.5\.9rc7' "$tmpfile"
494dc2fc
LC
184rm "$emacs_tarball" "$tmpfile"
185rmdir "$module_dir"
186
8e1907a7
LC
187# Install with package transformations.
188guix install --bootstrap -p "$profile" sed --with-input=sed=guile-bootstrap
189grep "sed=guile-bootstrap" "$profile/manifest"
190test "$(readlink -f "$profile/bin/guile")" \
191 = "$(guix build guile-bootstrap)/bin/guile"
192test ! -f "$profile/bin/sed"
193
194# Make sure the package transformation is preserved.
195guix package --bootstrap -p "$profile" -u
196grep "sed=guile-bootstrap" "$profile/manifest"
197test "$(readlink -f "$profile/bin/guile")" \
198 = "$(guix build guile-bootstrap)/bin/guile"
199test ! -f "$profile/bin/sed"
200rm "$profile" "$profile"-[0-9]-link
201
bc6e291e
LC
202# Profiles with a relative file name. Make sure we don't create dangling
203# symlinks--see bug report at
204# <https://lists.gnu.org/archive/html/guix-devel/2018-07/msg00036.html>.
205mkdir -p "$module_dir/foo"
206( cd "$module_dir" ; \
207 guix package --bootstrap -i guile-bootstrap -p foo/prof )
208test -f "$module_dir/foo/prof/bin/guile"
209rm "$module_dir/foo"/*
210rmdir "$module_dir/foo"
211rmdir "$module_dir"
494dc2fc 212
67668155 213#
0ec1af59 214# Try with the default profile.
67668155 215#
0ec1af59
LC
216
217XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
218export XDG_CACHE_HOME
88371f0d 219HOME="$PWD/t-home-$$"
0ec1af59
LC
220export HOME
221
222mkdir -p "$HOME"
223
59c51be2
LC
224# Get the canonical directory name so that 'guix package' recognizes it.
225HOME="`cd $HOME; pwd -P`"
226
e49951eb 227guix package --bootstrap -i guile-bootstrap
0ec1af59
LC
228test -L "$HOME/.guix-profile"
229test -f "$HOME/.guix-profile/bin/guile"
24e262f0 230
d9307267
LC
231# Move to the empty profile.
232default_profile="`readlink "$HOME/.guix-profile"`"
233for i in `seq 1 3`
234do
d2952326
LC
235 # Make sure the current generation is a GC root.
236 profile_link="`readlink "$default_profile"`"
237 guix gc --list-live | grep "`readlink "$profile_link"`"
238
e49951eb 239 guix package --bootstrap --roll-back
d9307267
LC
240 ! test -f "$HOME/.guix-profile/bin"
241 ! test -f "$HOME/.guix-profile/lib"
bc6e291e 242 test "`readlink "$default_profile"`" = "`basename $default_profile-0-link`"
d9307267 243done
3b9c0020 244
88371f0d
LC
245# Check whether '-p ~/.guix-profile' makes any difference.
246# See <http://bugs.gnu.org/17939>.
d8934360
EB
247! test -e "$HOME/.guix-profile-0-link"
248! test -e "$HOME/.guix-profile-1-link"
88371f0d 249guix package --bootstrap -p "$HOME/.guix-profile" -i guile-bootstrap
d8934360 250! test -e "$HOME/.guix-profile-1-link"
88371f0d 251guix package --bootstrap --roll-back -p "$HOME/.guix-profile"
d8934360 252! test -e "$HOME/.guix-profile-0-link"
88371f0d 253
3b9c0020 254# Extraneous argument.
d8934360 255! guix package install foo-bar
1a43e4dc
LC
256
257# Make sure the "broken pipe" doesn't yield an error.
258# Note: 'pipefail' is a Bash-specific option.
259set -o pipefail || true
260guix package -A g | head -1 2> "$HOME/err1"
261guix package -I | head -1 2> "$HOME/err2"
262test "`cat "$HOME/err1" "$HOME/err2"`" = ""
300868ba
LC
263
264# Make sure '-L' extends the package module search path.
300868ba 265mkdir "$module_dir"
300868ba
LC
266
267cat > "$module_dir/foo.scm"<<EOF
268(define-module (foo)
269 #:use-module (guix packages)
270 #:use-module (gnu packages emacs))
271
272(define-public x
273 (package (inherit emacs)
274 (name "emacs-foo-bar")
cc346931 275 (version "42.77.0")))
300868ba
LC
276EOF
277
278guix package -A emacs-foo-bar -L "$module_dir" | grep 42
1b846da8 279guix package -i emacs-foo-bar@42 -n -L "$module_dir"
8689901f
LC
280
281# Same thing using the 'GUIX_PACKAGE_PATH' environment variable.
282GUIX_PACKAGE_PATH="$module_dir"
283export GUIX_PACKAGE_PATH
284guix package -A emacs-foo-bar | grep 42
1b846da8 285guix package -i emacs-foo-bar@42 -n
ee06af5b 286
002d17dc
RV
287# Make sure GUIX_PACKAGE_PATH/'-L' takes precedence in case of duplicate packages.
288cat > "$module_dir/bar.scm"<<EOF
289(define-module (bar)
290 #:use-module (guix packages))
291
292(define-public hello
293 (package (inherit (@@ (gnu packages base) hello))
294 (synopsis "an overridden version of GNU hello")))
295EOF
296
297guix package -i hello -n 2>&1 | grep choosing.*bar.scm
298( unset GUIX_PACKAGE_PATH; \
299 guix package -i hello -n -L "$module_dir" 2>&1 | grep choosing.*bar.scm )
300
ee06af5b
LC
301# Make sure patches that live under $GUIX_PACKAGE_PATH are found.
302cat > "$module_dir/emacs.patch"<<EOF
303This is a fake patch.
304EOF
305cat > "$module_dir/foo.scm"<<EOF
306(define-module (foo)
307 #:use-module (guix packages)
308 #:use-module (gnu packages)
309 #:use-module (gnu packages emacs))
310
311(define-public x
312 (package (inherit emacs)
313 (source (origin (inherit (package-source emacs))
314 (patches (list (search-patch "emacs.patch")))))
315 (name "emacs-foo-bar-patched")
cc346931 316 (version "42.42.42")))
5763ad92
LC
317
318(define-public y
319 (package (inherit emacs)
320 (name "super-non-portable-emacs")
321 (supported-systems '("foobar64-hurd"))))
ee06af5b
LC
322EOF
323guix package -i emacs-foo-bar-patched -n
324
223d7939
LC
325# Same when -L is used.
326( unset GUIX_PACKAGE_PATH; \
327 guix package -L "$module_dir" -i emacs-foo-bar-patched -n )
328
0d279400
DT
329# Make sure installing from a file works.
330cat > "$module_dir/package.scm"<<EOF
331(use-modules (gnu))
332(use-package-modules bootstrap)
333
334%bootstrap-guile
335EOF
336guix package --bootstrap --install-from-file="$module_dir/package.scm"
337
f9c04003
LC
338# Make sure an error is raised if the file doesn't return a package.
339cat > "$module_dir/package.scm"<<EOF
340(use-modules (gnu packages base))
341
342(define my-package coreutils) ;returns *unspecified*
343EOF
d8934360 344! guix package --bootstrap --install-from-file="$module_dir/package.scm"
f9c04003
LC
345
346rm "$module_dir/package.scm"
347
5763ad92
LC
348# This one should not show up in searches since it's no supported on the
349# current system.
350test "`guix package -A super-non-portable-emacs`" = ""
351test "`guix package -s super-non-portable-emacs | grep ^systems:`" = "systems: "
352
fc8fdcf5
LC
353# Don't upgrade packages marked for removal: <http://bugs.gnu.org/27262>.
354guix package --bootstrap -p "$profile" -i guile-bootstrap
355
356cat > "$module_dir/foo.scm"<<EOF
357(define-module (foo)
358 #:use-module (guix)
359 #:use-module (gnu packages bootstrap))
360
361(define-public x
362 (package (inherit %bootstrap-guile) (version "42")))
363EOF
364
365guix package --bootstrap -p "$profile" -r guile-bootstrap -u guile
366test ! -f "$profile/bin/guile"
367guix package --bootstrap -p "$profile" --roll-back
368test -f "$profile/bin/guile"
369rm "$profile-2-link"
370
847391fe
DP
371unset GUIX_PACKAGE_PATH
372
fc8fdcf5 373
847391fe 374# Using 'GUIX_BUILD_OPTIONS'.
847391fe 375available="`guix package -A | sort`"
442a6ff5 376GUIX_BUILD_OPTIONS="--dry-run --no-grafts"
847391fe
DP
377export GUIX_BUILD_OPTIONS
378
379# Make sure $GUIX_BUILD_OPTIONS is not simply appended to the command-line,
380# which would break 'guix package -A' and similar.
381available2="`guix package -A | sort`"
382test "$available2" = "$available"
383guix package -I
1b676447 384
442a6ff5
LC
385# Restore '--no-grafts', which makes sure we don't end up building stuff when
386# '--dry-run' is passed.
387GUIX_BUILD_OPTIONS="--no-grafts"
1b676447 388
90ea8b16
LC
389# Install using the "imperative model", export a manifest, instantiate it, and
390# make sure we get the same profile.
391guix package --bootstrap -i guile-bootstrap --without-tests=foo
392profile_directory="$(readlink -f "$default_profile")"
393guix package --export-manifest > "$tmpfile"
394grep 'without-tests.*foo' "$tmpfile"
395guix package --rollback --bootstrap
396guix package --bootstrap -m "$tmpfile"
397test "$(readlink -f "$default_profile")" = "$profile_directory"
398guix package --export-manifest > "$tmpfile.2nd"
399cmp "$tmpfile" "$tmpfile.2nd"
400
401rm -f "$tmpfile.2nd"
402guix package --rollback --bootstrap
403
5f1087c4 404# Applying a manifest file.
1b676447
DT
405cat > "$module_dir/manifest.scm"<<EOF
406(use-package-modules bootstrap)
407
408(packages->manifest (list %bootstrap-guile))
409EOF
410guix package --bootstrap -m "$module_dir/manifest.scm"
411guix package -I | grep guile
412test `guix package -I | wc -l` -eq 1
9fd7b050
LC
413
414# Export a manifest, instantiate it, and make sure we get the same profile.
415profile_directory="$(readlink -f "$default_profile")"
416guix package --export-manifest > "$tmpfile"
417guix package --rollback --bootstrap
418guix package --bootstrap -m "$tmpfile"
419test "$(readlink -f "$default_profile")" = "$profile_directory"
420
811b21fb
LC
421guix package --rollback --bootstrap
422
bf9206d8
LC
423# Applying two manifests.
424cat > "$module_dir/manifest2.scm"<<EOF
425(use-modules (gnu packages bootstrap) (guix))
426(define p (package (inherit %bootstrap-guile) (name "eliug")))
427(packages->manifest (list p))
428EOF
429guix package --bootstrap \
430 -m "$module_dir/manifest.scm" -m "$module_dir/manifest2.scm"
431guix package -I | grep guile
432guix package -I | grep eliug
433test `guix package -I | wc -l` -eq 2
434guix package --rollback --bootstrap
435
811b21fb
LC
436# Applying a manifest file with inferior packages.
437cat > "$module_dir/manifest.scm"<<EOF
438(use-modules (guix inferior))
439
440(define i
441 (open-inferior "$abs_top_srcdir" #:command "scripts/guix"))
442
443(let ((guile (car (lookup-inferior-packages i "guile-bootstrap"))))
444 (packages->manifest (list guile)))
445EOF
446guix package --bootstrap -m "$module_dir/manifest.scm"
447guix package -I | grep guile
448test `guix package -I | wc -l` -eq 1
5f1087c4
LC
449
450# Error reporting.
451cat > "$module_dir/manifest.scm"<<EOF
452(use-package-modules bootstrap)
453(packages->manifest
454 (list %bootstrap-guile
455 wonderful-package-that-does-not-exist))
456EOF
457if guix package --bootstrap -n -m "$module_dir/manifest.scm" \
458 2> "$module_dir/stderr"
459then false
460else
461 cat "$module_dir/stderr"
524c9800 462 grep "manifest.scm:[1-4]:.*wonderful-package.*: unbound variable" \
5f1087c4
LC
463 "$module_dir/stderr"
464fi
387e6b9e
CM
465
466# Verify that package outputs are included in search results.
467rm -rf "$module_dir"
468mkdir "$module_dir"
469cat > "$module_dir/foo.scm"<<EOF
470(define-module (foo)
471 #:use-module (guix packages)
472 #:use-module (guix build-system trivial))
473
474(define-public dummy-package
475 (package
476 (name "dummy-package")
477 (version "dummy-version")
478 (outputs '("out" "dummy-output"))
479 (source #f)
3972dc5d 480 ;; Without a real build system, the "guix package -s" command will fail.
387e6b9e
CM
481 (build-system trivial-build-system)
482 (synopsis "dummy-synopsis")
483 (description "dummy-description")
484 (home-page "https://dummy-home-page")
485 (license #f)))
486EOF
487guix package -L "$module_dir" -s dummy-output > /tmp/out
488test "`guix package -L "$module_dir" -s dummy-output | grep ^name:`" = "name: dummy-package"
489rm -rf "$module_dir"
3972dc5d
LC
490
491# Make sure we can see user profiles.
492guix package --list-profiles | grep "$profile"
493guix package --list-profiles | grep '\.guix-profile'
b1fb6634
JL
494
495# Make sure we can properly lock a profile.
496mkdir "$module_dir"
dac7928d
LC
497echo "(open-output-file \"$module_dir/ready\") (sleep 60)" \
498 > "$module_dir/manifest.scm"
b1fb6634
JL
499guix package -m "$module_dir/manifest.scm" -p "$module_dir/profile" &
500pid=$!
dac7928d 501while [ ! -f "$module_dir/ready" ] ; do sleep 0.5 ; done
b1fb6634
JL
502if guix install emacs -p "$module_dir/profile"; then kill $pid; false; else true; fi
503kill $pid