Skip to content

Instantly share code, notes, and snippets.

@pragmatictesters
Created August 15, 2021 05:23
Show Gist options
  • Save pragmatictesters/adddb28a6ea8bb44c14e616b53d6ebb9 to your computer and use it in GitHub Desktop.
Save pragmatictesters/adddb28a6ea8bb44c14e616b53d6ebb9 to your computer and use it in GitHub Desktop.
Running multiple JMeter tests in a directory and genreating HTML report at the end
JMETER_HOME=../install/apache-jmeter-5.4.1
TEST_PLAN_HOME=/Users/hansi/Documents/learning/Xap.PerformanceTesting/test_plans/xap/sanity/
TEST_RESULT_HOME=/Users/hansi/Documents/learning/Xap.PerformanceTesting/test_results/sanity/
TEST_REPORTS_HOME=/Users/hansi/Documents/learning/Xap.PerformanceTesting/test_reports/sanity/
TEST_RESULT_FILENAME="test-results-xap-sanity-test"
printf "Starting the sanity test\n"
while :; do
read -r -p "Please enter hold rate in minutes (1-10) " hold_target_rate_in_min
hold_target_rate_in_min=${hold_target_rate_in_min:-1}
[[ $hold_target_rate_in_min =~ ^[0-9]+$ ]] || { echo "Enter a valid number"; continue; }
if ((hold_target_rate_in_min >= 1 && hold_target_rate_in_min <= 10)); then
echo "Valid number of hold_target_rate_in_min"
break
else
echo "number $hold_target_rate_in_min is out of range, try again"
fi
done
mkdir -pv $TEST_RESULT_HOME
mkdir -pv $TEST_REPORTS_HOME
>"$TEST_RESULT_HOME"sucess-sanity-test.log
>"$TEST_RESULT_HOME"error-sanity-test.log
timestamp=$(date +"%y-%b-%d-%H-%M")
TEST_RESULT_FILENAME="$TEST_RESULT_FILENAME$timestamp".csv
TEST_RESULT_FILE_FULL_PATH=$TEST_RESULT_HOME$TEST_RESULT_FILENAME
cd $JMETER_HOME/bin || exit
test -f "$TEST_RESULT_FILE_FULL_PATH" && rm "$TEST_RESULT_FILE_FULL_PATH"
fileCountSuccess=0
fileCountFailed=0
for testPlan in $TEST_PLAN_HOME/*.jmx; do
printf "==> Started : %s \a\n\n" `basename "$testPlan"`
if ./jmeter.sh -n -t "$testPlan" \
-Jhold_target_rate_in_min="$hold_target_rate_in_min" \
-Jload_profile="line(1,5,1m) const(5,3m) line(5,1,1m) " \
-l "$TEST_RESULT_FILE_FULL_PATH";
then
fileCountSuccess=$((fileCountSuccess+1))
printf "Test plan %s was completed successfully\n" `basename "$testPlan"` >> "$TEST_RESULT_HOME"sucess-sanity-test.log
else
printf "Test plan %s was failed \n" `basename "$testPlan"` >> "$TEST_RESULT_HOME"error-sanity-test.log
fileCountFailed=$((fileCountFailed+1))
fi
printf "==> Completed : %s \n\n\a" `basename "$testPlan"`
done
if [ -f "$TEST_RESULT_FILE_FULL_PATH" ];then
./jmeter.sh -g "$TEST_RESULT_FILE_FULL_PATH" -f -o $TEST_REPORTS_HOME
fi
printf "Process is completed!\n Successful test plans : %s \n Failed Test Plans %s\n" $fileCountSuccess $fileCountFailed
test -f $TEST_REPORTS_HOME/index.html && open $TEST_REPORTS_HOME/index.html
@pragmatictesters
Copy link
Author

This script

  1. Prompt the user to enter the duration of the sanity test
  2. Iterate the JMX file in a given folder
  3. Run the test and record the success and failure status into the log file
  4. Generate HTML dashboard report at the end
  5. Open the HTML report in the default web browser

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment