Files
tower-tests/utils/stress_test.sh
2025-07-09 14:31:11 -04:00

24 lines
479 B
Bash
Executable File

#!/bin/bash
CONC="100"
REQU="10000"
BASE_URL="10.1.1.71"
AAP_JOB_ID="7"
POST_PAYLOAD_PATH="empty.post"
POST_PAYLOAD_TYPE="application/json"
TOWER_USER="admin"
TOWER_PASS="redhat"
printf "\n%s\n" \
"# Running test ${ITER}"
ab -c "${CONC}" \
-n ${REQU} \
-A ${TOWER_USER}:${TOWER_PASS} \
-T "${POST_PAYLOAD_TYPE}" \
-v1 \
-p ${POST_PAYLOAD_PATH} "https://${BASE_URL}/api/v2/job_templates/${AAP_JOB_ID}/launch/" | \
grep "Failed requests\|Time taken for tests"