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 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
|
#!/usr/bin/env python
#/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
# * Mupen64plus - regression-video.py *
# * Mupen64Plus homepage: http://code.google.com/p/mupen64plus/ *
# * Copyright (C) 2008-2012 Richard Goedeken *
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU General Public License as published by *
# * the Free Software Foundation; either version 2 of the License, or *
# * (at your option) any later version. *
# * *
# * This program is distributed in the hope that it will be useful, *
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
# * GNU General Public License for more details. *
# * *
# * You should have received a copy of the GNU General Public License *
# * along with this program; if not, write to the *
# * Free Software Foundation, Inc., *
# * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
# * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
from optparse import OptionParser
from threading import Thread
from datetime import date
import subprocess
import commands
import shutil
import stat
import time
import sys
import os
# set global report string
report = "Mupen64Plus Regression Test report\n----------------------------------\n"
#******************************************************************************
# main functions
#
def main(rootdir, cfgfile, nogit, nobuild, nospeed, novidcheck, noemail):
global report
# set up child directory paths
srcdir = os.path.join(rootdir, "source")
shotdir = os.path.join(rootdir, "current")
refdir = os.path.join(rootdir, "reference")
archivedir = os.path.join(rootdir, "archive")
# run the test procedure
tester = RegTester(rootdir, srcdir, shotdir)
rval = 0
while True:
# Step 1: load the test config file
if not tester.LoadConfig(cfgfile):
rval = 1
break
# Step 2: check out from Git
if not nogit:
if not tester.CheckoutSource(srcdir):
rval = 2
break
# Step 3: run test builds
if not nobuild:
for modname in tester.modulesAndParams:
module = tester.modulesAndParams[modname]
if "testbuilds" not in module:
continue
modurl = module["url"]
modfilename = modurl.split('/')[-1]
testlist = [ name.strip() for name in module["testbuilds"].split(',') ]
makeparams = [ params.strip() for params in module["testbuildparams"].split(',') ]
if len(testlist) != len(makeparams):
report += "Config file error for test builds in %s. Build name list and makefile parameter list have different lengths.\n" % modname
testbuilds = min(len(testlist), len(makeparams))
for i in range(testbuilds):
buildname = testlist[i]
buildmake = makeparams[i]
BuildSource(srcdir, modfilename, modname, buildname, buildmake, module["outputfiles"], True, False)
# Step 4: run speed tests
if not nospeed:
SpeedTestResults = [ ]
# we iterate over each separate build
numSpeedBuilds = int(tester.generalParams["numspeedbuilds"])
for buildIdx in range(numSpeedBuilds):
buildname = "Speedtest Build #%i" % (buildIdx+1)
buildmake = tester.generalParams["speedbuild%iparams" % buildIdx]
# build all modules
for modname in tester.modulesAndParams:
module = tester.modulesAndParams[modname]
modurl = module["url"]
modfilename = modurl.split('/')[-1]
if not BuildSource(srcdir, modfilename, modname, buildname, buildmake, module["outputfiles"], False, False):
rval = 3
break
if rval > 0:
break
# then we iterate over each separate test case for this build
numCases = int(tester.generalParams["speedbuild%itests" % buildIdx])
for caseIdx in range(numCases):
caseName = tester.generalParams["speedbuild%itest%iname" % (buildIdx, caseIdx)]
caseOptions = tester.generalParams["speedbuild%itest%ioptions" % (buildIdx, caseIdx)].split(" ")
oneRunResults = tester.RunSpeedTests(caseName, caseOptions)
SpeedTestResults.append((caseName, oneRunResults))
# now we summarize the results
if numSpeedBuilds > 0 and SpeedTestResults[0][1] is not None:
numGames = len(SpeedTestResults[0][1])
gameNames = [result[0] for result in SpeedTestResults[0][1]]
gameNameLengths = [len(name) for name in gameNames]
maxTestNameLength = max([len(case[0]) for case in SpeedTestResults])
report += "Run %i speed test cases with %i games (best of 3 trials)\n" % (len(SpeedTestResults),numGames)
tableHeader = (" " * (maxTestNameLength + 2)) + " ".join(gameNames)
report += tableHeader + "\n" + ("=" * len(tableHeader)) + "\n"
for (caseName, runResults) in SpeedTestResults:
report += caseName + (" " * (maxTestNameLength - len(caseName) + 2))
if runResults == None:
report += "Failed!\n"
continue
for (gameName, testTime) in runResults:
strTime = "%.2f" % testTime
report += strTime + (" " * (len(gameName) - len(strTime) + 2))
report += "\n"
report += "\n"
# Step 5: build the binary for the video regression test
if not novidcheck:
videobuild = tester.generalParams["videobuild"]
videomake = tester.generalParams["videobuildparams"]
for modname in tester.modulesAndParams:
module = tester.modulesAndParams[modname]
modurl = module["url"]
modfilename = modurl.split('/')[-1]
if not BuildSource(srcdir, modfilename, modname, videobuild, videomake, module["outputfiles"], False, True):
rval = 3
break
if rval != 0:
break
# Step 6: run the tests, check the results
if not tester.RunTests():
rval = 4
break
if not tester.CheckResults(refdir):
rval = 5
break
# test procedure is finished
break
# Step 7: send email report and archive the results
if not noemail:
if not tester.SendReport():
rval = 6
if not novidcheck:
if not tester.ArchiveResults(archivedir):
rval = 7
# all done with test process
return rval
#******************************************************************************
# Checkout & build functions
#
def BuildSource(srcdir, moddir, modname, buildname, buildmake, outputfiles, isbuildtest, isvideotest):
global report
makepath = os.path.join(srcdir, moddir, "projects", "unix")
# to start, clean up
os.system("make -C %s clean" % makepath)
# print build report message and clear counters
testbuildcommand = "make -C %s %s" % (makepath, buildmake)
if isbuildtest:
report += "Running %s test build \"%s\"\n" % (modname, buildname)
elif isvideotest:
report += "Building %s \"%s\" for video test\n" % (modname, buildname)
warnings = 0
errors = 0
# run make and capture the output
output = commands.getoutput(testbuildcommand)
makelines = output.split("\n")
# print warnings and errors
for line in makelines:
if "error:" in line:
report += " " + line + "\n"
errors += 1
if "warning:" in line and (isbuildtest or isvideotest):
report += " " + line + "\n"
warnings += 1
if isbuildtest or isvideotest:
report += "%i errors. %i warnings.\n" % (errors, warnings)
if errors > 0 and not isbuildtest:
return False
# check for output files
for filename in outputfiles.split(','):
if not os.path.exists(os.path.join(makepath, filename)):
report += "Build failed: '%s' not found\n" % filename
errors += 1
if errors > 0 and not isbuildtest:
return False
# if this wasn't a build test, then copy our output files and data files
if not isbuildtest:
for filename in outputfiles.split(','):
try:
os.unlink(os.path.join(srcdir, filename))
except:
pass
shutil.move(os.path.join(makepath, filename), srcdir)
datapath = os.path.join(srcdir, moddir, "data")
if os.path.isdir(datapath):
copytree(datapath, os.path.join(srcdir, "data"))
# build was successful!
return True
#******************************************************************************
# Test execution classes
#
class RegTester:
def __init__(self, rootdir, bindir, screenshotdir):
self.rootdir = rootdir
self.bindir = bindir
self.screenshotdir = screenshotdir
self.generalParams = { }
self.gamesAndParams = { }
self.modulesAndParams = { }
self.videoplugins = [ "mupen64plus-video-rice.so", "mupen64plus-video-glide64mk2.so" ]
self.thisdate = str(date.today())
def LoadConfig(self, filename):
global report
# read the config file
report += "\nLoading regression test configuration.\n"
try:
cfgfile = open(os.path.join(self.rootdir, filename), "r")
cfglines = cfgfile.read().split("\n")
cfgfile.close()
except Exception, e:
report += "Error in RegTestConfigParser::LoadConfig(): %s" % e
return False
# parse the file
GameFilename = None
ModuleName = None
for line in cfglines:
# strip leading and trailing whitespace
line = line.strip()
# test for comment
if len(line) == 0 or line[0] == '#':
continue
# test for new game filename
if line[0] == '[' and line [-1] == ']':
GameFilename = line[1:-1]
if GameFilename in self.gamesAndParams:
report += " Warning: Config file '%s' contains duplicate game entry '%s'\n" % (filename, GameFilename)
else:
self.gamesAndParams[GameFilename] = { }
continue
# test for new source module build
if line[0] == '{' and line [-1] == '}':
ModuleName = line[1:-1]
if ModuleName in self.modulesAndParams:
report += " Warning: Config file '%s' contains duplicate source module '%s'\n" % (filename, ModuleName)
else:
self.modulesAndParams[ModuleName] = { }
continue
# print warning and continue if it's not a (key = value) pair
pivot = line.find('=')
if pivot == -1:
report += " Warning: Config file '%s' contains unrecognized line: '%s'\n" % (filename, line)
continue
# parse key, value
key = line[:pivot].strip().lower()
value = line[pivot+1:].strip()
if ModuleName is None:
paramDict = self.generalParams
elif GameFilename is None:
paramDict = self.modulesAndParams[ModuleName]
else:
paramDict = self.gamesAndParams[GameFilename]
if key in paramDict:
report += " Warning: duplicate key '%s'\n" % key
continue
paramDict[key] = value
# check for required parameters
if "rompath" not in self.generalParams:
report += " Error: rompath is not given in config file\n"
return False
# config is loaded
return True
def CheckoutSource(self, srcdir):
global report
# remove any current source directory
if not deltree(srcdir):
return False
os.mkdir(srcdir)
os.mkdir(os.path.join(srcdir, "data"))
# loop through all of the source modules
for modname in self.modulesAndParams:
module = self.modulesAndParams[modname]
if "url" not in module:
report += "Error: no Git repository URL for module %s\n\n" % modname
return False
modurl = module["url"]
modfilename = modurl.split("/")[-1]
# call Git to checkout Mupen64Plus source module
(status, output) = commands.getstatusoutput("git clone %s %s/%s" % (modurl, srcdir, modfilename))
# parse the output
lastline = output.split("\n")[-1]
if 0 != os.WEXITSTATUS(status):
report += "Git Error: %s\n\n" % lastline
return False
# get the revision info
RevFound = False
output = commands.getoutput("git --git-dir=%s/.git log HEAD~1..HEAD" % os.path.join(srcdir, modfilename))
for line in output.split('\n'):
words = line.split()
if len(words) == 2 and words[0] == 'commit':
report += "Git Checkout %s: changeset %s\n" % (modfilename, words[1])
RevFound = True
if not RevFound:
report += "Git Error: couldn't find revision information\n\n"
return False
return True
def RunTests(self):
global report
rompath = self.generalParams["rompath"]
if not os.path.exists(rompath):
report += " Error: ROM directory '%s' does not exist!\n" % rompath
return False
# Remove any current screenshot directory
if not deltree(self.screenshotdir):
return False
# Data initialization and start message
os.mkdir(self.screenshotdir)
for plugin in self.videoplugins:
videoname = plugin[:plugin.find('.')]
os.mkdir(os.path.join(self.screenshotdir, videoname))
report += "\nRunning regression tests on %i games.\n" % len(self.gamesAndParams)
# loop over each game filename given in regtest config file
for GameFilename in self.gamesAndParams:
GameParams = self.gamesAndParams[GameFilename]
# if no screenshots parameter given for this game then skip it
if "screenshots" not in GameParams:
continue
# make a list of screenshots and check it
shotlist = [ str(int(framenum.strip())) for framenum in GameParams["screenshots"].split(',') ]
if len(shotlist) < 1 or (len(shotlist) == 1 and shotlist[0] == '0'):
report += " Warning: invalid screenshot list for game '%s'\n" % GameFilename
continue
# run a test for each video plugin
for plugin in self.videoplugins:
videoname = plugin[:plugin.find('.')]
# check if this plugin should be skipped
if "skipvideo" in GameParams:
skipit = False
skiplist = [ name.strip() for name in GameParams["skipvideo"].split(',') ]
for skiptag in skiplist:
if skiptag.lower() in plugin.lower():
skipit = True
if skipit:
continue
# construct the command line
exepath = os.path.join(self.bindir, "mupen64plus")
exeparms = [ "--corelib", os.path.join(self.bindir, "libmupen64plus.so.2") ]
exeparms += [ "--testshots", ",".join(shotlist) ]
exeparms += [ "--sshotdir", os.path.join(self.screenshotdir, videoname) ]
exeparms += [ "--plugindir", self.bindir ]
exeparms += [ "--datadir", os.path.join(self.bindir, "data") ]
myconfig = os.path.join(self.rootdir, "config")
#if os.path.exists(myconfig):
exeparms += [ "--configdir", myconfig ]
exeparms += [ "--gfx", plugin ]
exeparms += [ "--emumode", "2" ]
exeparms += [ os.path.join(rompath, GameFilename) ]
# run it, but if it takes too long print an error and kill it
testrun = RegTestRunner(exepath, exeparms)
testrun.start()
testrun.join(60.0)
if testrun.isAlive():
report += " Error: Test run timed out after 60 seconds: '%s'\n" % " ".join(exeparms)
os.kill(testrun.pid, 9)
testrun.join(10.0)
# all tests have been run
return True
def RunSpeedTests(self, caseName, caseOptions):
global report
rompath = self.generalParams["rompath"]
if not os.path.exists(rompath):
report += " Error: ROM directory '%s' does not exist!\n" % rompath
return None
# Remove any current screenshot directory
if not deltree(self.screenshotdir):
return None
# Data initialization and start message
os.mkdir(self.screenshotdir)
# figure out which games to test
testGames = []
for GameFilename in sorted(self.gamesAndParams.iterkeys()):
GameParams = self.gamesAndParams[GameFilename]
if "speedtest" not in GameParams:
continue
numFrames = int(GameParams["speedtest"])
# clean up the game's name
GameName = GameFilename
for charDelimiter in [".","-","("]:
pivot = GameName.find(charDelimiter)
if pivot != -1:
GameName = GameName[:pivot]
testGames.append((GameName, GameFilename,numFrames))
# run the tests
speedResults = [ ]
for (gameName, gameFilename, numFrames) in testGames:
# construct the command line
exepath = os.path.join(self.bindir, "mupen64plus")
exeparms = [ "--corelib", os.path.join(self.bindir, "libmupen64plus.so.2") ]
exeparms += [ "--testshots", ("%i" % numFrames) ]
exeparms += [ "--sshotdir", self.screenshotdir ]
exeparms += [ "--plugindir", self.bindir ]
exeparms += [ "--datadir", os.path.join(self.bindir, "data") ]
exeparms += [ "--configdir", os.path.join(self.rootdir, "config") ]
exeparms += [ "--gfx", "mupen64plus-video-rice" ]
exeparms += [ "--nospeedlimit", "--noosd", "--nosaveoptions" ]
exeparms += [ "--audio", "dummy" ]
exeparms += caseOptions
exeparms += [ os.path.join(rompath, gameFilename) ]
# make 3 runs, take best of them
bestTime = None
for i in range(3):
# run it, but if it takes too long print an error and kill it
testrun = RegTestRunner(exepath, exeparms)
startTime = time.time()
testrun.start()
testrun.join(360.0)
if testrun.isAlive():
report += " Error: Test run timed out after 360 seconds: '%s'\n" % " ".join(exeparms)
os.kill(testrun.pid, 9)
testrun.join(10.0)
break
endTime = time.time()
thisTime = endTime - startTime
if bestTime is None or thisTime < bestTime:
bestTime = thisTime
# save the best of 3 times
speedResults.append((gameName,bestTime))
return speedResults
def CheckResults(self, refdir):
global report
# print message
warnings = 0
errors = 0
report += "\nChecking regression test results\n"
# get lists of files in the reference folders
refshots = { }
if not os.path.exists(refdir):
os.mkdir(refdir)
for plugin in self.videoplugins:
videoname = plugin[:plugin.find('.')]
videodir = os.path.join(refdir, videoname)
if not os.path.exists(videodir):
os.mkdir(videodir)
refshots[videoname] = [ ]
else:
refshots[videoname] = [ filename for filename in os.listdir(videodir) ]
# get lists of files produced by current test runs
newshots = { }
for plugin in self.videoplugins:
videoname = plugin[:plugin.find('.')]
videodir = os.path.join(self.screenshotdir, videoname)
if not os.path.exists(videodir):
newshots[videoname] = [ ]
else:
newshots[videoname] = [ filename for filename in os.listdir(videodir) ]
# make list of matching ref/test screenshots, and look for missing reference screenshots
checklist = { }
for plugin in self.videoplugins:
videoname = plugin[:plugin.find('.')]
checklist[videoname] = [ ]
for filename in newshots[videoname]:
if filename in refshots[videoname]:
checklist[videoname] += [ filename ]
else:
report += " Warning: reference screenshot '%s/%s' missing. Copying from current test run\n" % (videoname, filename)
shutil.copy(os.path.join(self.screenshotdir, videoname, filename), os.path.join(refdir, videoname))
warnings += 1
# look for missing test screenshots
for plugin in self.videoplugins:
videoname = plugin[:plugin.find('.')]
for filename in refshots[videoname]:
if filename not in newshots[videoname]:
report += " Error: Test screenshot '%s/%s' missing.\n" % (videoname, filename)
errors += 1
# do image comparisons
for plugin in self.videoplugins:
videoname = plugin[:plugin.find('.')]
for filename in checklist[videoname]:
refimage = os.path.join(refdir, videoname, filename)
testimage = os.path.join(self.screenshotdir, videoname, filename)
diffimage = os.path.join(self.screenshotdir, videoname, os.path.splitext(filename)[0] + "_DIFF.png")
if videoname.find("rice") != -1:
# we have to escape some characters in here for the shell
escrefimage = refimage.replace("'", "\\'")
esctestimage = testimage.replace("'", "\\'")
escdiffimage = diffimage.replace("'", "\\'")
# we do a center crop to ignore the outer 1 pixel border, because it often contains garbage in rice video
cmd = ("/bin/bash", "-c", "/usr/bin/compare -metric PSNR <( /usr/bin/convert " + escrefimage + " -crop 638x478+1+1 - ) <( /usr/bin/convert " + esctestimage + " -crop 638x478+1+1 - ) " + escdiffimage)
else:
cmd = ("/usr/bin/compare", "-metric", "PSNR", refimage, testimage, diffimage)
pipe = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT).stdout
similarity = pipe.read().strip()
pipe.close()
try:
db = float(similarity)
except:
db = 0
if db > 60.0:
os.unlink(diffimage)
else:
report += " Warning: test image '%s/%s' does not match reference. PSNR = %s\n" % (videoname, filename, similarity)
warnings += 1
# give report and return
report += "%i errors. %i warnings.\n" % (errors, warnings)
return True
def SendReport(self):
global report
# if there are no email addresses in the config file, then just we're done
if "sendemail" not in self.generalParams:
return True
if len(self.generalParams["sendemail"]) < 5:
return True
# construct the email message header
emailheader = "To: %s\n" % self.generalParams["sendemail"]
emailheader += "From: Mupen64Plus-Tester@fascination.homelinux.net\n"
emailheader += "Subject: %s Regression Test Results for Mupen64Plus\n" % self.thisdate
emailheader += "Reply-to: do-not-reply@fascination.homelinux.net\n"
emailheader += "Content-Type: text/plain; charset=UTF-8\n"
emailheader += "Content-Transfer-Encoding: 8bit\n\n"
# open a pipe to sendmail and dump our report
try:
pipe = subprocess.Popen(("/usr/sbin/sendmail", "-t"), stdin=subprocess.PIPE).stdin
pipe.write(emailheader)
pipe.write(report)
pipe.close()
except Exception, e:
report += "Exception encountered when calling sendmail: '%s'\n" % e
report += "Email header:\n%s\n" % emailheader
return False
return True
def ArchiveResults(self, archivedir):
global report
# create archive dir if it doesn't exist
if not os.path.exists(archivedir):
os.mkdir(archivedir)
# move the images into a subdirectory of 'archive' given by date
subdir = os.path.join(archivedir, self.thisdate)
if os.path.exists(subdir):
if not deltree(subdir):
return False
if os.path.exists(self.screenshotdir):
shutil.move(self.screenshotdir, subdir)
# copy the report into the archive directory
f = open(os.path.join(archivedir, "report_%s.txt" % self.thisdate), "w")
f.write(report)
f.close()
# archival is complete
return True
class RegTestRunner(Thread):
def __init__(self, exepath, exeparms):
self.exepath = exepath
self.exeparms = exeparms
self.pid = 0
self.returnval = None
Thread.__init__(self)
def run(self):
# start the process
testprocess = subprocess.Popen([self.exepath] + self.exeparms)
# get the PID of the new test process
self.pid = testprocess.pid
# wait for the test to complete
self.returnval = testprocess.wait()
#******************************************************************************
# Generic helper functions
#
def deltree(dirname):
global report
if not os.path.exists(dirname):
return True
try:
for path in (os.path.join(dirname, filename) for filename in os.listdir(dirname)):
if os.path.isdir(path):
if not deltree(path):
return False
else:
os.unlink(path)
os.rmdir(dirname)
except Exception, e:
report += "Error in deltree(): %s\n" % e
return False
return True
def copytree(srcpath, dstpath):
if not os.path.isdir(srcpath) or not os.path.isdir(dstpath):
return False
for filename in os.listdir(srcpath):
filepath = os.path.join(srcpath, filename)
if os.path.isdir(filepath):
subdstpath = os.path.join(dstpath, filename)
if not os.path.exists(subdstpath):
os.mkdir(subdstpath)
copytree(filepath, subdstpath)
else:
dstfile = os.path.join(dstpath, filename)
if os.path.exists(dstfile):
os.unlink(dstfile)
shutil.copy(filepath, dstpath)
return True
#******************************************************************************
# main function call for standard script execution
#
if __name__ == "__main__":
# parse the command-line arguments
parser = OptionParser()
parser.add_option("-g", "--nogit", dest="nogit", default=False, action="store_true",
help="Assume source code is present; don't check out latest from Git")
parser.add_option("-b", "--nobuild", dest="nobuild", default=False, action="store_true",
help="Do not run build tests")
parser.add_option("-s", "--nospeed", dest="nospeed", default=False, action="store_true",
help="Do not run speed regression test suite")
parser.add_option("-v", "--novidcheck", dest="novidcheck", default=False, action="store_true",
help="Do not run video screenshot comparison tests")
parser.add_option("-e", "--noemail", dest="noemail", default=False, action="store_true",
help="don't send email or archive results")
parser.add_option("-t", "--testpath", dest="testpath",
help="Set root of testing directory to PATH", metavar="PATH")
parser.add_option("-c", "--cfgfile", dest="cfgfile", default="daily-tests.cfg",
help="Use regression test config file FILE", metavar="FILE")
(opts, args) = parser.parse_args()
# check test path
if opts.testpath is None:
# change directory to the directory containing this script and set root test path to "."
scriptdir = os.path.dirname(sys.argv[0])
os.chdir(scriptdir)
rootdir = "."
else:
rootdir = opts.testpath
# call the main function
rval = main(rootdir, opts.cfgfile, opts.nogit, opts.nobuild, opts.nospeed, opts.novidcheck, opts.noemail)
sys.exit(rval)
|