1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
|
#!/bin/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.
TOOLDIR="${DERBYDIR}/${BRANCH_DIR}/tools/testing/reporting/scripts"
. ${TOOLDIR}/env
SHOWDETAILS=""
PRESENTATION="Limited"
if [ "$1" = "details" ]
then
# Show details
SHOWDETAILS="ShowDetails"
PRESENTATION="Full"
fi
# We have one catalog per platform
if [ ! -e ${TESTLOGDIR} ]
then
echo "${TESTLOGDIR} does not exist"
exit
fi
# Get the list of testsuite we are running:
TESTLISTFILE="${DERBYDIR}/testing/showtestlist"
SUITES=`gawk '{ print $1 }' ${TESTLISTFILE} | grep -v "^#"`
# Get the set of platforms
cd ${TESTLOGDIR}
PLATFORMS=`ls`
TESTID=`echo ${DERBYDIR} | gawk -F/ '{ print $NF }'`
# Derby | TinderBox_Derby | XDerbyX | myDerbySandbox | jvm1.5 ....
TINDER=`echo "${TESTID}" | grep TinderBox` # Contains TinderBox
LARGEDATA=`echo "${TESTID}" | grep LargeData` # Contains LargeData
# Get the list of revisions
REVISIONSFILE="${DERBYDIR}/testing/revisionlist"
# head -60 to reduce to approx. last 3 months of daily tests (otherwise last 60 - ..TinderBox)
# head -16 to reduce to approx. last 2 weeks of daily tests (otherwise last 16 - ..TinderBox)
NREVS=16
if [ "${TINDER}" != "" ]
then
NREVS=32
fi
# Update summary info for top level sandbox page:
CUR_REV=`gawk '{ print $1 }' ${REVISIONSFILE} | grep -v "^#" | head -1`
${TOOLDIR}/mkSandBoxSummary ${CUR_REV} "$1"
#
REVISIONS=`gawk '{ print $1 }' ${REVISIONSFILE} | grep -v "^#" | head -${NREVS}`
# LASTUPDATEREV=`gawk '{ print $1 }' ${REVISIONSFILE} | grep -v "^#" | head -1 `
PREVUPDATEREV=`gawk '{ print $1 }' ${REVISIONSFILE} | grep -v "^#" | head -2 | tail -1`
# If we use LASTUPDATEREV ~ head -1 svn log may not report the last update.... See below.
# DTI="${DERBYDIR}/testing/testSummary.html"
DTI="${DERBYDIR}/testing/${PRESENTATION}/index.html"
DTIPUB="${PUBLISHDIR}/${PRESENTATION}/index.html"
PUBLICREGRESSIONTESTMSG="<P>We provide daily regression test results based on the Apache Derby test suites. The regression tests are executed on several platforms.</P>"
INTERNALREGRESSIONTESTMSG="<P>We currently run the Derby test suites on a number of platforms available at ${WHOWEAREINTERN}.</P>"
if [ "${TINDER}" != "" ]
then
PUBLICREGRESSIONTESTMSG="<P>\"<em>Tinderbox</em>\" testing is performed when updates to the Derby source code repository is detected. This is done on one single test platform.</P>"
INTERNALREGRESSIONTESTMSG="${PUBLICREGRESSIONTESTMSG}"
fi
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">" > ${DTI}
echo "<html> <head>" >> ${DTI}
chmod go+r ${DTI}
if [ "$1" = "details" ]
then
echo "<title>Derby @ ${WHOWEARE} Regression Test Results [${TESTID}]</title>" >> ${DTI}
else
echo "<title>Apache Derby Open Source Database, Regression Test Results [${TESTID}]</title>" >> ${DTI}
fi
echo "</head>" >> ${DTI}
echo "<body>" >> ${DTI}
if [ "$1" != "details" ]
then
# echo "<br><font size=\"+1\"><b><a href=\"http://db.apache.org/derby\" target=\"_top\">Apache Derby</a></b></font> is an open source, 100% Java SQL Database." >> ${DTI}
echo "<table style=\"text-align: left; width: 100%;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">" >> ${DTI}
echo " <tbody>" >> ${DTI}
echo " <tr>" >> ${DTI}
echo " <td style=\"vertical-align: bottom;\"><font size=\"+1\"><b>" >> ${DTI}
echo " <a href=\"http://db.apache.org/derby\" target=\"_top\">Apache Derby" >> ${DTI}
echo " </a></b></font> is an open source, 100% Java SQL Database." >> ${DTI}
echo " </td>" >> ${DTI}
echo " </tr>" >> ${DTI}
echo " </tbody>" >> ${DTI}
echo "</table>" >> ${DTI}
echo "<HR>" >> ${DTI}
fi
if [ "$1" = "details" ]
then
echo "<h2>Derby @ ${WHOWEARE} Regression Test Results [${TESTID}]" >> ${DTI}
echo "  " >> ${DTI}
echo " <font size=-1>[<a href=\"InternalURL\">All ${WHOWEARE} Derby Tests</a>]</font>" >> ${DTI}
echo "</h2>" >> ${DTI}
echo "<a href=\"${INTERNHREF}\">" >> ${DTI}
### UNCOMMENT IF YOU HAVE A LOGO. echo "<img style=\"border: 0px solid\" src=\"${WHOWEARELOGO}\" alt=\"${WHOWEAREALT}\"><br>" >> ${DTI}
echo "<i>${WHOWEARELONG}</i><p/>" >> ${DTI}
echo "</a>" >> ${DTI}
echo "${INTERNALREGRESSIONTESTMSG}" >> ${DTI}
else
echo "<h2>Derby Regression Test Results [${TESTID}]" >> ${DTI}
echo "  " >> ${DTI}
echo " <font size=-1>[<a href=\"externalURL\">All ${WHOWEARE} Derby Tests</a>]</font>" >> ${DTI}
echo "</h2>" >> ${DTI}
echo "<i>${WHOWEARELONG}</i><p/>" >> ${DTI}
echo "${PUBLICREGRESSIONTESTMSG}" >> ${DTI}
fi
echo "<P></P>" >> ${DTI}
echo "<P><a href="testSummary-current.html">Results of the latest testrun</a> started. This will show NA for test suites not yet completed.</P>" >> ${DTI}
echo "<P><a href="testSummary-previous.html">Results of the previous testrun.</a></P>" >> ${DTI}
THISPWD=`pwd`
cd ${derby_source}
echo "Latest Derby revision: " >> ${DTI}
svn log -r${PREVUPDATEREV}:HEAD | grep "lines$" | grep "|" | tail -1 | sed -e 's/^r//' | gawk -F\| '{ print $1"["$3"]" }' >> ${DTI}
echo " per " >> ${DTI}
cd ${THISPWD}
date +%Y-%m-%d" "%H:%M:%S" "%Z >> ${DTI}
echo "<BR>" >> ${DTI}
echo "<h3>Tested Revisions</h3>" >> ${DTI}
TDB="TD style=\"vertical-align: bottom;\""
TDT="TD style=\"vertical-align: top;\""
DURHD="<$TDB></TD>"
if [ "${TINDER}" != "" ] || [ "${LARGEDATA}" != "" ]
then # Show duration %
SHOWDURSUITE="Derbyall"
if [ "${LARGEDATA}" != "" ]
then
SHOWDURSUITE="LargeData"
fi
DURHD="<$TDB><i> ${SHOWDURSUITE}<br> duration<br> vs baseline </i></TD>"
fi
FOOTPRINTBASEREV=`head -1 ${DERBYDIR}/testing/builds/baseline.size | gawk -F\# '{ print $2 }'`
# TS=`cat ${UPDATELOGDIR}/${FOOTPRINTBASEREV}/UpdateTime`
TS=`head -2 ${DERBYDIR}/testing/builds/baseline.size | tail -1| gawk -F\# '{ print $2 }'`
BGCOLOR="bgcolor=\"${COLOR0}\""
echo "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\">" >> ${DTI}
echo "<TR ${BGCOLOR} >" >> ${DTI}
echo "<$TDB><i> Revision </i></TD>" >> ${DTI}
echo "<$TDB><i> Date, Time </i></TD>" >> ${DTI}
echo "<$TDB><i> Changes </i></TD>" >> ${DTI}
echo "<$TDB><i> Size of derby.jar<br> </i>[Baseline: ${FOOTPRINTBASEREV}<br> ${TS}]</TD>" >> ${DTI}
echo "<$TDB><i> Derbyall<br> failures </i></TD>" >> ${DTI}
echo "${DURHD}" >> ${DTI}
echo "<$TDB><i> Notes </i></TD>" >> ${DTI}
echo "</TR>" >> ${DTI}
SANDBOX=`basename ${DERBYDIR}`
no=1
for REVISION in ${REVISIONS}
do
echo "<TR>" >> ${DTI}
TS=`cat ${UPDATELOGDIR}/${REVISION}/UpdateTime`
DT=`echo ${TS} | gawk '{ print $1 }'`
TT=`echo ${TS} | gawk '{ print $2 }'`
TZ=`echo ${TS} | gawk '{ print $3 }'`
TS="${DT} ${TT} ${TZ}"
CHGLINK=" "
if [ -e ${DERBYDIR}/testing/UpdateInfo/${REVISION}.txt ]
then
## if [ "$1" != "details" ] # FIXME
## then
## CHGLINK=" <A HREF=\"../../../UpdateInfo/${REVISION}.txt\">Chgs</A> "
## else
CHGLINK=" <A HREF=\"../../UpdateInfo/${REVISION}.txt\">Chgs</A> "
## fi
fi
FOOTPRINT=" "
if [ -e ${DERBYDIR}/testing/builds/${REVISION}.size ]
then
SIZE=`grep derby.jar ${DERBYDIR}/testing/builds/${REVISION}.size | gawk '{ print $2" "$3 }'`
# FOOTPRINT=" <A href=\"../../../builds/${REVISION}.size\">${SIZE}</A>"
FOOTPRINT=" <A href=\"../../builds/${REVISION}.size\">${SIZE}</A>"
fi
DERBALLFAILS=""
DERBALLPRCNT=""
# TINDERBOX=`echo ${DERBYDIR} | grep TinderBox_`
# if [ "${TINDER}" != "" ]
# then
DERBALLFAILS="["
for PLATFORM in ${PLATFORMS} # TinderBox uses ONE platform..
do
# echo -n "${PLATFORM} "; pwd
if [ -e ${PLATFORM}/externallyVisible ] || [ "${SHOWDETAILS}" = "ShowDetails" ]
then
if [ -e ${PLATFORM}/${REVISION}.csv ]
then
# 2: Number, 3: OK, 4: Failed, 5: Skipped, 6: time
RES=`grep "^derbyall " ${PLATFORM}/${REVISION}.csv`
# DEBUG RES=`grep "^demo " ${PLATFORM}/${REVISION}.csv`
if [ "${LARGEDATA}" != "" ]
then
RES=`grep "^largeData " ${PLATFORM}/${REVISION}.csv`
fi
FAILED=`echo ${RES} | gawk '{ print $4 }'`
if [ "${FAILED}" == "" ]
then
FAILED="?"
fi
DERBALLFAILS="${DERBALLFAILS} ${FAILED} "
if [ "${TINDER}" != "" ] || [ "${LARGEDATA}" != "" ]
then
TIME=`grep "^derbyall " ${PLATFORM}/${REVISION}.csv | gawk '{ print $6 }'`
if [ "${LARGEDATA}" != "" ]
then
TIME=`grep "^largeData " ${PLATFORM}/${REVISION}.csv | gawk '{ print $6 }'`
fi
SECONDS=`${TOOLDIR}/toSeconds ${TIME}`
BASESECONDS=`grep "^derbyall " ${PLATFORM}/baseline.csv | gawk '{ print $3 }'`
if [ "${LARGEDATA}" != "" ]
then
BASESECONDS=`grep "^largeData " ${PLATFORM}/baseline.csv | gawk '{ print $3 }'`
fi
PERCENT=`${TOOLDIR}/calcPercent ${SECONDS} ${BASESECONDS}`
DERBALLPRCNT=" ${PERCENT}% "
fi
else
DERBALLFAILS="${DERBALLFAILS} - "
fi
fi # visible, showdetails
done # PLATFORMS
DERBALLFAILS="${DERBALLFAILS}]"
# fi # TINDERBOX
######
# Above if ...
# fi could be replaced by
# DERBALLFAILS=`${TOOLDIR}/platformsFailCount ${REVISION} "${SHOWDETAILS}" ${SUITE}`
# DERBALLPRCNT=`${TOOLDIR}/platformsDurPrcnt ${REVISION} "${SHOWDETAILS}" ${SUITE}`
######
BLDERRLINK=""
if [ -e ${DERBYDIR}/testing/UpdateInfo/${REVISION}-buildDetails.txt ]
then
BLDERRLINK=" <A HREF=\"../../UpdateInfo/${REVISION}-buildDetails.txt\"><font color=\"red\"><b> Build Errors!</b></font></A><br>"
fi
FAILURELINK=""
if [ -e ${DERBYDIR}/FailReports/${REVISION}.html ]
then
FAILURELINK=" <A HREF=\"../../FailReports/${REVISION}.html\">${DERBALLFAILS} </A>"
elif [ -e ${DERBYDIR}/FailReports/${REVISION}M.html ]
then # When we have Mods. e.g. JDK 1.6 testing with local mods to compatibility script....
FAILURELINK=" <A HREF=\"../../FailReports/${REVISION}M.html\">${DERBALLFAILS} </A>"
fi
NOTE=""
if [ -e ${DERBYDIR}/testing/Notes/${REVISION}.txt ]
then
TXT=`cat ${DERBYDIR}/testing/Notes/${REVISION}.txt`
NOTE="${TXT}"
fi
echo "<$TDT><a href=\"testSummary-"${REVISION}".html\">"${REVISION}"</a></TD>" >> ${DTI}
echo "<$TDT>${TS}</TD>" >> ${DTI}
echo "<$TDT>${CHGLINK}</TD>" >> ${DTI}
echo "<$TDT>${FOOTPRINT}</TD>" >> ${DTI}
echo "<$TDT>${BLDERRLINK}${FAILURELINK}</TD>" >> ${DTI}
echo "<$TDT>${DERBALLPRCNT}</TD>" >> ${DTI}
echo "<$TDT>${NOTE}</TD>" >> ${DTI}
no=`expr $no + 1`
echo "<TR>" >> ${DTI}
done # REVISIONS
echo "</TABLE>" >> ${DTI}
##########################################
# BEGIN SKIP if ...._Release or ...._RC tests or ...._Snapshot tests
IS_RELEASE=`echo ${DERBYDIR} | grep "_Release/"`
IS_SNAPSHOT=`echo ${DERBYDIR} | grep "_Snapshot/"`
IS_RC=`echo ${DERBYDIR} | grep "_RC/"`
if [ "${IS_RELEASE}" == "" ] && [ "${IS_RC}" == "" ] && [ "${IS_SNAPSHOT}" == "" ]
then
echo "See full history <a href=\"index_all.html\">here!</a><BR>" >> ${DTI}
if [ "${SHOWDETAILS}" = "ShowDetails" ]
then
echo "<HR>" >> ${DTI}
echo "Experimental duration plots: " >> ${DTI}
echo "<a href=\"plot/plot.html\">all builds</a>, " >> ${DTI}
echo "<a href=\"plot/plot_last20.html\">last N builds</a>." >> ${DTI}
fi
fi
# END SKIP if ....Release or ....Snapshot tests
##########################################
echo "<HR>" >> ${DTI}
echo "<div style=\"text-align: right;\">" >> ${DTI}
echo "<font size=\"-1\"><i>" >> ${DTI}
date +%Y-%m-%d" "%H:%M:%S" "%Z >> ${DTI}
echo "</i></font>" >> ${DTI}
echo "</div>" >> ${DTI}
echo "</body>" >> ${DTI}
echo "</html>" >> ${DTI}
if [ "${SHOWDETAILS}" != "ShowDetails" ]
then
SRC="${DTI}"
DST="${DTIPUB}"
echo "**** OBS! ${SCPUT} ${SRC} ${PUBLISHUSER}@${PUBLISHSITE}:${DST}"
### ${SCPUT} ${SRC} ${PUBLISHUSER}@${PUBLISHSITE}:${DST}
fi
|