2022-07-22 04:36:41 +08:00
|
|
|
# This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import os.path
|
|
|
|
import subprocess as sp
|
|
|
|
import sys
|
|
|
|
import xml.sax as x
|
|
|
|
|
|
|
|
SCRIPT_PATH = os.path.split(sys.argv[0])[0]
|
|
|
|
FAIL_LIST_PATH = os.path.join(SCRIPT_PATH, "faillist.txt")
|
|
|
|
|
|
|
|
|
|
|
|
def loadFailList():
|
|
|
|
with open(FAIL_LIST_PATH) as f:
|
|
|
|
return set(map(str.strip, f.readlines()))
|
|
|
|
|
2022-07-29 11:41:13 +08:00
|
|
|
def safeParseInt(i, default=0):
|
|
|
|
try:
|
|
|
|
return int(i)
|
|
|
|
except ValueError:
|
|
|
|
return default
|
2022-07-22 04:36:41 +08:00
|
|
|
|
|
|
|
class Handler(x.ContentHandler):
|
|
|
|
def __init__(self, failList):
|
|
|
|
self.currentTest = []
|
|
|
|
self.failList = failList # Set of dotted test names that are expected to fail
|
|
|
|
|
|
|
|
self.results = {} # {DottedName: TrueIfTheTestPassed}
|
|
|
|
|
2022-07-29 11:41:13 +08:00
|
|
|
self.numSkippedTests = 0
|
|
|
|
|
2022-07-22 04:36:41 +08:00
|
|
|
def startElement(self, name, attrs):
|
|
|
|
if name == "TestSuite":
|
|
|
|
self.currentTest.append(attrs["name"])
|
|
|
|
elif name == "TestCase":
|
|
|
|
self.currentTest.append(attrs["name"])
|
|
|
|
|
|
|
|
elif name == "OverallResultsAsserts":
|
|
|
|
if self.currentTest:
|
2022-07-29 11:41:13 +08:00
|
|
|
failed = 0 != safeParseInt(attrs["failures"])
|
2022-07-22 04:36:41 +08:00
|
|
|
|
|
|
|
dottedName = ".".join(self.currentTest)
|
|
|
|
shouldFail = dottedName in self.failList
|
|
|
|
|
|
|
|
if failed and not shouldFail:
|
|
|
|
print("UNEXPECTED: {} should have passed".format(dottedName))
|
|
|
|
elif not failed and shouldFail:
|
|
|
|
print("UNEXPECTED: {} should have failed".format(dottedName))
|
|
|
|
|
|
|
|
self.results[dottedName] = not failed
|
|
|
|
|
2022-07-29 11:41:13 +08:00
|
|
|
elif name == 'OverallResultsTestCases':
|
|
|
|
self.numSkippedTests = safeParseInt(attrs.get("skipped", 0))
|
|
|
|
|
2022-07-22 04:36:41 +08:00
|
|
|
def endElement(self, name):
|
|
|
|
if name == "TestCase":
|
|
|
|
self.currentTest.pop()
|
|
|
|
|
|
|
|
elif name == "TestSuite":
|
|
|
|
self.currentTest.pop()
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description="Run Luau.UnitTest with deferred constraint resolution enabled"
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"path", action="store", help="Path to the Luau.UnitTest executable"
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--dump",
|
|
|
|
dest="dump",
|
|
|
|
action="store_true",
|
|
|
|
help="Instead of doing any processing, dump the raw output of the test run. Useful for debugging this tool.",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--write",
|
|
|
|
dest="write",
|
|
|
|
action="store_true",
|
|
|
|
help="Write a new faillist.txt after running tests.",
|
|
|
|
)
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
failList = loadFailList()
|
|
|
|
|
|
|
|
p = sp.Popen(
|
|
|
|
[
|
|
|
|
args.path,
|
|
|
|
"--reporters=xml",
|
|
|
|
"--fflags=true,DebugLuauDeferredConstraintResolution=true",
|
|
|
|
],
|
|
|
|
stdout=sp.PIPE,
|
|
|
|
)
|
|
|
|
|
|
|
|
handler = Handler(failList)
|
|
|
|
|
|
|
|
if args.dump:
|
|
|
|
for line in p.stdout:
|
|
|
|
sys.stdout.buffer.write(line)
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
x.parse(p.stdout, handler)
|
|
|
|
|
|
|
|
p.wait()
|
|
|
|
|
|
|
|
if args.write:
|
|
|
|
newFailList = sorted(
|
|
|
|
(
|
|
|
|
dottedName
|
|
|
|
for dottedName, passed in handler.results.items()
|
|
|
|
if not passed
|
|
|
|
),
|
|
|
|
key=str.lower,
|
|
|
|
)
|
|
|
|
with open(FAIL_LIST_PATH, "w", newline="\n") as f:
|
|
|
|
for name in newFailList:
|
|
|
|
print(name, file=f)
|
|
|
|
print("Updated faillist.txt")
|
|
|
|
|
2022-07-29 11:41:13 +08:00
|
|
|
if handler.numSkippedTests > 0:
|
|
|
|
print('{} test(s) were skipped! That probably means that a test segfaulted!'.format(handler.numSkippedTests), file=sys.stderr)
|
|
|
|
sys.exit(1)
|
|
|
|
|
2022-07-22 04:36:41 +08:00
|
|
|
sys.exit(
|
|
|
|
0
|
|
|
|
if all(
|
|
|
|
not passed == (dottedName in failList)
|
|
|
|
for dottedName, passed in handler.results.items()
|
|
|
|
)
|
|
|
|
else 1
|
|
|
|
)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|