Move test utilities to top-level test directory
This commit is contained in:
parent
535483d460
commit
3c1f9fa15f
5 changed files with 80 additions and 61 deletions
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
source $(dirname ${BASH_SOURCE[0]})/../../tests/utils.sh
|
||||||
source $(dirname ${BASH_SOURCE[0]})/utils.sh
|
source $(dirname ${BASH_SOURCE[0]})/utils.sh
|
||||||
|
|
||||||
test_call() {
|
test_call() {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
source $(dirname ${BASH_SOURCE[0]})/../../tests/utils.sh
|
||||||
source $(dirname ${BASH_SOURCE[0]})/utils.sh
|
source $(dirname ${BASH_SOURCE[0]})/utils.sh
|
||||||
|
|
||||||
std_header() {
|
std_header() {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
source $(dirname ${BASH_SOURCE[0]})/../../tests/utils.sh
|
||||||
source $(dirname ${BASH_SOURCE[0]})/utils.sh
|
source $(dirname ${BASH_SOURCE[0]})/utils.sh
|
||||||
|
|
||||||
create() {
|
create() {
|
||||||
|
|
|
@ -1,65 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
source $(dirname ${BASH_SOURCE[0]})/../tests/utils.sh
|
||||||
|
|
||||||
COLOR_OFF='\e[0m' # Text Reset
|
|
||||||
RED='\e[0;31m' # Red
|
|
||||||
YELLOW='\e[0;33m' # Yellow
|
|
||||||
GREEN='\e[0;32m' # Green
|
|
||||||
|
|
||||||
RUNTIME="/tmp"
|
|
||||||
STORE="${RUNTIME}/store"
|
|
||||||
|
|
||||||
out() {
|
|
||||||
[[ -z "$DEBUG_OUTPUT_OFF" ]] && echo -e "${YELLOW}:: $*${COLOR_OFF}"
|
|
||||||
}
|
|
||||||
|
|
||||||
success() {
|
|
||||||
[[ -z "$DEBUG_OUTPUT_OFF" ]] && echo -e "${GREEN}>> $*${COLOR_OFF}"
|
|
||||||
}
|
|
||||||
|
|
||||||
err() {
|
|
||||||
[[ -z "$DEBUG_OUTPUT_OFF" ]] && echo -e "${RED}!! $*${COLOR_OFF}"
|
|
||||||
}
|
|
||||||
|
|
||||||
silent() {
|
|
||||||
DEBUG_OUTPUT_OFF=1 $*
|
|
||||||
}
|
|
||||||
|
|
||||||
imag-store() {
|
imag-store() {
|
||||||
local searchdir=$(dirname ${BASH_SOURCE[0]})/../target/debug/
|
imag-call-binary "$(dirname ${BASH_SOURCE[0]})/../target/debug/" imag-store $*
|
||||||
[[ -d $searchdir ]] || { err "FATAL: No directory $searchdir"; exit 1; }
|
|
||||||
local bin=$(find $searchdir -iname imag-store -type f -executable)
|
|
||||||
local flags="--debug --rtp $RUNTIME"
|
|
||||||
out "Calling '$bin $flags $*'"
|
|
||||||
$bin $flags $*
|
|
||||||
}
|
|
||||||
|
|
||||||
reset_store() {
|
|
||||||
rm -r "${STORE}"
|
|
||||||
}
|
|
||||||
|
|
||||||
call_test() {
|
|
||||||
out "-- TESTING: '$1' --"
|
|
||||||
$1
|
|
||||||
result=$?
|
|
||||||
if [[ -z "$DONT_RESET_STORE" ]]; then
|
|
||||||
out "Reseting store"
|
|
||||||
reset_store
|
|
||||||
out "Store reset done"
|
|
||||||
fi
|
|
||||||
[[ $result -eq 0 ]] || { err "-- FAILED: '$1'. Exiting."; exit 1; }
|
|
||||||
success "-- SUCCESS: '$1' --"
|
|
||||||
}
|
|
||||||
|
|
||||||
invoke_tests() {
|
|
||||||
out "Invoking tests."
|
|
||||||
if [[ ! -z "$INVOKE_TEST" ]]; then
|
|
||||||
out "Invoking only $INVOKE_TEST"
|
|
||||||
call_test "$INVOKE_TEST"
|
|
||||||
else
|
|
||||||
out "Invoking $*"
|
|
||||||
for t in $*; do
|
|
||||||
call_test "$t"
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
75
tests/utils.sh
Normal file
75
tests/utils.sh
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# This file contains test utility functions which are used by the test scripts
|
||||||
|
# for each binary.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
COLOR_OFF='\e[0m' # Text Reset
|
||||||
|
RED='\e[0;31m' # Red
|
||||||
|
YELLOW='\e[0;33m' # Yellow
|
||||||
|
GREEN='\e[0;32m' # Green
|
||||||
|
|
||||||
|
RUNTIME="/tmp"
|
||||||
|
STORE="${RUNTIME}/store"
|
||||||
|
|
||||||
|
out() {
|
||||||
|
[[ -z "$DEBUG_OUTPUT_OFF" ]] && echo -e "${YELLOW}:: $*${COLOR_OFF}"
|
||||||
|
}
|
||||||
|
|
||||||
|
success() {
|
||||||
|
[[ -z "$DEBUG_OUTPUT_OFF" ]] && echo -e "${GREEN}>> $*${COLOR_OFF}"
|
||||||
|
}
|
||||||
|
|
||||||
|
err() {
|
||||||
|
[[ -z "$DEBUG_OUTPUT_OFF" ]] && echo -e "${RED}!! $*${COLOR_OFF}"
|
||||||
|
}
|
||||||
|
|
||||||
|
silent() {
|
||||||
|
DEBUG_OUTPUT_OFF=1 $*
|
||||||
|
}
|
||||||
|
|
||||||
|
imag-call-binary() {
|
||||||
|
local searchdir=$1; shift
|
||||||
|
local binary=$1; shift
|
||||||
|
[[ -d $searchdir ]] || { err "FATAL: No directory $searchdir"; exit 1; }
|
||||||
|
local bin=$(find $searchdir -iname $binary -type f -executable)
|
||||||
|
local flags="--debug --rtp $RUNTIME"
|
||||||
|
out "Calling '$bin $flags $*'"
|
||||||
|
$bin $flags $*
|
||||||
|
}
|
||||||
|
|
||||||
|
reset_store() {
|
||||||
|
rm -r "${STORE}"
|
||||||
|
}
|
||||||
|
|
||||||
|
call_test() {
|
||||||
|
out "-- TESTING: '$1' --"
|
||||||
|
$1
|
||||||
|
result=$?
|
||||||
|
if [[ -z "$DONT_RESET_STORE" ]]; then
|
||||||
|
out "Reseting store"
|
||||||
|
reset_store
|
||||||
|
out "Store reset done"
|
||||||
|
fi
|
||||||
|
[[ $result -eq 0 ]] || { err "-- FAILED: '$1'. Exiting."; exit 1; }
|
||||||
|
success "-- SUCCESS: '$1' --"
|
||||||
|
}
|
||||||
|
|
||||||
|
invoke_tests() {
|
||||||
|
out "Invoking tests."
|
||||||
|
if [[ ! -z "$INVOKE_TEST" ]]; then
|
||||||
|
out "Invoking only $INVOKE_TEST"
|
||||||
|
call_test "$INVOKE_TEST"
|
||||||
|
else
|
||||||
|
out "Invoking $*"
|
||||||
|
for t in $*; do
|
||||||
|
call_test "$t"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue