2018-11-04 16:54:46 -05:00
|
|
|
# GNU Guix --- Functional package management for GNU
|
2023-02-27 17:20:26 -05:00
|
|
|
# Copyright © 2018, 2019, 2020, 2023 Ludovic Courtès <ludo@gnu.org>
|
2020-02-25 00:47:02 -05:00
|
|
|
# Copyright © 2020 Eric Bavier <bavier@posteo.net>
|
2018-11-04 16:54:46 -05: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 the 'guix pack --relocatable' using the external store, if any.
|
|
|
|
#
|
|
|
|
|
|
|
|
guix pack --version
|
|
|
|
|
|
|
|
# 'guix pack --relocatable' requires a C compiler and libc.a, which our
|
|
|
|
# bootstrap binaries don't provide. To make the test relatively inexpensive,
|
|
|
|
# run it on the user's global store if possible, on the grounds that binaries
|
|
|
|
# may already be there or can be built or downloaded inexpensively.
|
|
|
|
|
2019-05-18 06:21:34 -04:00
|
|
|
storedir="`guile -c '(use-modules (guix config))(display %storedir)'`"
|
2018-11-04 16:54:46 -05:00
|
|
|
localstatedir="`guile -c '(use-modules (guix config))(display %localstatedir)'`"
|
2019-05-18 06:21:34 -04:00
|
|
|
NIX_STORE_DIR="$storedir"
|
2018-11-04 16:54:46 -05:00
|
|
|
GUIX_DAEMON_SOCKET="$localstatedir/guix/daemon-socket/socket"
|
|
|
|
export NIX_STORE_DIR GUIX_DAEMON_SOCKET
|
|
|
|
|
|
|
|
if ! guile -c '(use-modules (guix)) (exit (false-if-exception (open-connection)))'
|
|
|
|
then
|
|
|
|
exit 77
|
|
|
|
fi
|
|
|
|
|
2020-07-28 04:48:50 -04:00
|
|
|
# Attempt to run the given command in a namespace where the store is
|
|
|
|
# invisible. This makes sure the presence of the store does not hide
|
|
|
|
# problems.
|
|
|
|
run_without_store ()
|
|
|
|
{
|
|
|
|
if unshare -r true # Are user namespaces supported?
|
|
|
|
then
|
|
|
|
# Run that relocatable executable in a user namespace where we "erase"
|
|
|
|
# the store by mounting an empty file system on top of it. That way,
|
|
|
|
# we exercise the wrapper code that creates the user namespace and
|
|
|
|
# bind-mounts the store.
|
|
|
|
unshare -mrf sh -c 'mount -t tmpfs -o ro none "$NIX_STORE_DIR"; '"$*"
|
|
|
|
else
|
|
|
|
# Run the relocatable program in the current namespaces. This is a
|
|
|
|
# weak test because we're going to access store items from the host
|
|
|
|
# store.
|
2020-12-04 07:20:58 -05:00
|
|
|
sh -c "$*"
|
2020-07-28 04:48:50 -04:00
|
|
|
fi
|
|
|
|
}
|
2018-11-04 16:54:46 -05:00
|
|
|
|
2020-10-31 18:02:33 -04:00
|
|
|
# Wait for the given file to show up. Error out if it doesn't show up in a
|
|
|
|
# timely fashion.
|
|
|
|
wait_for_file ()
|
|
|
|
{
|
|
|
|
i=0
|
|
|
|
while ! test -f "$1" && test $i -lt 20
|
|
|
|
do
|
|
|
|
sleep 0.3
|
|
|
|
i=`expr $i + 1`
|
|
|
|
done
|
|
|
|
test -f "$1"
|
|
|
|
}
|
|
|
|
|
2018-11-04 16:54:46 -05:00
|
|
|
test_directory="`mktemp -d`"
|
|
|
|
export test_directory
|
|
|
|
trap 'chmod -Rf +w "$test_directory"; rm -rf "$test_directory"' EXIT
|
|
|
|
|
2020-07-28 04:48:50 -04:00
|
|
|
if unshare -r true
|
2019-05-09 11:13:00 -04:00
|
|
|
then
|
2020-07-28 04:48:50 -04:00
|
|
|
# Test the 'userns' execution engine.
|
|
|
|
tarball="`guix pack -R -S /Bin=bin sed`"
|
|
|
|
(cd "$test_directory"; tar xvf "$tarball")
|
|
|
|
|
2023-02-27 17:20:26 -05:00
|
|
|
chmod +w "$test_directory"
|
2020-07-28 04:48:50 -04:00
|
|
|
run_without_store "$test_directory/Bin/sed" --version > "$test_directory/output"
|
|
|
|
grep 'GNU sed' "$test_directory/output"
|
|
|
|
|
|
|
|
# Same with an explicit engine.
|
|
|
|
run_without_store GUIX_EXECUTION_ENGINE="userns" \
|
|
|
|
"$test_directory/Bin/sed" --version > "$test_directory/output"
|
|
|
|
grep 'GNU sed' "$test_directory/output"
|
2020-04-24 08:30:38 -04:00
|
|
|
|
|
|
|
# Check whether the exit code is preserved.
|
tests: Fix checks for expected failures.
Addresses <https://issues.guix.gnu.org/62406>.
With 'set -e', a return status inverted with '!' does not cause the shell to
exit immediately. Instead use '&& false' to indicate an expected failure.
* tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh,
tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-environment-container.sh, tests/guix-environment.sh,
tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh,
tests/guix-hash.sh, tests/guix-home.sh, tests/guix-pack-relocatable.sh,
tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh,
tests/guix-package.sh, tests/guix-refresh.sh, tests/guix-shell.sh,
tests/guix-style.sh, tests/guix-system.sh: Replace uses of '! ...' with
'... && false' or `test ! ...` as appropriate.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-04-20 01:11:27 -04:00
|
|
|
run_without_store "$test_directory/Bin/sed" --does-not-exist && false
|
2020-07-28 04:48:50 -04:00
|
|
|
|
|
|
|
chmod -Rf +w "$test_directory"; rm -rf "$test_directory"/*
|
2019-05-09 11:13:00 -04:00
|
|
|
else
|
2020-07-28 04:48:50 -04:00
|
|
|
echo "'userns' execution tests skipped" >&2
|
2019-05-09 11:13:00 -04:00
|
|
|
fi
|
2019-08-23 11:45:17 -04:00
|
|
|
|
2020-05-11 10:32:24 -04:00
|
|
|
case "`uname -m`" in
|
|
|
|
x86_64|i?86)
|
|
|
|
# Try '-RR' and PRoot.
|
|
|
|
tarball="`guix pack -RR -S /Bin=bin sed`"
|
|
|
|
tar tvf "$tarball" | grep /bin/proot
|
2020-07-28 06:28:39 -04:00
|
|
|
(cd "$test_directory"; tar xf "$tarball")
|
2023-02-27 17:20:26 -05:00
|
|
|
chmod +w "$test_directory"
|
2020-07-28 04:48:50 -04:00
|
|
|
run_without_store GUIX_EXECUTION_ENGINE="proot" \
|
2020-05-11 10:32:24 -04:00
|
|
|
"$test_directory/Bin/sed" --version > "$test_directory/output"
|
|
|
|
grep 'GNU sed' "$test_directory/output"
|
2020-05-07 16:49:20 -04:00
|
|
|
|
|
|
|
# Now with fakechroot.
|
2020-07-28 04:48:50 -04:00
|
|
|
run_without_store GUIX_EXECUTION_ENGINE="fakechroot" \
|
2020-05-07 16:49:20 -04:00
|
|
|
"$test_directory/Bin/sed" --version > "$test_directory/output"
|
|
|
|
grep 'GNU sed' "$test_directory/output"
|
2020-02-25 00:47:02 -05:00
|
|
|
unset GUIX_EXECUTION_ENGINE
|
2020-05-07 16:49:20 -04:00
|
|
|
|
2020-05-11 10:32:24 -04:00
|
|
|
chmod -Rf +w "$test_directory"; rm -rf "$test_directory"/*
|
2020-07-28 06:28:39 -04:00
|
|
|
|
|
|
|
if unshare -r true
|
|
|
|
then
|
|
|
|
# Check whether the store contains everything it should. Check
|
|
|
|
# once when erasing $STORE_PARENT ("/gnu") and once when erasing
|
|
|
|
# $NIX_STORE_DIR ("/gnu/store").
|
|
|
|
tarball="`guix pack -RR -S /bin=bin bash-minimal`"
|
|
|
|
(cd "$test_directory"; tar xf "$tarball")
|
|
|
|
|
|
|
|
STORE_PARENT="`dirname $NIX_STORE_DIR`"
|
|
|
|
export STORE_PARENT
|
|
|
|
|
|
|
|
for engine in userns proot fakechroot
|
|
|
|
do
|
|
|
|
for i in $(guix gc -R $(guix build bash-minimal | grep -v -e '-doc$'))
|
|
|
|
do
|
|
|
|
unshare -mrf sh -c "mount -t tmpfs none \"$NIX_STORE_DIR\"; GUIX_EXECUTION_ENGINE=$engine $test_directory/bin/sh -c 'echo $NIX_STORE_DIR/*'" | grep $(basename $i)
|
|
|
|
unshare -mrf sh -c "mount -t tmpfs none \"$STORE_PARENT\"; GUIX_EXECUTION_ENGINE=$engine $test_directory/bin/sh -c 'echo $NIX_STORE_DIR/*'" | grep $(basename $i)
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
chmod -Rf +w "$test_directory"; rm -rf "$test_directory"/*
|
|
|
|
fi
|
2020-05-11 10:32:24 -04:00
|
|
|
;;
|
|
|
|
*)
|
2020-07-28 04:48:50 -04:00
|
|
|
echo "skipping PRoot and Fakechroot tests" >&2
|
2020-05-11 10:32:24 -04:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2020-10-31 18:02:33 -04:00
|
|
|
if unshare -r true
|
|
|
|
then
|
|
|
|
# Check what happens if the wrapped binary forks and leaves child
|
|
|
|
# processes behind, like a daemon. The root file system should remain
|
|
|
|
# available to those child processes. See <https://bugs.gnu.org/44261>.
|
|
|
|
cat > "$test_directory/manifest.scm" <<EOF
|
|
|
|
(use-modules (guix))
|
|
|
|
|
|
|
|
(define daemon
|
|
|
|
(program-file "daemon"
|
|
|
|
#~(begin
|
|
|
|
(use-modules (ice-9 match)
|
|
|
|
(ice-9 ftw))
|
|
|
|
|
|
|
|
(call-with-output-file "parent-store"
|
|
|
|
(lambda (port)
|
|
|
|
(write (scandir (ungexp (%store-prefix)))
|
|
|
|
port)))
|
|
|
|
|
|
|
|
(match (primitive-fork)
|
|
|
|
(0 (sigaction SIGHUP (const #t))
|
|
|
|
(call-with-output-file "pid"
|
|
|
|
(lambda (port)
|
|
|
|
(display (getpid) port)))
|
|
|
|
(pause)
|
|
|
|
(call-with-output-file "child-store"
|
|
|
|
(lambda (port)
|
|
|
|
(write (scandir (ungexp (%store-prefix)))
|
|
|
|
port))))
|
|
|
|
(_ #t)))))
|
|
|
|
|
|
|
|
(define package
|
|
|
|
(computed-file "package"
|
|
|
|
#~(let ((out (ungexp output)))
|
|
|
|
(mkdir out)
|
|
|
|
(mkdir (string-append out "/bin"))
|
|
|
|
(symlink (ungexp daemon)
|
|
|
|
(string-append out "/bin/daemon")))))
|
|
|
|
|
|
|
|
(manifest (list (manifest-entry
|
|
|
|
(name "daemon")
|
|
|
|
(version "0")
|
|
|
|
(item package))))
|
|
|
|
EOF
|
|
|
|
|
|
|
|
tarball="$(guix pack -S /bin=bin -R -m "$test_directory/manifest.scm")"
|
|
|
|
(cd "$test_directory"; tar xf "$tarball")
|
|
|
|
|
|
|
|
# Run '/bin/daemon', which forks, then wait for the child, send it SIGHUP
|
|
|
|
# so that it dumps its view of the store, and make sure the child and
|
|
|
|
# parent both see the same store contents.
|
2023-02-27 17:20:26 -05:00
|
|
|
chmod +w "$test_directory"
|
2020-10-31 18:02:33 -04:00
|
|
|
(cd "$test_directory"; run_without_store ./bin/daemon)
|
|
|
|
wait_for_file "$test_directory/pid"
|
|
|
|
kill -HUP $(cat "$test_directory/pid")
|
|
|
|
wait_for_file "$test_directory/child-store"
|
|
|
|
diff -u "$test_directory/parent-store" "$test_directory/child-store"
|
|
|
|
|
|
|
|
chmod -Rf +w "$test_directory"; rm -rf "$test_directory"/*
|
|
|
|
fi
|
|
|
|
|
2019-08-23 11:45:17 -04:00
|
|
|
# Ensure '-R' works with outputs other than "out".
|
|
|
|
tarball="`guix pack -R -S /share=share groff:doc`"
|
2020-07-28 06:28:39 -04:00
|
|
|
(cd "$test_directory"; tar xf "$tarball")
|
2019-08-23 11:45:17 -04:00
|
|
|
test -d "$test_directory/share/doc/groff/html"
|
2020-02-25 00:47:02 -05:00
|
|
|
chmod -Rf +w "$test_directory"; rm -rf "$test_directory"/*
|
2020-07-24 05:27:51 -04:00
|
|
|
|
|
|
|
# Ensure '-R' applies to propagated inputs. Failing to do that, it would fail
|
|
|
|
# with a profile collision error in this case because 'python-scipy'
|
|
|
|
# propagates 'python-numpy'. See <https://bugs.gnu.org/42510>.
|
|
|
|
guix pack -RR python-numpy python-scipy --no-grafts -n
|
2020-02-25 00:47:02 -05:00
|
|
|
|
|
|
|
# Check that packages that mix executable and support files (e.g. git) in the
|
|
|
|
# "binary" directories still work after wrapped.
|
|
|
|
cat >"$test_directory/manifest.scm" <<'EOF'
|
|
|
|
(use-modules (guix) (guix profiles) (guix search-paths)
|
|
|
|
(gnu packages bootstrap))
|
|
|
|
(manifest
|
|
|
|
(list (manifest-entry
|
|
|
|
(name "test") (version "0")
|
|
|
|
(item (file-union "test"
|
|
|
|
`(("bin/hello"
|
|
|
|
,(program-file
|
|
|
|
"hello"
|
|
|
|
#~(begin
|
|
|
|
(add-to-load-path (getenv "HELLO_EXEC_PATH"))
|
|
|
|
(display (load-from-path "msg"))(newline))
|
|
|
|
#:guile %bootstrap-guile))
|
|
|
|
("libexec/hello/msg"
|
|
|
|
,(plain-file "msg" "42")))))
|
|
|
|
(search-paths
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "HELLO_EXEC_PATH")
|
|
|
|
(files '("libexec/hello"))
|
|
|
|
(separator #f)))))))
|
|
|
|
EOF
|
|
|
|
tarball="`guix pack -RR -S /opt= -m $test_directory/manifest.scm`"
|
|
|
|
(cd "$test_directory"; tar xvf "$tarball")
|
2023-02-27 17:20:26 -05:00
|
|
|
chmod +w "$test_directory"
|
2020-02-25 00:47:02 -05:00
|
|
|
( export GUIX_PROFILE=$test_directory/opt
|
|
|
|
. $GUIX_PROFILE/etc/profile
|
|
|
|
run_without_store "$test_directory/opt/bin/hello" > "$test_directory/output" )
|
|
|
|
cat "$test_directory/output"
|
|
|
|
test "`cat $test_directory/output`" = "42"
|