lix/tests/common.sh.in

124 lines
2.6 KiB
Bash
Raw Normal View History

set -e
export TEST_ROOT=$(realpath ${TMPDIR:-/tmp}/nix-test)/${TEST_NAME:-default}
2006-07-21 12:46:54 +00:00
export NIX_STORE_DIR
if ! NIX_STORE_DIR=$(readlink -f $TEST_ROOT/store 2> /dev/null); then
2006-07-21 12:46:54 +00:00
# Maybe the build directory is symlinked.
export NIX_IGNORE_SYMLINK_STORE=1
NIX_STORE_DIR=$TEST_ROOT/store
fi
export NIX_LOCALSTATE_DIR=$TEST_ROOT/var
export NIX_LOG_DIR=$TEST_ROOT/var/log/nix
export NIX_STATE_DIR=$TEST_ROOT/var/nix
export NIX_CONF_DIR=$TEST_ROOT/etc
export NIX_DAEMON_SOCKET_PATH=$TEST_ROOT/daemon-socket
unset NIX_USER_CONF_FILES
export _NIX_TEST_SHARED=$TEST_ROOT/shared
if [[ -n $NIX_STORE ]]; then
export _NIX_TEST_NO_SANDBOX=1
fi
export _NIX_IN_TEST=$TEST_ROOT/shared
export _NIX_TEST_NO_LSOF=1
2012-07-26 21:12:42 +00:00
export NIX_REMOTE=$NIX_REMOTE_
2016-07-21 12:25:06 +00:00
unset NIX_PATH
2016-05-30 18:22:30 +00:00
export TEST_HOME=$TEST_ROOT/test-home
export HOME=$TEST_HOME
unset XDG_CONFIG_HOME
unset XDG_CONFIG_DIRS
unset XDG_CACHE_HOME
2016-05-30 18:22:30 +00:00
mkdir -p $TEST_HOME
export PATH=@bindir@:$PATH
coreutils=@coreutils@
export dot=@dot@
2006-03-01 14:17:00 +00:00
export xmllint="@xmllint@"
export SHELL="@bash@"
2014-09-23 13:18:44 +00:00
export PAGER=cat
2015-02-10 10:54:06 +00:00
export HAVE_SODIUM="@HAVE_SODIUM@"
2020-06-25 16:26:34 +00:00
export busybox="@sandbox_shell@"
export version=@PACKAGE_VERSION@
2006-03-01 15:46:22 +00:00
export system=@system@
2006-03-01 12:51:18 +00:00
2014-02-17 11:22:50 +00:00
cacheDir=$TEST_ROOT/binary-cache
2006-03-01 14:26:03 +00:00
readLink() {
ls -l "$1" | sed 's/.*->\ //'
}
2009-03-18 16:35:35 +00:00
clearProfiles() {
profiles="$NIX_STATE_DIR"/profiles
2012-04-14 17:52:58 +00:00
rm -rf $profiles
2009-03-18 16:35:35 +00:00
}
clearStore() {
echo "clearing store..."
chmod -R +w "$NIX_STORE_DIR"
rm -rf "$NIX_STORE_DIR"
mkdir "$NIX_STORE_DIR"
rm -rf "$NIX_STATE_DIR"
mkdir "$NIX_STATE_DIR"
2019-03-04 10:27:45 +00:00
nix-store --init
2009-03-18 16:35:35 +00:00
clearProfiles
}
2007-08-13 13:15:02 +00:00
2014-02-17 11:22:50 +00:00
clearCache() {
rm -rf "$cacheDir"
}
2016-05-30 18:22:30 +00:00
clearCacheCache() {
rm -f $TEST_HOME/.cache/nix/binary-cache*
}
2011-07-20 11:50:13 +00:00
startDaemon() {
# Start the daemon, wait for the socket to appear. !!!
# nix-daemon should have an option to fork into the background.
rm -f $NIX_STATE_DIR/daemon-socket/socket
2012-10-03 21:57:20 +00:00
nix-daemon &
for ((i = 0; i < 30; i++)); do
if [ -e $NIX_DAEMON_SOCKET_PATH ]; then break; fi
sleep 1
done
2011-07-20 11:50:13 +00:00
pidDaemon=$!
trap "kill -9 $pidDaemon" EXIT
export NIX_REMOTE=daemon
}
killDaemon() {
kill -9 $pidDaemon
wait $pidDaemon || true
trap "" EXIT
}
if [[ $(uname) == Linux ]] && [[ -L /proc/self/ns/user ]] && unshare --user true; then
_canUseSandbox=1
fi
canUseSandbox() {
if [[ ! $_canUseSandbox ]]; then
echo "Sandboxing not supported, skipping this test..."
return 1
fi
return 0
}
fail() {
echo "$1"
exit 1
}
2017-11-15 11:23:31 +00:00
expect() {
local expected res
expected="$1"
shift
set +e
"$@"
res="$?"
set -e
[[ $res -eq $expected ]]
}
set -x