Little helper to run CNCF's k3s in Docker
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k3d/tests/runner.sh

53 lines
1.3 KiB

5 years ago
#!/bin/bash
CURR_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
[ -d "$CURR_DIR" ] || { echo "FATAL: no current dir (maybe running in zsh?)"; exit 1; }
: "${E2E_SKIP:=""}"
: "${E2E_EXTRA:=""}"
5 years ago
# shellcheck source=./common.sh
source "$CURR_DIR/common.sh"
#########################################################################################
[ -n "$EXE" ] || abort "no EXE provided"
info "Preparing filesystem and environment..."
mkdir -p $HOME/.kube
section "BASIC TESTS"
5 years ago
for i in $CURR_DIR/test_*.sh ; do
base=$(basename "$i" .sh)
skip=false
for skiptest in "${E2E_SKIP[@]}"; do
[[ "$skiptest" =~ (^| )${base}($| ) ]] && skip=true
done
if [ "$skip" = true ]; then
highlight "***** Skipping $base *****"
else
highlight "***** Running $base *****"
"$i" || abort "test $base failed"
fi
5 years ago
done
if [[ -n "$E2E_EXTRA" ]]; then
section "EXTRA TESTS"
for i in $CURR_DIR/extra_test_*.sh ; do
base=$(basename "$i" .sh)
if [[ $E2E_SKIP =~ (^| )$base($| ) ]]; then
highlight "***** Skipping $base *****"
else
highlight "***** Running $base *****"
"$i" || abort "test $base failed"
fi
done
else
info "NOT running EXTRA tests, please set E2E_EXTRA=1 if you wish to do so"
fi
5 years ago
exit 0