aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests-jenkins
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-07-09 19:26:16 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-07-09 19:26:16 -0700
commit2e0a037dff2ef3eee45f6d3e2d8eddfdc3edcd5d (patch)
treee2f13cf409626293d040516f6ab861bb7331a442 /dev/run-tests-jenkins
parent1f33e1f2013c508aa86511750f7bd8437154e51a (diff)
downloadspark-2e0a037dff2ef3eee45f6d3e2d8eddfdc3edcd5d.tar.gz
spark-2e0a037dff2ef3eee45f6d3e2d8eddfdc3edcd5d.tar.bz2
spark-2e0a037dff2ef3eee45f6d3e2d8eddfdc3edcd5d.zip
SPARK-2416: Allow richer reporting of unit test results
The built-in Jenkins integration is pretty bad. It's very confusing to users whether tests have passed or failed and we can't easily customize the message. With some small scripting around the Github API we can do much better than this. Author: Patrick Wendell <pwendell@gmail.com> Closes #1340 from pwendell/better-qa-messages and squashes the following commits: fd6077d [Patrick Wendell] Better automation for unit tests.
Diffstat (limited to 'dev/run-tests-jenkins')
-rwxr-xr-xdev/run-tests-jenkins85
1 files changed, 85 insertions, 0 deletions
diff --git a/dev/run-tests-jenkins b/dev/run-tests-jenkins
new file mode 100755
index 0000000000..8dda671e97
--- /dev/null
+++ b/dev/run-tests-jenkins
@@ -0,0 +1,85 @@
+#!/usr/bin/env bash
+
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+# Wrapper script that runs the Spark tests then reports QA results
+# to github via its API.
+
+# Go to the Spark project root directory
+FWDIR="$(cd `dirname $0`/..; pwd)"
+cd $FWDIR
+
+COMMENTS_URL="https://api.github.com/repos/apache/spark/issues/$ghprbPullId/comments"
+
+function post_message {
+ message=$1
+ data="{\"body\": \"$message\"}"
+ echo "Attempting to post to Github:"
+ echo "$data"
+
+ curl -D- -u x-oauth-basic:$GITHUB_OAUTH_KEY -X POST --data "$data" -H \
+ "Content-Type: application/json" \
+ $COMMENTS_URL | head -n 8
+}
+
+start_message="QA tests have started for PR $ghprbPullId."
+if [ "$sha1" == "$ghprbActualCommit" ]; then
+ start_message="$start_message This patch DID NOT merge cleanly! "
+else
+ start_message="$start_message This patch merges cleanly. "
+fi
+start_message="$start_message<br>View progress: "
+start_message="$start_message${BUILD_URL}consoleFull"
+
+post_message "$start_message"
+
+./dev/run-tests
+test_result="$?"
+
+result_message="QA results for PR $ghprbPullId:<br>"
+
+if [ "$test_result" -eq "0" ]; then
+ result_message="$result_message- This patch PASSES unit tests.<br>"
+else
+ result_message="$result_message- This patch FAILED unit tests.<br>"
+fi
+
+if [ "$sha1" != "$ghprbActualCommit" ]; then
+ result_message="$result_message- This patch merges cleanly<br>"
+ non_test_files=$(git diff master --name-only | grep -v "\/test" | tr "\n" " ")
+ new_public_classes=$(git diff master $non_test_files \
+ | grep -e "trait " -e "class " \
+ | grep -e "{" -e "(" \
+ | grep -v -e \@\@ -e private \
+ | grep \+ \
+ | sed "s/\+ *//" \
+ | tr "\n" "~" \
+ | sed "s/~/<br>/g")
+ if [ "$new_public_classes" == "" ]; then
+ result_message="$result_message- This patch adds no public classes<br>"
+ else
+ result_message="$result_message- This patch adds the following public classes (experimental):<br>"
+ result_message="$result_message$new_public_classes"
+ fi
+fi
+result_message="${result_message}<br>For more information see test ouptut:"
+result_message="${result_message}<br>${BUILD_URL}consoleFull"
+
+post_message "$result_message"
+
+exit $test_result