mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Converted jedtest script to Python [Andrew Gardner]
This commit is contained in:
parent
aea9c2a3b8
commit
5833836d50
2 changed files with 150 additions and 0 deletions
1
.gitattributes
vendored
1
.gitattributes
vendored
|
@ -7938,6 +7938,7 @@ src/regtests/jedutil/jeds/pal20l8/pal20l8.jed svneol=native#text/plain
|
||||||
src/regtests/jedutil/jeds/pal20r4/pal20r4.jed svneol=native#text/plain
|
src/regtests/jedutil/jeds/pal20r4/pal20r4.jed svneol=native#text/plain
|
||||||
src/regtests/jedutil/jeds/pal20r6/pal20r6.jed svneol=native#text/plain
|
src/regtests/jedutil/jeds/pal20r6/pal20r6.jed svneol=native#text/plain
|
||||||
src/regtests/jedutil/jeds/pal20r8/pal20r8.jed svneol=native#text/plain
|
src/regtests/jedutil/jeds/pal20r8/pal20r8.jed svneol=native#text/plain
|
||||||
|
src/regtests/jedutil/jedtest.py svneol=native#text/plain
|
||||||
src/regtests/jedutil/jedtest.wsf svneol=native#text/plain
|
src/regtests/jedutil/jedtest.wsf svneol=native#text/plain
|
||||||
src/tools/chdman.c svneol=native#text/plain
|
src/tools/chdman.c svneol=native#text/plain
|
||||||
src/tools/jedutil.c svneol=native#text/plain
|
src/tools/jedutil.c svneol=native#text/plain
|
||||||
|
|
149
src/regtests/jedutil/jedtest.py
Normal file
149
src/regtests/jedutil/jedtest.py
Normal file
|
@ -0,0 +1,149 @@
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import shutil
|
||||||
|
import filecmp
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
VERBOSE = False
|
||||||
|
|
||||||
|
|
||||||
|
class JedTest:
|
||||||
|
"""
|
||||||
|
A class containing the information necessary to run a test.
|
||||||
|
"""
|
||||||
|
def __init__(self):
|
||||||
|
self.name = ""
|
||||||
|
self.jedFile = ""
|
||||||
|
self.baselineFile = ""
|
||||||
|
self.outputFile = ""
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
return "Name: %s\nJedFile: %s\nBaselineFile: %s\nOutputFile: %s" % (self.name,
|
||||||
|
self.jedFile,
|
||||||
|
self.baselineFile,
|
||||||
|
self.outputFile)
|
||||||
|
|
||||||
|
|
||||||
|
def findJedTests(jedPath, baselinePath, outputPath):
|
||||||
|
"""
|
||||||
|
Given a path to some jed files, returns a list of JedTest objects.
|
||||||
|
"""
|
||||||
|
jedTestList = list()
|
||||||
|
for (path, dirs, files) in os.walk(jedPath):
|
||||||
|
if '.svn' in path:
|
||||||
|
continue
|
||||||
|
|
||||||
|
for filename in files:
|
||||||
|
jedPathFull = os.path.join(path, filename)
|
||||||
|
if os.path.splitext(jedPathFull)[1] != '.jed':
|
||||||
|
continue
|
||||||
|
palName = os.path.splitext(os.path.basename(filename))[0]
|
||||||
|
subpathName = path[len(jedPath):].strip(os.sep)
|
||||||
|
|
||||||
|
test = JedTest()
|
||||||
|
test.name = palName
|
||||||
|
test.jedFile = jedPathFull
|
||||||
|
test.baselineFile = os.path.join(baselinePath, subpathName, test.name+".txt")
|
||||||
|
test.outputFile = os.path.join(outputPath, subpathName, test.name+".txt")
|
||||||
|
jedTestList.append(test)
|
||||||
|
|
||||||
|
return jedTestList
|
||||||
|
|
||||||
|
|
||||||
|
def runViewJedTests(tests, jedUtilApp):
|
||||||
|
"""
|
||||||
|
Given a list of JedTests and a command line program, run them & save the
|
||||||
|
results to the files specified in the JedTest objects.
|
||||||
|
"""
|
||||||
|
for test in tests:
|
||||||
|
command = [jedUtilApp, "-view", test.jedFile, test.name]
|
||||||
|
if VERBOSE:
|
||||||
|
print "Viewing the JED file: %s" % (test.jedFile)
|
||||||
|
print "Command: %s" % ((" ").join(command))
|
||||||
|
|
||||||
|
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
|
(stdout,stderr) = process.communicate()
|
||||||
|
|
||||||
|
if stderr:
|
||||||
|
print "Error: JED test named %s failed during viewing." % test.name
|
||||||
|
|
||||||
|
fp = open(test.outputFile, "wb")
|
||||||
|
fp.write(stdout)
|
||||||
|
fp.close()
|
||||||
|
|
||||||
|
|
||||||
|
# MAIN
|
||||||
|
def main():
|
||||||
|
# Some path initializations
|
||||||
|
currentDirectory = os.path.dirname(os.path.realpath(__file__))
|
||||||
|
jedsPath = os.path.join(currentDirectory, 'jeds')
|
||||||
|
baselinePath = os.path.join(currentDirectory, "baseline")
|
||||||
|
outputPath = os.path.join(currentDirectory, "output")
|
||||||
|
if os.name == 'nt':
|
||||||
|
jedUtilApp = os.path.normpath(os.path.join(currentDirectory, "..", "..", "..", "jedutil.exe"))
|
||||||
|
else:
|
||||||
|
jedUtilApp = os.path.normpath(os.path.join(currentDirectory, "..", "..", "..", "jedutil"))
|
||||||
|
|
||||||
|
if (VERBOSE):
|
||||||
|
print "JED Path: %s" % jedsPath
|
||||||
|
print "Baseline Path: %s" % baselinePath
|
||||||
|
print "Output Path: %s" % outputPath
|
||||||
|
print "jedutil App: %s" % jedUtilApp
|
||||||
|
print
|
||||||
|
|
||||||
|
|
||||||
|
# Insure everything exists
|
||||||
|
if (not os.path.exists(currentDirectory) or
|
||||||
|
not os.path.exists(jedsPath) or
|
||||||
|
not os.path.exists(baselinePath) or
|
||||||
|
not os.path.exists(jedUtilApp)):
|
||||||
|
print "One of the above paths does not exist. Aborting." % jedUtilApp
|
||||||
|
return 3
|
||||||
|
|
||||||
|
|
||||||
|
# Gather the tests
|
||||||
|
tests = findJedTests(jedsPath, baselinePath, outputPath)
|
||||||
|
if not len(tests):
|
||||||
|
print "No tests found!"
|
||||||
|
return 2
|
||||||
|
|
||||||
|
|
||||||
|
# Setup the output paths
|
||||||
|
if (VERBOSE):
|
||||||
|
print "Cleaning the output directory"
|
||||||
|
print
|
||||||
|
if os.path.exists(outputPath):
|
||||||
|
shutil.rmtree(outputPath)
|
||||||
|
os.makedirs(outputPath)
|
||||||
|
for test in tests:
|
||||||
|
testOutputPath = os.path.dirname(test.outputFile)
|
||||||
|
if not os.path.exists(testOutputPath):
|
||||||
|
os.makedirs(testOutputPath)
|
||||||
|
|
||||||
|
|
||||||
|
# Run the commands to create the sample output
|
||||||
|
runViewJedTests(tests, jedUtilApp)
|
||||||
|
|
||||||
|
|
||||||
|
# Insure there are no errors
|
||||||
|
success = True
|
||||||
|
for test in tests:
|
||||||
|
if VERBOSE:
|
||||||
|
print "Diffing the output from viewing the JED file: %s" % test.name
|
||||||
|
if not filecmp.cmp(test.outputFile, test.baselineFile):
|
||||||
|
success = False
|
||||||
|
print "Test %s failed" % test.name
|
||||||
|
|
||||||
|
|
||||||
|
# Report
|
||||||
|
if success:
|
||||||
|
print "All tests ran successfully."
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
return 1
|
||||||
|
|
||||||
|
|
||||||
|
# Main stub - returns error code properly
|
||||||
|
if __name__ == "__main__":
|
||||||
|
sys.exit(main())
|
Loading…
Reference in a new issue