lix/tests/linux-sandbox.sh

43 lines
1.5 KiB
Bash
Raw Normal View History

2017-05-02 13:09:35 +00:00
source common.sh
needLocalStore "the sandbox only runs on the builder side, so it makes no sense to test it with the daemon"
2017-05-02 13:09:35 +00:00
clearStore
requireSandboxSupport
2017-05-02 13:09:35 +00:00
# Note: we need to bind-mount $SHELL into the chroot. Currently we
# only support the case where $SHELL is in the Nix store, because
# otherwise things get complicated (e.g. if it's in /bin, do we need
# /lib as well?).
if [[ ! $SHELL =~ /nix/store ]]; then skipTest "Shell is not from Nix store"; fi
2017-05-02 13:09:35 +00:00
chmod -R u+w $TEST_ROOT/store0 || true
rm -rf $TEST_ROOT/store0
export NIX_STORE_DIR=/my/store
export NIX_REMOTE=$TEST_ROOT/store0
2017-05-02 13:09:35 +00:00
outPath=$(nix-build dependencies.nix --no-out-link --sandbox-paths /nix/store)
2017-05-02 13:09:35 +00:00
[[ $outPath =~ /my/store/.*-dependencies ]]
nix path-info -r $outPath | grep input-2
2020-07-24 18:42:24 +00:00
nix store ls -R -l $outPath | grep foobar
2017-05-02 13:09:35 +00:00
2020-07-24 18:42:24 +00:00
nix store cat $outPath/foobar | grep FOOBAR
2019-05-12 14:46:21 +00:00
# Test --check without hash rewriting.
nix-build dependencies.nix --no-out-link --check --sandbox-paths /nix/store
# Test that sandboxed builds with --check and -K can move .check directory to store
nix-build check.nix -A nondeterministic --sandbox-paths /nix/store --no-out-link
(! nix-build check.nix -A nondeterministic --sandbox-paths /nix/store --no-out-link --check -K 2> $TEST_ROOT/log)
if grepQuiet 'error: renaming' $TEST_ROOT/log; then false; fi
grepQuiet 'may not be deterministic' $TEST_ROOT/log
2023-02-14 11:03:34 +00:00
# Test that sandboxed builds cannot write to /etc easily
(! nix-build -E 'with import ./config.nix; mkDerivation { name = "etc-write"; buildCommand = "echo > /etc/test"; }' --no-out-link --sandbox-paths /nix/store)