mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 19:14:33 +00:00
- Introduce lib/shell helpers and keep etc/* scripts thin via compatibility shims - Move Kerberos validation to scripts/validation/check_kerberos.sh and update callers - Add deterministic shellspec unit tests under tests/shellspec/ and wire Maven to run them - Add minimal Spring Boot authority module with startup + /health endpoint and Maven wiring - Document the new layout in docs/layout.md Co-authored-by: Junie <junie@jetbrains.com>
92 lines
2.3 KiB
Bash
92 lines
2.3 KiB
Bash
#shellcheck shell=sh disable=SC2016
|
|
|
|
shellspec() { echo '#'; }
|
|
|
|
# Disable verbose_errexit by default for osh
|
|
# shellcheck disable=SC2039
|
|
shopt -u verbose_errexit 2>/dev/null ||:
|
|
|
|
# shellcheck source=lib/general.sh
|
|
. "$SHELLSPEC_LIB/general.sh"
|
|
|
|
# Workaround for ksh #40 in contrib/bugs.sh
|
|
if [ "$SHELLSPEC_DEFECT_REDEFINE" ]; then
|
|
shellspec_redefinable() { eval "alias $1='shellspec_redefinable_ $1'"; }
|
|
shellspec_redefinable_() { "$@"; }
|
|
else
|
|
shellspec_redefinable() { :; }
|
|
fi
|
|
|
|
# Workaround for busybox-1.1.3, ksh 88
|
|
if [ "$SHELLSPEC_DEFECT_BUILTIN" ]; then
|
|
shellspec_unbuiltin() {
|
|
set -- "$1" "shellspec_unbuiltin_$1"
|
|
eval "alias $1='$2'; $2() { \\$1 \${1+\"\$@\"}; }"
|
|
}
|
|
shellspec_unbuiltin "test"
|
|
else
|
|
shellspec_unbuiltin() { :; }
|
|
fi
|
|
|
|
shellspec_configure_functions() {
|
|
set -- "$1" import before_each after_each before_all after_all
|
|
case $1 in
|
|
define)
|
|
while [ $# -gt 1 ] && shift; do
|
|
shellspec_proxy "$1" "shellspec_$1"
|
|
done
|
|
;;
|
|
prune) shift; unset -f "$@" ;;
|
|
esac
|
|
}
|
|
|
|
shellspec_load_requires() {
|
|
set -- "$1${1:+ }" "" "$1${1:+ }"
|
|
|
|
while [ "$1" ] && set -- "${1#* }" "${1%% *}" "$3"; do
|
|
eval "shellspec_$2_configure() { :; }" # TODO: Deprecate in the future
|
|
eval "$2_precheck() { :; }"
|
|
eval "$2_loaded() { :; }"
|
|
eval "$2_configure() { shellspec_$2_configure; }"
|
|
shellspec_import "$2"
|
|
unset -f "$2_precheck"
|
|
"$2_loaded"
|
|
unset -f "$2_loaded"
|
|
done
|
|
|
|
shellspec_import "core"
|
|
|
|
shellspec_configure_functions define || return $?
|
|
shift 2
|
|
while [ "$1" ] && set -- "${1#* }" "${1%% *}"; do
|
|
"$2_configure"
|
|
unset -f "$2_configure"
|
|
done
|
|
shellspec_configure_functions prune || return $?
|
|
}
|
|
shellspec_load_requires "$SHELLSPEC_REQUIRES"
|
|
|
|
if [ "$SHELLSPEC_PROFILER" ] && [ "$SHELLSPEC_PROFILER_LIMIT" -gt 0 ]; then
|
|
shellspec_profile_start() { shellspec_profile_wait; }
|
|
shellspec_profile_end() { shellspec_profile_wait; }
|
|
else
|
|
shellspec_profile_start() { :; }
|
|
shellspec_profile_end() { :; }
|
|
fi
|
|
shellspec_profile_wait() {
|
|
echo '=' > "$SHELLSPEC_PROFILER_SIGNAL"
|
|
while [ -s "$SHELLSPEC_PROFILER_SIGNAL" ]; do :; done
|
|
}
|
|
|
|
#shellcheck disable=SC2034
|
|
case $- in
|
|
*e*) SHELLSPEC_ERREXIT="-e" ;;
|
|
*) SHELLSPEC_ERREXIT="+e"; set -e ;;
|
|
esac
|
|
|
|
shellspec_coverage_disabled() {
|
|
shellspec_coverage_env() { :; }
|
|
shellspec_coverage_start() { :; }
|
|
shellspec_coverage_stop() { :; }
|
|
}
|