2009-05-19 04:56:52 +00:00
#!/usr/bin/env bash
2009-08-17 03:53:27 +00:00
# Licensed 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.
2009-05-19 04:56:52 +00:00
#set -x
ulimit -n 1024
### Setup some variables.
2010-10-25 18:59:28 +00:00
### SVN_REVISION and BUILD_URL are set by Hudson if it is run by patch process
2010-11-02 05:33:05 +00:00
### Read variables from properties file
2011-06-14 15:05:39 +00:00
bindir = $( dirname $0 )
2009-05-19 04:56:52 +00:00
2011-08-09 20:28:48 +00:00
# Defaults
2011-08-05 14:28:30 +00:00
if [ -z " $MAVEN_HOME " ] ; then
MVN = mvn
else
MVN = $MAVEN_HOME /bin/mvn
fi
2011-08-09 20:28:48 +00:00
PROJECT_NAME = Hadoop
JENKINS = false
PATCH_DIR = /tmp
SUPPORT_DIR = /tmp
BASEDIR = $( pwd )
PS = ${ PS :- ps }
2011-08-05 14:28:30 +00:00
AWK = ${ AWK :- awk }
2011-08-09 20:28:48 +00:00
WGET = ${ WGET :- wget }
SVN = ${ SVN :- svn }
GREP = ${ GREP :- grep }
PATCH = ${ PATCH :- patch }
JIRACLI = ${ JIRA :- jira }
FINDBUGS_HOME = ${ FINDBUGS_HOME }
FORREST_HOME = ${ FORREST_HOME }
ECLIPSE_HOME = ${ ECLIPSE_HOME }
2011-08-05 14:28:30 +00:00
2009-05-19 04:56:52 +00:00
###############################################################################
2011-08-09 20:28:48 +00:00
printUsage( ) {
echo " Usage: $0 [options] patch-file | defect-number "
echo
echo "Where:"
echo " patch-file is a local patch file containing the changes to test"
echo " defect-number is a JIRA defect number (e.g. 'HADOOP-1234') to test (Jenkins only)"
echo
echo "Options:"
echo "--patch-dir=<dir> The directory for working and output files (default '/tmp')"
echo "--basedir=<dir> The directory to apply the patch to (default current directory)"
echo "--mvn-cmd=<cmd> The 'mvn' command to use (default \$MAVEN_HOME/bin/mvn, or 'mvn')"
echo "--ps-cmd=<cmd> The 'ps' command to use (default 'ps')"
echo "--awk-cmd=<cmd> The 'awk' command to use (default 'awk')"
echo "--svn-cmd=<cmd> The 'svn' command to use (default 'svn')"
echo "--grep-cmd=<cmd> The 'grep' command to use (default 'grep')"
echo "--patch-cmd=<cmd> The 'patch' command to use (default 'patch')"
echo "--findbugs-home=<path> Findbugs home directory (default FINDBUGS_HOME environment variable)"
echo "--forrest-home=<path> Forrest home directory (default FORREST_HOME environment variable)"
echo "--dirty-workspace Allow the local SVN workspace to have uncommitted changes"
2011-09-08 18:39:11 +00:00
echo "--run-tests Run all tests below the base directory"
2011-08-09 20:28:48 +00:00
echo
echo "Jenkins-only options:"
echo "--jenkins Run by Jenkins (runs tests and posts results to JIRA)"
echo "--support-dir=<dir> The directory to find support files in"
echo "--wget-cmd=<cmd> The 'wget' command to use (default 'wget')"
echo "--jira-cmd=<cmd> The 'jira' command to use (default 'jira')"
echo "--jira-password=<pw> The password for the 'jira' command"
echo "--eclipse-home=<path> Eclipse home directory (default ECLIPSE_HOME environment variable)"
}
2009-05-19 04:56:52 +00:00
2011-08-09 20:28:48 +00:00
###############################################################################
parseArgs( ) {
for i in $*
do
case $i in
--jenkins)
JENKINS = true
2009-05-19 04:56:52 +00:00
; ;
2011-08-09 20:28:48 +00:00
--patch-dir= *)
PATCH_DIR = ${ i #*= }
; ;
--support-dir= *)
SUPPORT_DIR = ${ i #*= }
; ;
--basedir= *)
BASEDIR = ${ i #*= }
; ;
--mvn-cmd= *)
MVN = ${ i #*= }
; ;
--ps-cmd= *)
PS = ${ i #*= }
; ;
--awk-cmd= *)
AWK = ${ i #*= }
; ;
--wget-cmd= *)
WGET = ${ i #*= }
; ;
--svn-cmd= *)
SVN = ${ i #*= }
; ;
--grep-cmd= *)
GREP = ${ i #*= }
; ;
--patch-cmd= *)
PATCH = ${ i #*= }
; ;
--jira-cmd= *)
JIRACLI = ${ i #*= }
; ;
--jira-password= *)
JIRA_PASSWD = ${ i #*= }
; ;
--findbugs-home= *)
FINDBUGS_HOME = ${ i #*= }
; ;
--forrest-home= *)
FORREST_HOME = ${ i #*= }
; ;
--eclipse-home= *)
ECLIPSE_HOME = ${ i #*= }
; ;
--dirty-workspace)
DIRTY_WORKSPACE = true
2009-05-19 04:56:52 +00:00
; ;
2011-09-08 18:39:11 +00:00
--run-tests)
RUN_TESTS = true
; ;
2009-05-19 04:56:52 +00:00
*)
2011-08-09 20:28:48 +00:00
PATCH_OR_DEFECT = $i
2009-05-19 04:56:52 +00:00
; ;
2011-08-09 20:28:48 +00:00
esac
done
if [ -z " $PATCH_OR_DEFECT " ] ; then
printUsage
exit 1
fi
if [ [ $JENKINS = = "true" ] ] ; then
echo "Running in Jenkins mode"
defect = $PATCH_OR_DEFECT
ECLIPSE_PROPERTY = " -Declipse.home= $ECLIPSE_HOME "
else
echo "Running in developer mode"
JENKINS = false
### PATCH_FILE contains the location of the patchfile
PATCH_FILE = $PATCH_OR_DEFECT
if [ [ ! -e " $PATCH_FILE " ] ] ; then
echo " Unable to locate the patch file $PATCH_FILE "
cleanupAndExit 0
fi
### Check if $PATCH_DIR exists. If it does not exist, create a new directory
if [ [ ! -e " $PATCH_DIR " ] ] ; then
mkdir " $PATCH_DIR "
if [ [ $? = = 0 ] ] ; then
echo " $PATCH_DIR has been created "
else
echo " Unable to create $PATCH_DIR "
cleanupAndExit 0
fi
fi
### Obtain the patch filename to append it to the version number
defect = ` basename $PATCH_FILE `
fi
2009-05-19 04:56:52 +00:00
}
###############################################################################
checkout ( ) {
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Testing patch for ${ defect } . "
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
### When run by a developer, if the workspace contains modifications, do not continue
2011-08-09 20:28:48 +00:00
### unless the --dirty-workspace option was set
2009-06-01 16:06:19 +00:00
status = ` $SVN stat --ignore-externals | sed -e '/^X[ ]*/D' `
2011-08-09 20:28:48 +00:00
if [ [ $JENKINS = = "false" ] ] ; then
if [ [ " $status " != "" && -z $DIRTY_WORKSPACE ] ] ; then
2009-05-19 04:56:52 +00:00
echo "ERROR: can't run in a workspace that contains the following modifications"
echo " $status "
cleanupAndExit 1
fi
2011-08-02 16:37:57 +00:00
echo
2009-05-19 04:56:52 +00:00
else
cd $BASEDIR
$SVN revert -R .
rm -rf ` $SVN status --no-ignore`
$SVN update
fi
return $?
}
###############################################################################
setup ( ) {
### Download latest patch file (ignoring .htm and .html) when run from patch process
2011-08-09 20:28:48 +00:00
if [ [ $JENKINS = = "true" ] ] ; then
2009-05-19 04:56:52 +00:00
$WGET -q -O $PATCH_DIR /jira http://issues.apache.org/jira/browse/$defect
if [ [ ` $GREP -c 'Patch Available' $PATCH_DIR /jira` = = 0 ] ] ; then
echo " $defect is not \"Patch Available\". Exiting. "
cleanupAndExit 0
fi
relativePatchURL = ` $GREP -o '"/jira/secure/attachment/[0-9]*/[^"]*' $PATCH_DIR /jira | $GREP -v -e 'htm[l]*$' | sort | tail -1 | $GREP -o '/jira/secure/attachment/[0-9]*/[^"]*' `
patchURL = " http://issues.apache.org ${ relativePatchURL } "
patchNum = ` echo $patchURL | $GREP -o '[0-9]*/' | $GREP -o '[0-9]*' `
echo " $defect patch is being downloaded at `date` from "
echo " $patchURL "
$WGET -q -O $PATCH_DIR /patch $patchURL
VERSION = ${ SVN_REVISION } _${ defect } _PATCH-${ patchNum }
JIRA_COMMENT = " Here are the results of testing the latest attachment
$patchURL
against trunk revision ${ SVN_REVISION } ."
### Copy in any supporting files needed by this process
cp -r $SUPPORT_DIR /lib/* ./lib
#PENDING: cp -f $SUPPORT_DIR/etc/checkstyle* ./src/test
### Copy the patch file to $PATCH_DIR
else
VERSION = PATCH-${ defect }
cp $PATCH_FILE $PATCH_DIR /patch
if [ [ $? = = 0 ] ] ; then
echo " Patch file $PATCH_FILE copied to $PATCH_DIR "
else
echo " Could not copy $PATCH_FILE to $PATCH_DIR "
cleanupAndExit 0
fi
fi
2011-08-11 16:49:59 +00:00
. $BASEDIR /dev-support/test-patch.properties
2010-11-02 05:33:05 +00:00
### exit if warnings are NOT defined in the properties file
if [ -z " $OK_FINDBUGS_WARNINGS " ] || [ [ -z " $OK_JAVADOC_WARNINGS " ] ] || [ [ -z $OK_RELEASEAUDIT_WARNINGS ] ] ; then
echo "Please define the following properties in test-patch.properties file"
echo "OK_FINDBUGS_WARNINGS"
echo "OK_RELEASEAUDIT_WARNINGS"
2010-11-19 04:13:08 +00:00
echo "OK_JAVADOC_WARNINGS"
2010-11-02 05:33:05 +00:00
cleanupAndExit 1
fi
2009-05-19 04:56:52 +00:00
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
2010-11-02 05:33:05 +00:00
echo " Pre-build trunk to verify trunk stability and javac warnings"
2009-05-19 04:56:52 +00:00
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
2011-09-08 18:39:11 +00:00
if [ [ ! -d hadoop-common-project ] ] ; then
cd $bindir /..
echo " Compiling $( pwd ) "
echo " $MVN clean test -DskipTests > $PATCH_DIR /trunkCompile.txt 2>&1 "
$MVN clean test -DskipTests > $PATCH_DIR /trunkCompile.txt 2>& 1
if [ [ $? != 0 ] ] ; then
echo "Top-level trunk compilation is broken?"
cleanupAndExit 1
fi
cd -
fi
echo " Compiling $( pwd ) "
2011-08-29 18:24:21 +00:00
echo " $MVN clean test -DskipTests -D ${ PROJECT_NAME } PatchProcess -Ptest-patch > $PATCH_DIR /trunkJavacWarnings.txt 2>&1 "
$MVN clean test -DskipTests -D${ PROJECT_NAME } PatchProcess -Ptest-patch > $PATCH_DIR /trunkJavacWarnings.txt 2>& 1
2009-05-19 04:56:52 +00:00
if [ [ $? != 0 ] ] ; then
echo "Trunk compilation is broken?"
cleanupAndExit 1
fi
}
###############################################################################
### Check for @author tags in the patch
checkAuthor ( ) {
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Checking there are no @author tags in the patch."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
authorTags = ` $GREP -c -i '@author' $PATCH_DIR /patch`
echo " There appear to be $authorTags @author tags in the patch. "
if [ [ $authorTags != 0 ] ] ; then
JIRA_COMMENT = " $JIRA_COMMENT
-1 @author. The patch appears to contain $authorTags @author tags which the Hadoop community has agreed to not allow in code contributions."
return 1
fi
JIRA_COMMENT = " $JIRA_COMMENT
+1 @author. The patch does not contain any @author tags."
return 0
}
###############################################################################
### Check for tests in the patch
checkTests ( ) {
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Checking there are new or changed tests in the patch."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
testReferences = ` $GREP -c -i '/test' $PATCH_DIR /patch`
echo " There appear to be $testReferences test files referenced in the patch. "
if [ [ $testReferences = = 0 ] ] ; then
2011-08-09 20:28:48 +00:00
if [ [ $JENKINS = = "true" ] ] ; then
2009-05-19 04:56:52 +00:00
patchIsDoc = ` $GREP -c -i 'title="documentation' $PATCH_DIR /jira`
if [ [ $patchIsDoc != 0 ] ] ; then
echo "The patch appears to be a documentation patch that doesn't require tests."
JIRA_COMMENT = " $JIRA_COMMENT
+0 tests included. The patch appears to be a documentation patch that doesn' t require tests."
return 0
fi
fi
JIRA_COMMENT = " $JIRA_COMMENT
-1 tests included. The patch doesn' t appear to include any new or modified tests.
2009-06-23 04:45:15 +00:00
Please justify why no new tests are needed for this patch.
Also please list what manual steps were performed to verify this patch."
2009-05-19 04:56:52 +00:00
return 1
fi
JIRA_COMMENT = " $JIRA_COMMENT
+1 tests included. The patch appears to include $testReferences new or modified tests."
return 0
}
2009-09-15 13:17:07 +00:00
cleanUpXml ( ) {
cd $BASEDIR /conf
for file in ` ls *.xml.template`
do
rm -f ` basename $file .template`
done
cd $BASEDIR
}
2009-05-19 04:56:52 +00:00
###############################################################################
### Attempt to apply the patch
applyPatch ( ) {
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Applying patch."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
2011-06-14 15:05:39 +00:00
export PATCH
$bindir /smart-apply-patch.sh $PATCH_DIR /patch
2009-05-19 04:56:52 +00:00
if [ [ $? != 0 ] ] ; then
echo "PATCH APPLICATION FAILED"
JIRA_COMMENT = " $JIRA_COMMENT
-1 patch. The patch command could not apply the patch."
return 1
fi
return 0
}
###############################################################################
### Check there are no javadoc warnings
checkJavadocWarnings ( ) {
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Determining number of patched javadoc warnings."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
2011-08-29 18:24:21 +00:00
echo " $MVN clean test javadoc:javadoc -DskipTests -Pdocs -D ${ PROJECT_NAME } PatchProcess > $PATCH_DIR /patchJavadocWarnings.txt 2>&1 "
2011-08-11 16:49:59 +00:00
if [ -d hadoop-project ] ; then
( cd hadoop-project; $MVN install)
fi
2011-08-25 19:31:02 +00:00
if [ -d hadoop-common-project/hadoop-annotations ] ; then
( cd hadoop-common-project/hadoop-annotations; $MVN install)
2011-08-11 16:49:59 +00:00
fi
2011-08-29 18:24:21 +00:00
$MVN clean test javadoc:javadoc -DskipTests -Pdocs -D${ PROJECT_NAME } PatchProcess > $PATCH_DIR /patchJavadocWarnings.txt 2>& 1
2011-08-05 14:28:30 +00:00
javadocWarnings = ` $GREP '\[WARNING\]' $PATCH_DIR /patchJavadocWarnings.txt | $AWK '/Javadoc Warnings/,EOF' | $GREP warning | $AWK 'BEGIN {total = 0} {total += 1} END {print total}' `
2009-05-19 04:56:52 +00:00
echo ""
echo ""
echo " There appear to be $javadocWarnings javadoc warnings generated by the patched build. "
2010-11-02 05:33:05 +00:00
### if current warnings greater than OK_JAVADOC_WARNINGS
2011-11-11 21:16:27 +00:00
if [ [ $javadocWarnings -gt $OK_JAVADOC_WARNINGS ] ] ; then
2009-05-19 04:56:52 +00:00
JIRA_COMMENT = " $JIRA_COMMENT
2010-11-02 05:33:05 +00:00
-1 javadoc. The javadoc tool appears to have generated ` expr $(( $javadocWarnings - $OK_JAVADOC_WARNINGS )) ` warning messages."
2009-05-19 04:56:52 +00:00
return 1
fi
JIRA_COMMENT = " $JIRA_COMMENT
+1 javadoc. The javadoc tool did not generate any warning messages."
2010-11-02 05:33:05 +00:00
return 0
2009-05-19 04:56:52 +00:00
}
###############################################################################
### Check there are no changes in the number of Javac warnings
checkJavacWarnings ( ) {
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Determining number of patched javac warnings."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
2011-08-29 18:24:21 +00:00
echo " $MVN clean test -DskipTests -D ${ PROJECT_NAME } PatchProcess -Ptest-patch > $PATCH_DIR /patchJavacWarnings.txt 2>&1 "
$MVN clean test -DskipTests -D${ PROJECT_NAME } PatchProcess -Ptest-patch > $PATCH_DIR /patchJavacWarnings.txt 2>& 1
2009-08-04 19:01:51 +00:00
if [ [ $? != 0 ] ] ; then
JIRA_COMMENT = " $JIRA_COMMENT
2009-05-19 04:56:52 +00:00
2009-08-04 19:01:51 +00:00
-1 javac. The patch appears to cause tar ant target to fail."
return 1
fi
2009-05-19 04:56:52 +00:00
### Compare trunk and patch javac warning numbers
if [ [ -f $PATCH_DIR /patchJavacWarnings.txt ] ] ; then
2011-08-05 14:28:30 +00:00
trunkJavacWarnings = ` $GREP '\[WARNING\]' $PATCH_DIR /trunkJavacWarnings.txt | $AWK 'BEGIN {total = 0} {total += 1} END {print total}' `
patchJavacWarnings = ` $GREP '\[WARNING\]' $PATCH_DIR /patchJavacWarnings.txt | $AWK 'BEGIN {total = 0} {total += 1} END {print total}' `
2009-05-19 04:56:52 +00:00
echo " There appear to be $trunkJavacWarnings javac compiler warnings before the patch and $patchJavacWarnings javac compiler warnings after applying the patch. "
if [ [ $patchJavacWarnings != "" && $trunkJavacWarnings != "" ] ] ; then
2009-07-01 00:56:15 +00:00
if [ [ $patchJavacWarnings -gt $trunkJavacWarnings ] ] ; then
2009-05-19 04:56:52 +00:00
JIRA_COMMENT = " $JIRA_COMMENT
-1 javac. The applied patch generated $patchJavacWarnings javac compiler warnings ( more than the trunk' s current $trunkJavacWarnings warnings) ."
return 1
fi
fi
fi
JIRA_COMMENT = " $JIRA_COMMENT
+1 javac. The applied patch does not increase the total number of javac compiler warnings."
return 0
}
###############################################################################
### Check there are no changes in the number of release audit (RAT) warnings
checkReleaseAuditWarnings ( ) {
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Determining number of patched release audit warnings."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
2011-08-09 20:28:48 +00:00
echo " $MVN apache-rat:check -D ${ PROJECT_NAME } PatchProcess 2>&1 "
2011-08-05 14:28:30 +00:00
$MVN apache-rat:check -D${ PROJECT_NAME } PatchProcess 2>& 1
2011-08-24 21:35:38 +00:00
find $BASEDIR -name rat.txt | xargs cat > $PATCH_DIR /patchReleaseAuditWarnings.txt
2009-05-19 04:56:52 +00:00
### Compare trunk and patch release audit warning numbers
if [ [ -f $PATCH_DIR /patchReleaseAuditWarnings.txt ] ] ; then
patchReleaseAuditWarnings = ` $GREP -c '\!?????' $PATCH_DIR /patchReleaseAuditWarnings.txt`
echo ""
echo ""
2010-11-02 05:33:05 +00:00
echo " There appear to be $OK_RELEASEAUDIT_WARNINGS release audit warnings before the patch and $patchReleaseAuditWarnings release audit warnings after applying the patch. "
if [ [ $patchReleaseAuditWarnings != "" && $OK_RELEASEAUDIT_WARNINGS != "" ] ] ; then
if [ [ $patchReleaseAuditWarnings -gt $OK_RELEASEAUDIT_WARNINGS ] ] ; then
2009-05-19 04:56:52 +00:00
JIRA_COMMENT = " $JIRA_COMMENT
2010-11-02 05:33:05 +00:00
-1 release audit. The applied patch generated $patchReleaseAuditWarnings release audit warnings ( more than the trunk' s current $OK_RELEASEAUDIT_WARNINGS warnings) ."
2009-05-19 04:56:52 +00:00
$GREP '\!?????' $PATCH_DIR /patchReleaseAuditWarnings.txt > $PATCH_DIR /patchReleaseAuditProblems.txt
2010-11-05 03:48:48 +00:00
echo "Lines that start with ????? in the release audit report indicate files that do not have an Apache license header." >> $PATCH_DIR /patchReleaseAuditProblems.txt
2010-11-02 05:33:05 +00:00
JIRA_COMMENT_FOOTER = " Release audit warnings: $BUILD_URL /artifact/trunk/patchprocess/patchReleaseAuditProblems.txt
2009-05-19 04:56:52 +00:00
$JIRA_COMMENT_FOOTER "
return 1
fi
fi
fi
JIRA_COMMENT = " $JIRA_COMMENT
+1 release audit. The applied patch does not increase the total number of release audit warnings."
return 0
}
###############################################################################
### Check there are no changes in the number of Checkstyle warnings
checkStyle ( ) {
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Determining number of patched checkstyle warnings."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
echo "THIS IS NOT IMPLEMENTED YET"
echo ""
echo ""
2011-08-29 18:24:21 +00:00
echo " $MVN test checkstyle:checkstyle -DskipTests -D ${ PROJECT_NAME } PatchProcess "
$MVN test checkstyle:checkstyle -DskipTests -D${ PROJECT_NAME } PatchProcess
2011-08-02 16:37:57 +00:00
2010-10-25 18:59:28 +00:00
JIRA_COMMENT_FOOTER = " Checkstyle results: $BUILD_URL /artifact/trunk/build/test/checkstyle-errors.html
2009-05-19 04:56:52 +00:00
$JIRA_COMMENT_FOOTER "
### TODO: calculate actual patchStyleErrors
# patchStyleErrors=0
# if [[ $patchStyleErrors != 0 ]] ; then
# JIRA_COMMENT="$JIRA_COMMENT
#
# -1 checkstyle. The patch generated $patchStyleErrors code style errors."
# return 1
# fi
# JIRA_COMMENT="$JIRA_COMMENT
#
# +1 checkstyle. The patch generated 0 code style errors."
return 0
}
###############################################################################
### Check there are no changes in the number of Findbugs warnings
checkFindbugsWarnings ( ) {
2010-11-19 00:44:11 +00:00
findbugs_version = ` ${ FINDBUGS_HOME } /bin/findbugs -version`
2009-05-19 04:56:52 +00:00
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Determining number of patched Findbugs warnings."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
2011-08-29 18:24:21 +00:00
echo " $MVN clean test findbugs:findbugs -DskipTests -D ${ PROJECT_NAME } PatchProcess "
$MVN clean test findbugs:findbugs -DskipTests -D${ PROJECT_NAME } PatchProcess < /dev/null
2011-08-02 16:37:57 +00:00
2009-05-19 04:56:52 +00:00
if [ $? != 0 ] ; then
JIRA_COMMENT = " $JIRA_COMMENT
2010-11-19 00:44:11 +00:00
-1 findbugs. The patch appears to cause Findbugs ( version ${ findbugs_version } ) to fail."
2009-05-19 04:56:52 +00:00
return 1
fi
2011-08-11 16:49:59 +00:00
findbugsWarnings = 0
for file in $( find $BASEDIR -name findbugsXml.xml)
do
relative_file = ${ file # $BASEDIR / } # strip leading $BASEDIR prefix
if [ ! $relative_file = = "target/findbugsXml.xml" ] ; then
module_suffix = ${ relative_file %/target/findbugsXml.xml } # strip trailing path
2011-08-25 19:31:02 +00:00
module_suffix = ` basename ${ module_suffix } `
2011-08-11 16:49:59 +00:00
fi
cp $file $PATCH_DIR /patchFindbugsWarnings${ module_suffix } .xml
$FINDBUGS_HOME /bin/setBugDatabaseInfo -timestamp "01/01/2000" \
$PATCH_DIR /patchFindbugsWarnings${ module_suffix } .xml \
$PATCH_DIR /patchFindbugsWarnings${ module_suffix } .xml
newFindbugsWarnings = ` $FINDBUGS_HOME /bin/filterBugs -first "01/01/2000" $PATCH_DIR /patchFindbugsWarnings${ module_suffix } .xml \
$PATCH_DIR /newPatchFindbugsWarnings${ module_suffix } .xml | $AWK '{print $1}' `
echo " Found $newFindbugsWarnings Findbugs warnings ( $file ) "
findbugsWarnings = $(( findbugsWarnings+newFindbugsWarnings))
$FINDBUGS_HOME /bin/convertXmlToText -html \
$PATCH_DIR /newPatchFindbugsWarnings${ module_suffix } .xml \
$PATCH_DIR /newPatchFindbugsWarnings${ module_suffix } .html
2011-09-12 11:22:38 +00:00
if [ [ $newFindbugsWarnings > 0 ] ] ; then
JIRA_COMMENT_FOOTER = " Findbugs warnings: $BUILD_URL /artifact/trunk/ $( basename $BASEDIR ) /patchprocess/newPatchFindbugsWarnings ${ module_suffix } .html
2009-05-19 04:56:52 +00:00
$JIRA_COMMENT_FOOTER "
2011-09-12 11:22:38 +00:00
fi
2011-08-11 16:49:59 +00:00
done
2010-11-02 05:33:05 +00:00
### if current warnings greater than OK_FINDBUGS_WARNINGS
2011-11-11 21:16:27 +00:00
if [ [ $findbugsWarnings -gt $OK_FINDBUGS_WARNINGS ] ] ; then
2009-05-19 04:56:52 +00:00
JIRA_COMMENT = " $JIRA_COMMENT
2010-11-19 00:44:11 +00:00
-1 findbugs. The patch appears to introduce ` expr $(( $findbugsWarnings - $OK_FINDBUGS_WARNINGS )) ` new Findbugs ( version ${ findbugs_version } ) warnings."
2009-05-19 04:56:52 +00:00
return 1
fi
JIRA_COMMENT = " $JIRA_COMMENT
2010-11-19 00:44:11 +00:00
+1 findbugs. The patch does not introduce any new Findbugs ( version ${ findbugs_version } ) warnings."
2009-05-19 04:56:52 +00:00
return 0
}
2011-12-12 20:45:30 +00:00
###############################################################################
### Verify eclipse:eclipse works
checkEclipseGeneration ( ) {
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Running mvn eclipse:eclipse."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
echo " $MVN eclipse:eclipse -D ${ PROJECT_NAME } PatchProcess "
$MVN eclipse:eclipse -D${ PROJECT_NAME } PatchProcess
if [ [ $? != 0 ] ] ; then
JIRA_COMMENT = " $JIRA_COMMENT
-1 eclipse:eclipse. The patch failed to build with eclipse:eclipse."
return 1
fi
JIRA_COMMENT = " $JIRA_COMMENT
+1 eclipse:eclipse. The patch built with eclipse:eclipse."
return 0
}
2009-05-19 04:56:52 +00:00
###############################################################################
2011-08-24 21:35:38 +00:00
### Run the tests
runTests ( ) {
2009-05-19 04:56:52 +00:00
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
2011-08-24 21:35:38 +00:00
echo " Running tests."
2009-05-19 04:56:52 +00:00
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
2011-10-18 23:48:15 +00:00
2011-10-27 00:13:31 +00:00
echo " $MVN clean install -Pnative -D ${ PROJECT_NAME } PatchProcess "
$MVN clean install -Pnative -D${ PROJECT_NAME } PatchProcess
2011-09-08 18:39:11 +00:00
if [ [ $? != 0 ] ] ; then
### Find and format names of failed tests
failed_tests = ` find . -name 'TEST*.xml' | xargs $GREP -l -E "<failure|<error" | sed -e "s|.*target/surefire-reports/TEST-| |g" | sed -e "s|\.xml||g" `
2011-10-18 23:48:15 +00:00
if [ [ -n " $failed_tests " ] ] ; then
JIRA_COMMENT = " $JIRA_COMMENT
2009-05-19 04:56:52 +00:00
2011-08-24 21:35:38 +00:00
-1 core tests. The patch failed these unit tests:
2010-11-19 00:44:11 +00:00
$failed_tests "
2011-10-18 23:48:15 +00:00
else
JIRA_COMMENT = " $JIRA_COMMENT
-1 core tests. The patch failed the unit tests build"
fi
2009-05-19 04:56:52 +00:00
return 1
fi
JIRA_COMMENT = " $JIRA_COMMENT
2011-08-24 21:35:38 +00:00
+1 core tests. The patch passed unit tests in $modules ."
2009-05-19 04:56:52 +00:00
return 0
}
###############################################################################
### Run the test-contrib target
runContribTests ( ) {
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Running contrib tests."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
2011-05-16 19:42:52 +00:00
if [ [ ` $GREP -c 'test-contrib' build.xml` = = 0 ] ] ; then
echo "No contrib tests in this project."
return 0
fi
2009-05-19 04:56:52 +00:00
### Kill any rogue build processes from the last attempt
2011-08-09 20:28:48 +00:00
$PS auxwww | $GREP ${ PROJECT_NAME } PatchProcess | $AWK '{print $2}' | /usr/bin/xargs -t -I { } /bin/kill -9 { } > /dev/null
2009-05-19 04:56:52 +00:00
2011-08-02 16:37:57 +00:00
#echo "$ANT_HOME/bin/ant -Dversion="${VERSION}" $ECLIPSE_PROPERTY -DHadoopPatchProcess= -Dtest.junit.output.format=xml -Dtest.output=no test-contrib"
#$ANT_HOME/bin/ant -Dversion="${VERSION}" $ECLIPSE_PROPERTY -DHadoopPatchProcess= -Dtest.junit.output.format=xml -Dtest.output=no test-contrib
echo "NOP"
2009-05-19 04:56:52 +00:00
if [ [ $? != 0 ] ] ; then
JIRA_COMMENT = " $JIRA_COMMENT
-1 contrib tests. The patch failed contrib unit tests."
return 1
fi
JIRA_COMMENT = " $JIRA_COMMENT
+1 contrib tests. The patch passed contrib unit tests."
return 0
}
2010-08-30 01:31:56 +00:00
###############################################################################
### Run the inject-system-faults target
checkInjectSystemFaults ( ) {
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Checking the integrity of system test framework code."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
### Kill any rogue build processes from the last attempt
2011-08-09 20:28:48 +00:00
$PS auxwww | $GREP ${ PROJECT_NAME } PatchProcess | $AWK '{print $2}' | /usr/bin/xargs -t -I { } /bin/kill -9 { } > /dev/null
2010-08-30 01:31:56 +00:00
2011-08-02 16:37:57 +00:00
#echo "$ANT_HOME/bin/ant -Dversion="${VERSION}" -DHadoopPatchProcess= -Dtest.junit.output.format=xml -Dtest.output=no -Dcompile.c++=yes -Dforrest.home=$FORREST_HOME inject-system-faults"
#$ANT_HOME/bin/ant -Dversion="${VERSION}" -DHadoopPatchProcess= -Dtest.junit.output.format=xml -Dtest.output=no -Dcompile.c++=yes -Dforrest.home=$FORREST_HOME inject-system-faults
echo "NOP"
2011-08-24 21:35:38 +00:00
return 0
2010-08-30 01:31:56 +00:00
if [ [ $? != 0 ] ] ; then
JIRA_COMMENT = " $JIRA_COMMENT
2010-11-02 05:33:05 +00:00
-1 system test framework. The patch failed system test framework compile."
2010-08-30 01:31:56 +00:00
return 1
fi
JIRA_COMMENT = " $JIRA_COMMENT
2010-11-02 05:33:05 +00:00
+1 system test framework. The patch passed system test framework compile."
2010-08-30 01:31:56 +00:00
return 0
}
2009-05-19 04:56:52 +00:00
###############################################################################
### Submit a comment to the defect's Jira
submitJiraComment ( ) {
local result = $1
### Do not output the value of JIRA_COMMENT_FOOTER when run by a developer
2011-08-09 20:28:48 +00:00
if [ [ $JENKINS = = "false" ] ] ; then
2009-05-19 04:56:52 +00:00
JIRA_COMMENT_FOOTER = ""
fi
if [ [ $result = = 0 ] ] ; then
comment = " +1 overall. $JIRA_COMMENT
$JIRA_COMMENT_FOOTER "
else
comment = " -1 overall. $JIRA_COMMENT
$JIRA_COMMENT_FOOTER "
fi
### Output the test result to the console
echo "
$comment "
2011-08-09 20:28:48 +00:00
if [ [ $JENKINS = = "true" ] ] ; then
2009-05-19 04:56:52 +00:00
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Adding comment to Jira."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
### Update Jira with a comment
export USER = hudson
2010-04-15 03:08:09 +00:00
$JIRACLI -s https://issues.apache.org/jira -a addcomment -u hadoopqa -p $JIRA_PASSWD --comment " $comment " --issue $defect
$JIRACLI -s https://issues.apache.org/jira -a logout -u hadoopqa -p $JIRA_PASSWD
2009-05-19 04:56:52 +00:00
fi
}
###############################################################################
### Cleanup files
cleanupAndExit ( ) {
local result = $1
2011-08-09 20:28:48 +00:00
if [ [ $JENKINS = = "true" ] ] ; then
2009-05-19 04:56:52 +00:00
if [ -e " $PATCH_DIR " ] ; then
mv $PATCH_DIR $BASEDIR
fi
fi
echo ""
echo ""
echo "======================================================================"
echo "======================================================================"
echo " Finished build."
echo "======================================================================"
echo "======================================================================"
echo ""
echo ""
exit $result
}
###############################################################################
###############################################################################
###############################################################################
JIRA_COMMENT = ""
2010-10-25 18:59:28 +00:00
JIRA_COMMENT_FOOTER = " Console output: $BUILD_URL /console
2009-05-19 04:56:52 +00:00
This message is automatically generated."
### Check if arguments to the script have been specified properly or not
parseArgs $@
cd $BASEDIR
checkout
RESULT = $?
2011-08-09 20:28:48 +00:00
if [ [ $JENKINS = = "true" ] ] ; then
2009-05-19 04:56:52 +00:00
if [ [ $RESULT != 0 ] ] ; then
exit 100
fi
fi
setup
checkAuthor
RESULT = $?
2011-08-09 20:28:48 +00:00
if [ [ $JENKINS = = "true" ] ] ; then
2009-09-15 13:17:07 +00:00
cleanUpXml
fi
2009-11-03 22:53:08 +00:00
checkTests
2009-05-19 04:56:52 +00:00
( ( RESULT = RESULT + $? ) )
applyPatch
if [ [ $? != 0 ] ] ; then
submitJiraComment 1
cleanupAndExit 1
fi
checkJavadocWarnings
( ( RESULT = RESULT + $? ) )
checkJavacWarnings
( ( RESULT = RESULT + $? ) )
2011-12-12 20:45:30 +00:00
checkEclipseGeneration
( ( RESULT = RESULT + $? ) )
2010-11-02 05:33:05 +00:00
### Checkstyle not implemented yet
#checkStyle
#(( RESULT = RESULT + $? ))
2009-05-19 04:56:52 +00:00
checkFindbugsWarnings
( ( RESULT = RESULT + $? ) )
checkReleaseAuditWarnings
( ( RESULT = RESULT + $? ) )
2011-09-08 18:39:11 +00:00
### Run tests for Jenkins or if explictly asked for by a developer
if [ [ $JENKINS = = "true" || $RUN_TESTS = = "true" ] ] ; then
2011-08-24 21:35:38 +00:00
runTests
2009-05-19 04:56:52 +00:00
( ( RESULT = RESULT + $? ) )
runContribTests
( ( RESULT = RESULT + $? ) )
fi
2010-08-30 01:31:56 +00:00
checkInjectSystemFaults
( ( RESULT = RESULT + $? ) )
2010-10-25 18:59:28 +00:00
JIRA_COMMENT_FOOTER = " Test results: $BUILD_URL /testReport/
2009-05-19 04:56:52 +00:00
$JIRA_COMMENT_FOOTER "
submitJiraComment $RESULT
cleanupAndExit $RESULT