mirror of
https://github.com/denisidoro/navi
synced 2024-11-10 14:04:17 +00:00
66 lines
1.2 KiB
Bash
66 lines
1.2 KiB
Bash
#!/usr/bin/env bash
|
|
# vim: filetype=sh
|
|
|
|
source "${NAVI_HOME}/scripts/install"
|
|
|
|
PASSED=0
|
|
FAILED=0
|
|
SKIPPED=0
|
|
SUITE=""
|
|
|
|
test::set_suite() {
|
|
SUITE="$*"
|
|
}
|
|
|
|
test::success() {
|
|
PASSED=$((PASSED+1))
|
|
log::success "Test passed!"
|
|
}
|
|
|
|
test::fail() {
|
|
FAILED=$((FAILED+1))
|
|
log::error "Test failed..."
|
|
return
|
|
}
|
|
|
|
test::skip() {
|
|
echo
|
|
log::note "${SUITE:-unknown} - ${1:-unknown}"
|
|
SKIPPED=$((SKIPPED+1))
|
|
log::warning "Test skipped..."
|
|
return
|
|
}
|
|
|
|
test::run() {
|
|
echo
|
|
log::note "${SUITE:-unknown} - ${1:-unknown}"
|
|
shift
|
|
"$@" && test::success || test::fail
|
|
}
|
|
|
|
test::equals() {
|
|
local -r actual="$(cat)"
|
|
local -r expected="$(echo "${1:-}")"
|
|
|
|
local -r actual2="$(echo "$actual" | xargs | sed -E 's/\s/ /g')"
|
|
local -r expected2="$(echo "$expected" | xargs | sed -E 's/\s/ /g')"
|
|
|
|
if [[ "$actual2" != "$expected2" ]]; then
|
|
log::error "Expected '${expected}' but got '${actual}'"
|
|
return 2
|
|
fi
|
|
}
|
|
|
|
test::finish() {
|
|
echo
|
|
if [ $SKIPPED -gt 0 ]; then
|
|
log::warning "${SKIPPED} tests skipped!"
|
|
fi
|
|
if [ $FAILED -gt 0 ]; then
|
|
log::error "${PASSED} tests passed but ${FAILED} failed... :("
|
|
exit "${FAILED}"
|
|
else
|
|
log::success "All ${PASSED} tests passed! :)"
|
|
exit 0
|
|
fi
|
|
}
|