| OLD | NEW |
| 1 # Copyright 2008 the V8 project authors. All rights reserved. | 1 # Copyright 2013 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| 11 # with the distribution. | 11 # with the distribution. |
| 12 # * Neither the name of Google Inc. nor the names of its | 12 # * Neither the name of Google Inc. nor the names of its |
| 13 # contributors may be used to endorse or promote products derived | 13 # contributors may be used to endorse or promote products derived |
| 14 # from this software without specific prior written permission. | 14 # from this software without specific prior written permission. |
| 15 # | 15 # |
| 16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 import itertools |
| 28 import os | 29 import os |
| 29 import re | 30 import re |
| 30 | 31 |
| 31 from testrunner.local import testsuite | 32 from testrunner.local import testsuite |
| 32 from testrunner.objects import testcase | 33 from testrunner.objects import testcase |
| 33 | 34 |
| 34 FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)") | 35 FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)") |
| 35 FILES_PATTERN = re.compile(r"//\s+Files:(.*)") | 36 FILES_PATTERN = re.compile(r"//\s+Files:(.*)") |
| 36 SELF_SCRIPT_PATTERN = re.compile(r"//\s+Env: TEST_FILE_NAME") | 37 SELF_SCRIPT_PATTERN = re.compile(r"//\s+Env: TEST_FILE_NAME") |
| 37 | 38 |
| 38 | 39 |
| 39 class MjsunitTestSuite(testsuite.TestSuite): | 40 # TODO (machenbach): Share commonalities with mjstest. |
| 41 class WebkitTestSuite(testsuite.TestSuite): |
| 40 | 42 |
| 41 def __init__(self, name, root): | 43 def __init__(self, name, root): |
| 42 super(MjsunitTestSuite, self).__init__(name, root) | 44 super(WebkitTestSuite, self).__init__(name, root) |
| 43 | 45 |
| 44 def ListTests(self, context): | 46 def ListTests(self, context): |
| 45 tests = [] | 47 tests = [] |
| 46 for dirname, dirs, files in os.walk(self.root): | 48 for dirname, dirs, files in os.walk(self.root): |
| 47 for dotted in [x for x in dirs if x.startswith('.')]: | 49 for dotted in [x for x in dirs if x.startswith('.')]: |
| 48 dirs.remove(dotted) | 50 dirs.remove(dotted) |
| 51 if 'resources' in dirs: |
| 52 dirs.remove('resources') |
| 53 |
| 49 dirs.sort() | 54 dirs.sort() |
| 50 files.sort() | 55 files.sort() |
| 51 for filename in files: | 56 for filename in files: |
| 52 if filename.endswith(".js") and filename != "mjsunit.js": | 57 if filename.endswith(".js"): |
| 53 testname = os.path.join(dirname[len(self.root) + 1:], filename[:-3]) | 58 testname = os.path.join(dirname[len(self.root) + 1:], filename[:-3]) |
| 54 test = testcase.TestCase(self, testname) | 59 test = testcase.TestCase(self, testname) |
| 55 tests.append(test) | 60 tests.append(test) |
| 56 return tests | 61 return tests |
| 57 | 62 |
| 58 def GetFlagsForTestCase(self, testcase, context): | 63 def GetFlagsForTestCase(self, testcase, context): |
| 59 source = self.GetSourceForTest(testcase) | 64 source = self.GetSourceForTest(testcase) |
| 60 flags = [] + context.mode_flags | 65 flags = [] + context.mode_flags |
| 61 flags_match = re.findall(FLAGS_PATTERN, source) | 66 flags_match = re.findall(FLAGS_PATTERN, source) |
| 62 for match in flags_match: | 67 for match in flags_match: |
| 63 flags += match.strip().split() | 68 flags += match.strip().split() |
| 64 | 69 |
| 65 files_list = [] # List of file names to append to command arguments. | 70 files_list = [] # List of file names to append to command arguments. |
| 66 files_match = FILES_PATTERN.search(source); | 71 files_match = FILES_PATTERN.search(source); |
| 67 # Accept several lines of 'Files:'. | 72 # Accept several lines of 'Files:'. |
| 68 while True: | 73 while True: |
| 69 if files_match: | 74 if files_match: |
| 70 files_list += files_match.group(1).strip().split() | 75 files_list += files_match.group(1).strip().split() |
| 71 files_match = FILES_PATTERN.search(source, files_match.end()) | 76 files_match = FILES_PATTERN.search(source, files_match.end()) |
| 72 else: | 77 else: |
| 73 break | 78 break |
| 74 files = [ os.path.normpath(os.path.join(self.root, '..', '..', f)) | 79 files = [ os.path.normpath(os.path.join(self.root, '..', '..', f)) |
| 75 for f in files_list ] | 80 for f in files_list ] |
| 76 testfilename = os.path.join(self.root, testcase.path + self.suffix()) | 81 testfilename = os.path.join(self.root, testcase.path + self.suffix()) |
| 77 if SELF_SCRIPT_PATTERN.search(source): | 82 if SELF_SCRIPT_PATTERN.search(source): |
| 78 env = ["-e", "TEST_FILE_NAME=\"%s\"" % testfilename.replace("\\", "\\\\")] | 83 env = ["-e", "TEST_FILE_NAME=\"%s\"" % testfilename.replace("\\", "\\\\")] |
| 79 files = env + files | 84 files = env + files |
| 80 files.append(os.path.join(self.root, "mjsunit.js")) | 85 files.append(os.path.join(self.root, "resources/standalone-pre.js")) |
| 81 files.append(testfilename) | 86 files.append(testfilename) |
| 87 files.append(os.path.join(self.root, "resources/standalone-post.js")) |
| 82 | 88 |
| 83 flags += files | 89 flags += files |
| 84 if context.isolates: | 90 if context.isolates: |
| 85 flags.append("--isolate") | 91 flags.append("--isolate") |
| 86 flags += files | 92 flags += files |
| 87 | 93 |
| 88 return testcase.flags + flags | 94 return testcase.flags + flags |
| 89 | 95 |
| 90 def GetSourceForTest(self, testcase): | 96 def GetSourceForTest(self, testcase): |
| 91 filename = os.path.join(self.root, testcase.path + self.suffix()) | 97 filename = os.path.join(self.root, testcase.path + self.suffix()) |
| 92 with open(filename) as f: | 98 with open(filename) as f: |
| 93 return f.read() | 99 return f.read() |
| 94 | 100 |
| 101 # TODO(machenbach): Share with test/message/testcfg.py |
| 102 def _IgnoreLine(self, string): |
| 103 """Ignore empty lines, valgrind output and Android output.""" |
| 104 if not string: return True |
| 105 return (string.startswith("==") or string.startswith("**") or |
| 106 string.startswith("ANDROID") or |
| 107 # These five patterns appear in normal Native Client output. |
| 108 string.startswith("DEBUG MODE ENABLED") or |
| 109 string.startswith("tools/nacl-run.py") or |
| 110 string.find("BYPASSING ALL ACL CHECKS") > 0 or |
| 111 string.find("Native Client module will be loaded") > 0 or |
| 112 string.find("NaClHostDescOpen:") > 0) |
| 113 |
| 114 def IsFailureOutput(self, output, testpath): |
| 115 if super(WebkitTestSuite, self).IsFailureOutput(output, testpath): |
| 116 return True |
| 117 file_name = os.path.join(self.root, testpath) + "-expected.txt" |
| 118 with file(file_name, "r") as expected: |
| 119 def ExpIterator(): |
| 120 for line in expected.readlines(): |
| 121 if line.startswith("#") or not line.strip(): continue |
| 122 yield line.strip() |
| 123 def ActIterator(): |
| 124 for line in output.stdout.splitlines(): |
| 125 if self._IgnoreLine(line.strip()): continue |
| 126 yield line.strip() |
| 127 for (expected, actual) in itertools.izip_longest( |
| 128 ExpIterator(), ActIterator(), fillvalue=''): |
| 129 if expected != actual: |
| 130 return True |
| 131 return False |
| 132 |
| 95 | 133 |
| 96 def GetSuite(name, root): | 134 def GetSuite(name, root): |
| 97 return MjsunitTestSuite(name, root) | 135 return WebkitTestSuite(name, root) |
| OLD | NEW |