1
0
mirror of https://github.com/sstephenson/bats.git synced 2024-11-17 19:52:37 +01:00
bats/libexec/bats
Sam Stephenson 5030f53ecc Bats 0.2.0
2012-11-16 18:06:58 -06:00

65 lines
1.0 KiB
Bash
Executable File

#!/usr/bin/env bash
set -e
version() {
echo "Bats 0.2.0"
}
resolve_link() {
$(type -p greadlink readlink | head -1) "$1"
}
abs_dirname() {
local cwd="$(pwd)"
local path="$1"
while [ -n "$path" ]; do
cd "${path%/*}"
local name="${path##*/}"
path="$(resolve_link "$name" || true)"
done
pwd
cd "$cwd"
}
expand_path() {
{ cd "$(dirname "$1")" 2>/dev/null
local dirname="$PWD"
cd "$OLDPWD"
echo "$dirname/$(basename "$1")"
} || echo "$1"
}
BATS_LIBEXEC="$(abs_dirname "$0")"
export BATS_PREFIX="$(abs_dirname "$BATS_LIBEXEC")"
export PATH="$BATS_LIBEXEC:$PATH"
if [ "$1" = "-v" ] || [ "$1" = "--version" ]; then
version
exit 0
fi
count_only=""
if [ "$1" = "-c" ]; then
count_only="-c"
shift
fi
filename="$1"
if [ -z "$filename" ]; then
{ version
echo "usage: $0 [-c] <filename>"
} >&2
exit 1
else
shift
fi
if [ -d "$filename" ]; then
shopt -s nullglob
exec bats-exec-suite $count_only "$(expand_path "$filename")"/*.bats
else
exec bats-exec-test $count_only "$(expand_path "$filename")" "$@"
fi