c2c173ac7e
* generate hub tests in python * run hub tests in 3 batches at the same time (hardcoded)
19 lines
569 B
Bash
Executable file
19 lines
569 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
# shellcheck disable=SC1007
|
|
THIS_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
|
# shellcheck disable=SC1091
|
|
. "${THIS_DIR}/../.environment.sh"
|
|
|
|
"${TEST_DIR}/instance-data" load
|
|
|
|
hubdir="${LOCAL_DIR}/hub-tests"
|
|
git clone --depth 1 https://github.com/crowdsecurity/hub.git "${hubdir}" >/dev/null 2>&1 || (cd "${hubdir}"; git pull)
|
|
|
|
echo "Generating hub tests..."
|
|
|
|
python3 "$THIS_DIR/generate-hub-tests.py" \
|
|
<("${CSCLI}" --crowdsec "${CROWDSEC}" --cscli "${CSCLI}" hubtest --hub "${hubdir}" list -o json) \
|
|
"${TEST_DIR}/dyn-bats/"
|