From 684d5eb4d14a7ed79757be95d8a276ace38e70d8 Mon Sep 17 00:00:00 2001 From: chenjiankun Date: Wed, 7 Sep 2016 08:38:12 +0000 Subject: [PATCH] Bugfix:Reporting do not report a status of failure to mongodb JIRA: YARDSTICK-341 Change-Id: I376d9770838700da452eddf9579415888e9dcf4b Signed-off-by: chenjiankun --- tests/ci/yardstick-verify | 37 +++++++++++++++++++++++-------------- 1 file changed, 23 insertions(+), 14 deletions(-) diff --git a/tests/ci/yardstick-verify b/tests/ci/yardstick-verify index 8670bf4d0..e3d81f9f7 100755 --- a/tests/ci/yardstick-verify +++ b/tests/ci/yardstick-verify @@ -297,6 +297,26 @@ load_yardstick_image() echo "Glance image id: $GLANCE_IMAGE_ID" } +report(){ + + echo + echo "========== Reporting Status ==========" + + curl -i -H 'content-type: application/json' -X POST -d \ + "{\"project_name\": \"yardstick\", + \"case_name\": \"scenario_status\", + \"pod_name\":\"${NODE_NAME}\", + \"installer\":\"${INSTALLER_TYPE}\", + \"version\":\"${YARDSTICK_BRANCH}\", + \"scenario\":\"${DEPLOY_SCENARIO}\", + \"description\": \"yardstick ci scenario status\", + \"start_date\":\"$2\", + \"criteria\":\"$1\", + \"stop_date\":\"$3\", + \"details\":\"\"}" \ + ${DISPATCHER_HTTP_TARGET} +} + run_test() { echo @@ -341,7 +361,7 @@ EOF # Mark the test suite failed but continue # running the remaining test suites. - (( failed++ )) + (( ++failed )) fi if [ ${DISPATCHER_TYPE} = file ]; then echo "---------------------------" @@ -363,19 +383,8 @@ EOF if [ $failed -gt 0 ]; then scenario_status="FAILED" fi - curl -i -H 'content-type: application/json' -X POST -d \ - "{\"project_name\": \"yardstick\", - \"case_name\": \"scenario_status\", - \"pod_name\":\"${NODE_NAME}\", - \"installer\":\"${INSTALLER_TYPE}\", - \"version\":\"${YARDSTICK_BRANCH}\", - \"scenario\":\"${DEPLOY_SCENARIO}\", - \"description\": \"yardstick ci scenario status\", - \"start_date\":\"${start_date}\", - \"criteria\":\"${scenario_status}\", - \"stop_date\":\"${stop_date}\", - \"details\":\"\"}" \ - ${DISPATCHER_HTTP_TARGET} + + report $scenario_status $start_date $stop_date if [ $failed -gt 0 ]; then echo "---------------------------" -- 2.16.6