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