2015-06-30 12:35:27 +02:00
|
|
|
# GNU Guix --- Functional package management for GNU
|
2019-02-15 08:45:57 +01:00
|
|
|
# Copyright © 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
2015-06-30 12:35:27 +02:00
|
|
|
#
|
|
|
|
# This file is part of GNU Guix.
|
|
|
|
#
|
|
|
|
# GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
# your option) any later version.
|
|
|
|
#
|
|
|
|
# GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#
|
|
|
|
# Test 'guix environment'.
|
|
|
|
#
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
guix environment --version
|
|
|
|
|
|
|
|
tmpdir="t-guix-environment-$$"
|
2016-12-20 19:06:22 +01:00
|
|
|
gcroot="t-guix-environment-gc-root-$$"
|
|
|
|
trap 'rm -r "$tmpdir"; rm -f "$gcroot"' EXIT
|
2015-06-30 12:35:27 +02:00
|
|
|
|
|
|
|
mkdir "$tmpdir"
|
|
|
|
|
2015-11-02 23:42:31 +01:00
|
|
|
# 'guix environment' launches /bin/sh if 'SHELL' is unset, so export 'SHELL'
|
|
|
|
# since we know it's valid (build environments lack /bin/sh.)
|
|
|
|
export SHELL
|
|
|
|
|
2015-06-30 12:35:27 +02:00
|
|
|
# Check the environment variables for the bootstrap Guile.
|
2016-02-12 21:39:26 +01:00
|
|
|
guix environment --bootstrap --ad-hoc guile-bootstrap --pure \
|
|
|
|
--search-paths > "$tmpdir/a"
|
|
|
|
guix environment --bootstrap --ad-hoc guile-bootstrap:out --pure \
|
|
|
|
--search-paths > "$tmpdir/b"
|
2015-06-30 12:35:27 +02:00
|
|
|
|
|
|
|
# $PATH must appear in the search paths, and nothing else.
|
2016-02-12 21:39:26 +01:00
|
|
|
grep -E '^export PATH=.*profile/bin' "$tmpdir/a"
|
2015-06-30 12:35:27 +02:00
|
|
|
test "`wc -l < "$tmpdir/a"`" = 1
|
|
|
|
|
2016-02-12 21:39:26 +01:00
|
|
|
# Guile must be on $PATH.
|
|
|
|
test -x `sed -r 's/^export PATH="(.*)"/\1/' "$tmpdir/a"`/guile
|
|
|
|
|
2015-06-30 23:16:42 +02:00
|
|
|
cmp "$tmpdir/a" "$tmpdir/b"
|
|
|
|
|
2019-03-04 14:19:55 +01:00
|
|
|
# Check '--preserve'.
|
2019-02-15 08:45:57 +01:00
|
|
|
GUIX_TEST_ABC=1
|
|
|
|
GUIX_TEST_DEF=2
|
|
|
|
GUIX_TEST_XYZ=3
|
|
|
|
export GUIX_TEST_ABC GUIX_TEST_DEF GUIX_TEST_XYZ
|
|
|
|
guix environment --bootstrap --ad-hoc guile-bootstrap --pure \
|
2019-03-04 14:19:55 +01:00
|
|
|
--preserve='^GUIX_TEST_A' --preserve='^GUIX_TEST_D' \
|
2019-02-15 08:45:57 +01:00
|
|
|
-- "$SHELL" -c set > "$tmpdir/a"
|
|
|
|
grep '^PATH=' "$tmpdir/a"
|
|
|
|
grep '^GUIX_TEST_ABC=' "$tmpdir/a"
|
|
|
|
grep '^GUIX_TEST_DEF=' "$tmpdir/a"
|
|
|
|
if grep '^GUIX_TEST_XYZ=' "$tmpdir/a"; then false; else true; fi
|
|
|
|
|
2015-07-07 22:51:33 +02:00
|
|
|
# Make sure the exit value is preserved.
|
2016-02-12 21:39:26 +01:00
|
|
|
if guix environment --bootstrap --ad-hoc guile-bootstrap --pure \
|
|
|
|
-- guile -c '(exit 42)'
|
2015-10-09 18:11:24 +02:00
|
|
|
then
|
|
|
|
false
|
|
|
|
else
|
|
|
|
test $? = 42
|
|
|
|
fi
|
|
|
|
|
2016-07-26 17:59:25 +02:00
|
|
|
# Make sure 'GUIX_ENVIRONMENT' points to the profile.
|
|
|
|
guix environment --bootstrap --ad-hoc guile-bootstrap --pure \
|
|
|
|
-- "$SHELL" -c 'test -f "$GUIX_ENVIRONMENT/bin/guile"'
|
|
|
|
|
2018-02-16 02:54:28 +01:00
|
|
|
# Make sure 'GUIX_ENVIRONMENT' points to the profile when building from a
|
|
|
|
# manifest.
|
|
|
|
echo "(use-modules (guix profiles) (gnu packages bootstrap))
|
|
|
|
|
|
|
|
(packages->manifest (list %bootstrap-guile))
|
|
|
|
" > $tmpdir/manifest.scm
|
|
|
|
guix environment --bootstrap --manifest=$tmpdir/manifest.scm --pure \
|
|
|
|
-- "$SHELL" -c 'test -f "$GUIX_ENVIRONMENT/bin/guile"'
|
|
|
|
|
2019-06-29 23:15:11 +02:00
|
|
|
# if not sharing CWD, chdir home
|
|
|
|
(
|
|
|
|
cd "$tmpdir" \
|
|
|
|
&& guix environment --bootstrap --container --no-cwd --user=foo \
|
|
|
|
--ad-hoc guile-bootstrap --pure \
|
|
|
|
-- /bin/sh -c 'test $(pwd) == "/home/foo" -a ! -d '"$tmpdir"
|
|
|
|
)
|
|
|
|
|
2016-12-20 19:06:22 +01:00
|
|
|
# Make sure '-r' works as expected.
|
|
|
|
rm -f "$gcroot"
|
|
|
|
expected="`guix environment --bootstrap --ad-hoc guile-bootstrap \
|
|
|
|
-- "$SHELL" -c 'echo $GUIX_ENVIRONMENT'`"
|
|
|
|
guix environment --bootstrap -r "$gcroot" --ad-hoc guile-bootstrap \
|
|
|
|
-- guile -c 1
|
|
|
|
test `readlink "$gcroot"` = "$expected"
|
|
|
|
|
|
|
|
# Make sure '-r' is idempotent.
|
|
|
|
guix environment --bootstrap -r "$gcroot" --ad-hoc guile-bootstrap \
|
|
|
|
-- guile -c 1
|
|
|
|
test `readlink "$gcroot"` = "$expected"
|
2017-01-18 16:57:56 +01:00
|
|
|
rm "$gcroot"
|
2016-12-20 19:06:22 +01:00
|
|
|
|
2017-01-18 16:57:56 +01:00
|
|
|
# Same with an absolute file name.
|
|
|
|
guix environment --bootstrap -r "$PWD/$gcroot" --ad-hoc guile-bootstrap \
|
|
|
|
-- guile -c 1
|
|
|
|
test `readlink "$gcroot"` = "$expected"
|
2016-12-20 19:06:22 +01:00
|
|
|
|
2016-06-05 00:04:05 +02:00
|
|
|
case "`uname -m`" in
|
|
|
|
x86_64)
|
|
|
|
# On x86_64, we should be able to create a 32-bit environment.
|
|
|
|
guix environment --bootstrap --ad-hoc guile-bootstrap --pure \
|
|
|
|
-- guile -c '(exit (string-prefix? "x86_64" %host-type))'
|
|
|
|
guix environment --bootstrap --ad-hoc guile-bootstrap --pure \
|
|
|
|
-s i686-linux \
|
|
|
|
-- guile -c '(exit (string-prefix? "i686" %host-type))'
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "nothing to do" >&2
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2017-06-21 16:50:59 +02:00
|
|
|
# Make sure we can build the environment of 'guix'. There may be collisions
|
|
|
|
# in its profile (e.g., for 'gzip'), but we have to accept them.
|
|
|
|
guix environment guix --bootstrap -n
|
|
|
|
|
2018-12-17 22:47:44 +01:00
|
|
|
# Try program transformation options.
|
|
|
|
mkdir "$tmpdir/emacs-36.8"
|
|
|
|
drv="`guix environment --ad-hoc emacs -n 2>&1 | grep 'emacs.*\.drv'`"
|
|
|
|
transformed_drv="`guix environment --ad-hoc emacs --with-source="$tmpdir/emacs-36.8" -n 2>&1 | grep 'emacs.*\.drv'`"
|
|
|
|
test -n "$drv"
|
|
|
|
test "$drv" != "$transformed_drv"
|
|
|
|
case "$transformed_drv" in
|
|
|
|
*-emacs-36.8.drv) true;;
|
|
|
|
*) false;;
|
|
|
|
esac
|
|
|
|
rmdir "$tmpdir/emacs-36.8"
|
|
|
|
|
2019-05-07 14:38:06 +02:00
|
|
|
# Transformation options without '--ad-hoc'.
|
|
|
|
drv="`guix environment -n emacs-geiser 2>&1 | grep '\.drv$'`"
|
|
|
|
transformed_drv="`guix environment -n emacs-geiser \
|
|
|
|
--with-input=emacs-minimal=vim 2>&1 | grep '\.drv$'`"
|
|
|
|
test "$drv" != "$transformed_drv"
|
|
|
|
case "$drv" in
|
|
|
|
*-emacs-minimal*.drv*) true;;
|
|
|
|
*) false;;
|
|
|
|
esac
|
|
|
|
case "$transformed_drv" in
|
|
|
|
*-emacs-minimal*.drv*) false;;
|
|
|
|
*) true;;
|
|
|
|
esac
|
|
|
|
case "$transformed_drv" in
|
|
|
|
*-vim*.drv*) true;;
|
|
|
|
*) false;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
2015-06-30 12:35:27 +02:00
|
|
|
if guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' 2> /dev/null
|
|
|
|
then
|
|
|
|
# Compute the build environment for the initial GNU Make.
|
2016-02-12 21:39:26 +01:00
|
|
|
guix environment --bootstrap --no-substitutes --search-paths --pure \
|
2019-06-14 21:26:22 +02:00
|
|
|
-e '(@ (guix tests) gnu-make-for-tests)' > "$tmpdir/a"
|
2016-02-12 21:39:26 +01:00
|
|
|
|
|
|
|
# Make sure bootstrap binaries are in the profile.
|
|
|
|
profile=`grep "^export PATH" "$tmpdir/a" | sed -r 's|^.*="(.*)/bin"|\1|'`
|
2015-06-30 12:35:27 +02:00
|
|
|
|
|
|
|
# Make sure the bootstrap binaries are all listed where they belong.
|
2016-02-12 21:39:26 +01:00
|
|
|
grep -E "^export PATH=\"$profile/bin\"" "$tmpdir/a"
|
|
|
|
grep -E "^export CPATH=\"$profile/include\"" "$tmpdir/a"
|
|
|
|
grep -E "^export LIBRARY_PATH=\"$profile/lib\"" "$tmpdir/a"
|
|
|
|
for dep in bootstrap-binaries-0 gcc-bootstrap-0 glibc-bootstrap-0
|
|
|
|
do
|
|
|
|
guix gc --references "$profile" | grep "$dep"
|
|
|
|
done
|
2015-06-30 12:35:27 +02:00
|
|
|
|
|
|
|
# 'make-boot0' itself must not be listed.
|
2016-02-12 21:39:26 +01:00
|
|
|
if guix gc --references "$profile" | grep make-boot0
|
|
|
|
then false; else true; fi
|
2015-06-30 12:35:27 +02:00
|
|
|
|
|
|
|
# Make sure that the shell spawned with '--exec' sees the same environment
|
|
|
|
# as returned by '--search-paths'.
|
2016-02-12 21:39:26 +01:00
|
|
|
guix environment --bootstrap --no-substitutes --pure \
|
2019-06-14 21:26:22 +02:00
|
|
|
-e '(@ (guix tests) gnu-make-for-tests)' \
|
2015-10-09 18:11:24 +02:00
|
|
|
-- /bin/sh -c 'echo $PATH $CPATH $LIBRARY_PATH' > "$tmpdir/b"
|
2015-06-30 12:35:27 +02:00
|
|
|
( . "$tmpdir/a" ; echo $PATH $CPATH $LIBRARY_PATH ) > "$tmpdir/c"
|
|
|
|
cmp "$tmpdir/b" "$tmpdir/c"
|
2015-06-30 23:23:06 +02:00
|
|
|
|
|
|
|
rm "$tmpdir"/*
|
|
|
|
|
|
|
|
# The following test assumes 'make-boot0' has a "debug" output.
|
2019-06-14 21:26:22 +02:00
|
|
|
make_boot0_debug="`guix build -e '(@ (guix tests) gnu-make-for-tests)' | grep -e -debug`"
|
2015-06-30 23:23:06 +02:00
|
|
|
test "x$make_boot0_debug" != "x"
|
|
|
|
|
|
|
|
# Make sure the "debug" output is not listed.
|
2016-02-12 21:39:26 +01:00
|
|
|
if guix gc --references "$profile" | grep "$make_boot0_debug"
|
|
|
|
then false; else true; fi
|
2015-10-26 03:33:33 +01:00
|
|
|
|
|
|
|
# Compute the build environment for the initial GNU Make, but add in the
|
|
|
|
# bootstrap Guile as an ad-hoc addition.
|
2016-02-12 21:39:26 +01:00
|
|
|
guix environment --bootstrap --no-substitutes --search-paths --pure \
|
2019-06-14 21:26:22 +02:00
|
|
|
-e '(@ (guix tests) gnu-make-for-tests)' \
|
2016-02-12 21:39:26 +01:00
|
|
|
--ad-hoc guile-bootstrap > "$tmpdir/a"
|
|
|
|
profile=`grep "^export PATH" "$tmpdir/a" | sed -r 's|^.*="(.*)/bin"|\1|'`
|
2015-10-26 03:33:33 +01:00
|
|
|
|
|
|
|
# Make sure the bootstrap binaries are all listed where they belong.
|
2016-02-12 21:39:26 +01:00
|
|
|
grep -E "^export PATH=\"$profile/bin\"" "$tmpdir/a"
|
|
|
|
grep -E "^export CPATH=\"$profile/include\"" "$tmpdir/a"
|
|
|
|
grep -E "^export LIBRARY_PATH=\"$profile/lib\"" "$tmpdir/a"
|
|
|
|
for dep in bootstrap-binaries-0 gcc-bootstrap-0 glibc-bootstrap-0 \
|
|
|
|
guile-bootstrap
|
|
|
|
do
|
|
|
|
guix gc --references "$profile" | grep "$dep"
|
|
|
|
done
|
|
|
|
|
|
|
|
# Make sure a package list with plain package objects and package+output
|
|
|
|
# tuples can be used with -e.
|
2015-10-31 02:02:51 +01:00
|
|
|
expr_list_test_code="
|
2019-06-14 21:26:22 +02:00
|
|
|
(list (@ (guix tests) gnu-make-for-tests)
|
2016-02-12 21:39:26 +01:00
|
|
|
(list (@ (gnu packages bootstrap) %bootstrap-guile) \"out\"))"
|
2015-10-31 02:02:51 +01:00
|
|
|
|
2016-02-12 21:39:26 +01:00
|
|
|
guix environment --bootstrap --ad-hoc --no-substitutes --search-paths \
|
|
|
|
--pure -e "$expr_list_test_code" > "$tmpdir/a"
|
|
|
|
profile=`grep "^export PATH" "$tmpdir/a" | sed -r 's|^.*="(.*)/bin"|\1|'`
|
2015-10-31 02:02:51 +01:00
|
|
|
|
2019-06-14 21:26:22 +02:00
|
|
|
for dep in make-test-boot0 guile-bootstrap
|
2016-02-12 21:39:26 +01:00
|
|
|
do
|
|
|
|
guix gc --references "$profile" | grep "$dep"
|
|
|
|
done
|
2015-06-30 12:35:27 +02:00
|
|
|
fi
|