epiphany w/ gtk4 and webkitgtk 2.38
[jackhill/guix/guix.git] / tests / guix-environment.sh
CommitLineData
cad25264 1# GNU Guix --- Functional package management for GNU
4d79f072 2# Copyright © 2015, 2016, 2017, 2018, 2019, 2021 Ludovic Courtès <ludo@gnu.org>
cad25264
LC
3#
4# This file is part of GNU Guix.
5#
6# GNU Guix is free software; you can redistribute it and/or modify it
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#
11# GNU Guix is distributed in the hope that it will be useful, but
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
17# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19#
20# Test 'guix environment'.
21#
22
23set -e
24
25guix environment --version
26
27tmpdir="t-guix-environment-$$"
f943c317
LC
28gcroot="t-guix-environment-gc-root-$$"
29trap 'rm -r "$tmpdir"; rm -f "$gcroot"' EXIT
cad25264
LC
30
31mkdir "$tmpdir"
32
b485f756
LC
33# 'guix environment' launches /bin/sh if 'SHELL' is unset, so export 'SHELL'
34# since we know it's valid (build environments lack /bin/sh.)
35export SHELL
36
cad25264 37# Check the environment variables for the bootstrap Guile.
779aa003
DT
38guix environment --bootstrap --ad-hoc guile-bootstrap --pure \
39 --search-paths > "$tmpdir/a"
40guix environment --bootstrap --ad-hoc guile-bootstrap:out --pure \
41 --search-paths > "$tmpdir/b"
cad25264
LC
42
43# $PATH must appear in the search paths, and nothing else.
779aa003 44grep -E '^export PATH=.*profile/bin' "$tmpdir/a"
cad25264
LC
45test "`wc -l < "$tmpdir/a"`" = 1
46
779aa003
DT
47# Guile must be on $PATH.
48test -x `sed -r 's/^export PATH="(.*)"/\1/' "$tmpdir/a"`/guile
49
417c39f1
LC
50cmp "$tmpdir/a" "$tmpdir/b"
51
dca58219 52# Check '--preserve'.
e6e599fa
LC
53GUIX_TEST_ABC=1
54GUIX_TEST_DEF=2
55GUIX_TEST_XYZ=3
56export GUIX_TEST_ABC GUIX_TEST_DEF GUIX_TEST_XYZ
57guix environment --bootstrap --ad-hoc guile-bootstrap --pure \
dca58219 58 --preserve='^GUIX_TEST_A' --preserve='^GUIX_TEST_D' \
e6e599fa
LC
59 -- "$SHELL" -c set > "$tmpdir/a"
60grep '^PATH=' "$tmpdir/a"
61grep '^GUIX_TEST_ABC=' "$tmpdir/a"
62grep '^GUIX_TEST_DEF=' "$tmpdir/a"
d8934360 63! grep '^GUIX_TEST_XYZ=' "$tmpdir/a"
e6e599fa 64
4931dfcd 65# Make sure the exit value is preserved.
779aa003
DT
66if guix environment --bootstrap --ad-hoc guile-bootstrap --pure \
67 -- guile -c '(exit 42)'
1de2fe95
DT
68then
69 false
70else
71 test $? = 42
72fi
73
20185522
LC
74# Make sure 'GUIX_ENVIRONMENT' points to the profile.
75guix environment --bootstrap --ad-hoc guile-bootstrap --pure \
76 -- "$SHELL" -c 'test -f "$GUIX_ENVIRONMENT/bin/guile"'
77
267379f8
DT
78# Make sure 'GUIX_ENVIRONMENT' points to the profile when building from a
79# manifest.
80echo "(use-modules (guix profiles) (gnu packages bootstrap))
81
82(packages->manifest (list %bootstrap-guile))
83" > $tmpdir/manifest.scm
84guix environment --bootstrap --manifest=$tmpdir/manifest.scm --pure \
85 -- "$SHELL" -c 'test -f "$GUIX_ENVIRONMENT/bin/guile"'
86
d76df98f
LC
87# Make sure '--manifest' can be specified multiple times.
88cat > "$tmpdir/manifest2.scm" <<EOF
89(use-modules (guix) (guix profiles)
90 (guix build-system trivial)
91 (gnu packages bootstrap))
92
93(packages->manifest
94 (list (package
95 (inherit %bootstrap-guile)
96 (name "eliug")
97 (build-system trivial-build-system)
98 (arguments
99 (quasiquote
100 (#:guile ,%bootstrap-guile
101 #:builder
102 (begin
103 (mkdir %output)
104 (mkdir (string-append %output "/eliug")))))))))
105EOF
106guix environment --bootstrap -m "$tmpdir/manifest.scm" \
107 -m "$tmpdir/manifest2.scm" --pure \
108 -- "$SHELL" -c 'test -f "$GUIX_ENVIRONMENT/bin/guile" && test -d "$GUIX_ENVIRONMENT/eliug"'
109
f943c317
LC
110# Make sure '-r' works as expected.
111rm -f "$gcroot"
112expected="`guix environment --bootstrap --ad-hoc guile-bootstrap \
113 -- "$SHELL" -c 'echo $GUIX_ENVIRONMENT'`"
114guix environment --bootstrap -r "$gcroot" --ad-hoc guile-bootstrap \
115 -- guile -c 1
116test `readlink "$gcroot"` = "$expected"
117
118# Make sure '-r' is idempotent.
119guix environment --bootstrap -r "$gcroot" --ad-hoc guile-bootstrap \
120 -- guile -c 1
121test `readlink "$gcroot"` = "$expected"
10208952
LC
122
123# Make sure '-p' works as expected.
124test $(guix environment -p "$gcroot" -- "$SHELL" -c 'echo $GUIX_ENVIRONMENT') = "$expected"
125paths1="$(guix environment -p "$gcroot" --search-paths)"
126paths2="$(guix environment --bootstrap --ad-hoc guile-bootstrap --search-paths)"
127test "$paths1" = "$paths2"
128
840f38ba 129rm "$gcroot"
f943c317 130
4d79f072
JF
131# Try '-r' with a relative file name.
132(cd "$tmpdir"; mkdir "gc-root";
133 guix environment --bootstrap -r "gc-root/r" --ad-hoc guile-bootstrap \
134 -- guile -c 1;
135 rm "gc-root/r"; rmdir "gc-root")
136
840f38ba
LC
137# Same with an absolute file name.
138guix environment --bootstrap -r "$PWD/$gcroot" --ad-hoc guile-bootstrap \
139 -- guile -c 1
140test `readlink "$gcroot"` = "$expected"
f943c317 141
40d71e44
LC
142case "`uname -m`" in
143 x86_64)
144 # On x86_64, we should be able to create a 32-bit environment.
145 guix environment --bootstrap --ad-hoc guile-bootstrap --pure \
146 -- guile -c '(exit (string-prefix? "x86_64" %host-type))'
147 guix environment --bootstrap --ad-hoc guile-bootstrap --pure \
148 -s i686-linux \
149 -- guile -c '(exit (string-prefix? "i686" %host-type))'
150 ;;
151 *)
152 echo "nothing to do" >&2
153 ;;
154esac
155
afd06f60
LC
156# Make sure we can build the environment of 'guix'. There may be collisions
157# in its profile (e.g., for 'gzip'), but we have to accept them.
158guix environment guix --bootstrap -n
159
a93c1606
LC
160# Try program transformation options.
161mkdir "$tmpdir/emacs-36.8"
162drv="`guix environment --ad-hoc emacs -n 2>&1 | grep 'emacs.*\.drv'`"
163transformed_drv="`guix environment --ad-hoc emacs --with-source="$tmpdir/emacs-36.8" -n 2>&1 | grep 'emacs.*\.drv'`"
164test -n "$drv"
165test "$drv" != "$transformed_drv"
166case "$transformed_drv" in
167 *-emacs-36.8.drv) true;;
168 *) false;;
169esac
170rmdir "$tmpdir/emacs-36.8"
171
d108f597
LC
172# Transformation options without '--ad-hoc'.
173drv="`guix environment -n emacs-geiser 2>&1 | grep '\.drv$'`"
174transformed_drv="`guix environment -n emacs-geiser \
175 --with-input=emacs-minimal=vim 2>&1 | grep '\.drv$'`"
176test "$drv" != "$transformed_drv"
177case "$drv" in
178 *-emacs-minimal*.drv*) true;;
179 *) false;;
180esac
181case "$transformed_drv" in
182 *-emacs-minimal*.drv*) false;;
183 *) true;;
184esac
185case "$transformed_drv" in
186 *-vim*.drv*) true;;
187 *) false;;
188esac
189
190
cad25264
LC
191if guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' 2> /dev/null
192then
193 # Compute the build environment for the initial GNU Make.
779aa003 194 guix environment --bootstrap --no-substitutes --search-paths --pure \
03d76577 195 -e '(@ (guix tests) gnu-make-for-tests)' > "$tmpdir/a"
779aa003
DT
196
197 # Make sure bootstrap binaries are in the profile.
198 profile=`grep "^export PATH" "$tmpdir/a" | sed -r 's|^.*="(.*)/bin"|\1|'`
cad25264
LC
199
200 # Make sure the bootstrap binaries are all listed where they belong.
779aa003 201 grep -E "^export PATH=\"$profile/bin\"" "$tmpdir/a"
2a3cd4ee 202 grep -E "^export C_INCLUDE_PATH=\"$profile/include\"" "$tmpdir/a"
779aa003
DT
203 grep -E "^export LIBRARY_PATH=\"$profile/lib\"" "$tmpdir/a"
204 for dep in bootstrap-binaries-0 gcc-bootstrap-0 glibc-bootstrap-0
205 do
206 guix gc --references "$profile" | grep "$dep"
207 done
cad25264
LC
208
209 # 'make-boot0' itself must not be listed.
d8934360 210 ! guix gc --references "$profile" | grep make-boot0
cad25264
LC
211
212 # Make sure that the shell spawned with '--exec' sees the same environment
213 # as returned by '--search-paths'.
779aa003 214 guix environment --bootstrap --no-substitutes --pure \
03d76577 215 -e '(@ (guix tests) gnu-make-for-tests)' \
2a3cd4ee
LC
216 -- /bin/sh -c 'echo $PATH $C_INCLUDE_PATH $LIBRARY_PATH' > "$tmpdir/b"
217 ( . "$tmpdir/a" ; echo $PATH $C_INCLUDE_PATH $LIBRARY_PATH ) > "$tmpdir/c"
cad25264 218 cmp "$tmpdir/b" "$tmpdir/c"
6b6298ae
LC
219
220 rm "$tmpdir"/*
221
6b6298ae 222 # The following test assumes 'make-boot0' has a "debug" output.
03d76577 223 make_boot0_debug="`guix build -e '(@ (guix tests) gnu-make-for-tests)' | grep -e -debug`"
6b6298ae
LC
224 test "x$make_boot0_debug" != "x"
225
226 # Make sure the "debug" output is not listed.
d8934360 227 ! guix gc --references "$profile" | grep "$make_boot0_debug"
cc90fbbf
DT
228
229 # Compute the build environment for the initial GNU Make, but add in the
230 # bootstrap Guile as an ad-hoc addition.
779aa003 231 guix environment --bootstrap --no-substitutes --search-paths --pure \
03d76577 232 -e '(@ (guix tests) gnu-make-for-tests)' \
779aa003
DT
233 --ad-hoc guile-bootstrap > "$tmpdir/a"
234 profile=`grep "^export PATH" "$tmpdir/a" | sed -r 's|^.*="(.*)/bin"|\1|'`
cc90fbbf
DT
235
236 # Make sure the bootstrap binaries are all listed where they belong.
779aa003 237 grep -E "^export PATH=\"$profile/bin\"" "$tmpdir/a"
2a3cd4ee 238 grep -E "^export C_INCLUDE_PATH=\"$profile/include\"" "$tmpdir/a"
779aa003
DT
239 grep -E "^export LIBRARY_PATH=\"$profile/lib\"" "$tmpdir/a"
240 for dep in bootstrap-binaries-0 gcc-bootstrap-0 glibc-bootstrap-0 \
241 guile-bootstrap
242 do
243 guix gc --references "$profile" | grep "$dep"
244 done
245
246 # Make sure a package list with plain package objects and package+output
247 # tuples can be used with -e.
c9c282ce 248 expr_list_test_code="
03d76577 249(list (@ (guix tests) gnu-make-for-tests)
779aa003 250 (list (@ (gnu packages bootstrap) %bootstrap-guile) \"out\"))"
c9c282ce 251
779aa003
DT
252 guix environment --bootstrap --ad-hoc --no-substitutes --search-paths \
253 --pure -e "$expr_list_test_code" > "$tmpdir/a"
254 profile=`grep "^export PATH" "$tmpdir/a" | sed -r 's|^.*="(.*)/bin"|\1|'`
c9c282ce 255
03d76577 256 for dep in make-test-boot0 guile-bootstrap
779aa003
DT
257 do
258 guix gc --references "$profile" | grep "$dep"
259 done
cad25264 260fi