Skip to content

Commit

Permalink
Merge pull request #373 from klihub/devel/skip-loooong-tests-by-default
Browse files Browse the repository at this point in the history
e2e: skip long running tests by default.
  • Loading branch information
fmuyassarov authored Oct 7, 2024
2 parents 8a8d920 + fc52b55 commit 09d705a
Showing 1 changed file with 32 additions and 5 deletions.
37 changes: 32 additions & 5 deletions test/e2e/run_tests.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash

TESTS_DIR="$1"
SKIP_LONG_TESTS="${skip_long_tests:-yes}"
RUN_SH="${0%/*}/run.sh"

DEFAULT_DISTRO=${DEFAULT_DISTRO:-"fedora/40-cloud-base"}
Expand All @@ -12,11 +13,12 @@ proxy=${proxy:=$HTTPS_PROXY}
export proxy

usage() {
echo "Usage: run_tests.sh TESTS_DIR"
echo "Usage: [skip_long_tests=no] run_tests.sh TESTS_DIR"
echo "TESTS_DIR is expected to be structured as POLICY/TOPOLOGY/TEST with files:"
echo "POLICY/nri-resource_policy.cfg: configuration of nri-resource_policy"
echo "POLICY/TOPOLOGY/topology.var.json: contents of the topology variable for run.sh"
echo "POLICY/TOPOLOGY/TEST/code.var.sh: contents of the code var (that is, test script)"
echo "skip_long_tests=no enables long-running tests (including fuzzing and stress tests)."
}

error() {
Expand Down Expand Up @@ -116,10 +118,16 @@ export-and-source-dir() {
source-source-files "$dir"
}

if [ -z "$TESTS_DIR" ] || [ "$TESTS_DIR" == "help" ] || [ "$TESTS_DIR" == "--help" ]; then
usage
error "missing TESTS_DIR"
fi
case "$TESTS_DIR" in
"")
usage
error "missing TESTS_DIR"
;;
"help"|"--help"|"-h")
usage
exit 0
;;
esac

if ! [ -d "$TESTS_DIR" ]; then
error "bad TESTS_DIR: \"$TESTS_DIR\""
Expand Down Expand Up @@ -152,6 +160,7 @@ echo " TESTS_ROOT_DIR=$TESTS_ROOT_DIR"
echo " TESTS_POLICY_FILTER=$TESTS_POLICY_FILTER"
echo " TESTS_TOPOLOGY_FILTER=$TESTS_TOPOLOGY_FILTER"
echo " TESTS_TEST_FILTER=$TESTS_TEST_FILTER"
echo " skip long tests: $SKIP_LONG_TESTS"

source "$TESTS_ROOT_DIR"/../lib/vm.bash

Expand Down Expand Up @@ -224,6 +233,24 @@ for POLICY_DIR in "$TESTS_ROOT_DIR"/*; do
if [ "$(basename "$TEST_DIR")" == "vm-files" ]; then
continue
fi

if [ "$SKIP_LONG_TESTS" = "yes" ]; then
case $TEST_DIR in
*fuzz*)
echo "SKIP long test $TEST_DIR (skip_long_tests=$SKIP_LONG_TESTS)"
continue
;;
*long*)
echo "SKIP long test $TEST_DIR (skip_long_tests=$SKIP_LONG_TESTS)"
continue
;;
*stress*)
echo "SKIP long test $TEST_DIR (skip_long_tests=$SKIP_LONG_TESTS)"
continue
;;
esac
fi

(
export-and-source-dir "$TEST_DIR"
export code="${source_libs}""
Expand Down

0 comments on commit 09d705a

Please sign in to comment.