mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
96 lines
1.8 KiB
Bash
96 lines
1.8 KiB
Bash
|
unset PYENV_VERSION
|
||
|
unset PYENV_DIR
|
||
|
|
||
|
PYENV_TEST_DIR="${BATS_TMPDIR}/pyenv"
|
||
|
|
||
|
# guard against executing this block twice due to bats internals
|
||
|
if [ "$PYENV_ROOT" != "${PYENV_TEST_DIR}/root" ]; then
|
||
|
export PYENV_ROOT="${PYENV_TEST_DIR}/root"
|
||
|
export HOME="${PYENV_TEST_DIR}/home"
|
||
|
|
||
|
PATH=/usr/bin:/bin:/usr/sbin:/sbin
|
||
|
PATH="${PYENV_TEST_DIR}/bin:$PATH"
|
||
|
PATH="${BATS_TEST_DIRNAME}/../libexec:$PATH"
|
||
|
PATH="${BATS_TEST_DIRNAME}/libexec:$PATH"
|
||
|
PATH="${PYENV_ROOT}/shims:$PATH"
|
||
|
export PATH
|
||
|
fi
|
||
|
|
||
|
teardown() {
|
||
|
rm -rf "$PYENV_TEST_DIR"
|
||
|
}
|
||
|
|
||
|
flunk() {
|
||
|
{ if [ "$#" -eq 0 ]; then cat -
|
||
|
else echo "$@"
|
||
|
fi
|
||
|
} | sed "s:${PYENV_TEST_DIR}:TEST_DIR:g" >&2
|
||
|
return 1
|
||
|
}
|
||
|
|
||
|
assert_success() {
|
||
|
if [ "$status" -ne 0 ]; then
|
||
|
flunk "command failed with exit status $status"
|
||
|
elif [ "$#" -gt 0 ]; then
|
||
|
assert_output "$1"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
assert_failure() {
|
||
|
if [ "$status" -eq 0 ]; then
|
||
|
flunk "expected failed exit status"
|
||
|
elif [ "$#" -gt 0 ]; then
|
||
|
assert_output "$1"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
assert_equal() {
|
||
|
if [ "$1" != "$2" ]; then
|
||
|
{ echo "expected: $1"
|
||
|
echo "actual: $2"
|
||
|
} | flunk
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
assert_output() {
|
||
|
local expected
|
||
|
if [ $# -eq 0 ]; then expected="$(cat -)"
|
||
|
else expected="$1"
|
||
|
fi
|
||
|
assert_equal "$expected" "$output"
|
||
|
}
|
||
|
|
||
|
assert_line() {
|
||
|
if [ "$1" -ge 0 ] 2>/dev/null; then
|
||
|
assert_equal "$2" "${lines[$1]}"
|
||
|
else
|
||
|
local line
|
||
|
for line in "${lines[@]}"; do
|
||
|
if [ "$line" = "$1" ]; then return 0; fi
|
||
|
done
|
||
|
flunk "expected line \`$1'"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
refute_line() {
|
||
|
if [ "$1" -ge 0 ] 2>/dev/null; then
|
||
|
local num_lines="${#lines[@]}"
|
||
|
if [ "$1" -lt "$num_lines" ]; then
|
||
|
flunk "output has $num_lines lines"
|
||
|
fi
|
||
|
else
|
||
|
local line
|
||
|
for line in "${lines[@]}"; do
|
||
|
if [ "$line" = "$1" ]; then
|
||
|
flunk "expected to not find line \`$line'"
|
||
|
fi
|
||
|
done
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
assert() {
|
||
|
if ! "$@"; then
|
||
|
flunk "failed: $@"
|
||
|
fi
|
||
|
}
|