OLD | NEW |
1 # Copyright 2008 the V8 project authors. All rights reserved. | 1 # Copyright 2008 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 test | |
29 import os | 28 import os |
30 from os.path import join, dirname, exists | |
31 import re | 29 import re |
32 import tempfile | 30 |
| 31 from testrunner.local import testsuite |
| 32 from testrunner.objects import testcase |
33 | 33 |
34 FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)") | 34 FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)") |
35 FILES_PATTERN = re.compile(r"//\s+Files:(.*)") | 35 FILES_PATTERN = re.compile(r"//\s+Files:(.*)") |
36 SELF_SCRIPT_PATTERN = re.compile(r"//\s+Env: TEST_FILE_NAME") | 36 SELF_SCRIPT_PATTERN = re.compile(r"//\s+Env: TEST_FILE_NAME") |
37 | 37 |
38 | 38 |
| 39 class MjsunitTestSuite(testsuite.TestSuite): |
| 40 |
| 41 def __init__(self, name, root): |
| 42 super(MjsunitTestSuite, self).__init__(name, root) |
| 43 |
| 44 def ListTests(self, context): |
| 45 tests = [] |
| 46 for dirname, dirs, files in os.walk(self.root): |
| 47 for dotted in [x for x in dirs if x.startswith('.')]: |
| 48 dirs.remove(dotted) |
| 49 dirs.sort() |
| 50 files.sort() |
| 51 for filename in files: |
| 52 if filename.endswith(".js") and filename != "mjsunit.js": |
| 53 testname = join(dirname[len(self.root) + 1:], filename[:-3]) |
| 54 test = testcase.TestCase(self, testname) |
| 55 tests.append(test) |
| 56 return tests |
| 57 |
| 58 def GetFlagsForTestCase(self, testcase, context): |
| 59 source = self.GetSourceForTest(testcase) |
| 60 flags = [] |
| 61 flags_match = re.findall(FLAGS_PATTERN, source) |
| 62 for match in flags_match: |
| 63 flags += match.strip().split() |
| 64 flags += context.mode_flags |
| 65 |
| 66 files_list = [] # List of file names to append to command arguments. |
| 67 files_match = FILES_PATTERN.search(source); |
| 68 # Accept several lines of 'Files:'. |
| 69 while True: |
| 70 if files_match: |
| 71 files_list += files_match.group(1).strip().split() |
| 72 files_match = FILES_PATTERN.search(source, files_match.end()) |
| 73 else: |
| 74 break |
| 75 files = [ os.path.normpath(os.path.join(self.root, '..', '..', f)) |
| 76 for f in files_list ] |
| 77 testfilename = os.path.join(self.root, testcase.path + self.suffix()) |
| 78 if SELF_SCRIPT_PATTERN.search(source): |
| 79 env = ["-e", "TEST_FILE_NAME=\"%s\"" % testfilename] |
| 80 files = env + files |
| 81 files.append(os.path.join(self.root, "mjsunit.js")) |
| 82 files.append(testfilename) |
| 83 |
| 84 flags += files |
| 85 if context.isolates: |
| 86 flags.append("--isolate") |
| 87 flags += files |
| 88 |
| 89 return testcase.flags + flags |
| 90 |
| 91 def GetSourceForTest(self, testcase): |
| 92 filename = os.path.join(self.root, testcase.path + self.suffix()) |
| 93 with open(filename) as f: |
| 94 return f.read() |
| 95 |
| 96 |
| 97 def GetSuite(name, root): |
| 98 return MjsunitTestSuite(name, root) |
| 99 |
| 100 |
| 101 # Deprecated definitions below. |
| 102 # TODO(jkummerow): Remove when SCons is no longer supported. |
| 103 |
| 104 |
| 105 from os.path import dirname, exists, join, normpath |
| 106 import tempfile |
| 107 import test |
| 108 |
| 109 |
39 class MjsunitTestCase(test.TestCase): | 110 class MjsunitTestCase(test.TestCase): |
40 | 111 |
41 def __init__(self, path, file, mode, context, config, isolates): | 112 def __init__(self, path, file, mode, context, config, isolates): |
42 super(MjsunitTestCase, self).__init__(context, path, mode) | 113 super(MjsunitTestCase, self).__init__(context, path, mode) |
43 self.file = file | 114 self.file = file |
44 self.config = config | 115 self.config = config |
45 self.self_script = False | 116 self.self_script = False |
46 self.isolates = isolates | 117 self.isolates = isolates |
47 | 118 |
48 def GetLabel(self): | 119 def GetLabel(self): |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 | 220 |
150 def GetTestStatus(self, sections, defs): | 221 def GetTestStatus(self, sections, defs): |
151 status_file = join(self.root, 'mjsunit.status') | 222 status_file = join(self.root, 'mjsunit.status') |
152 if exists(status_file): | 223 if exists(status_file): |
153 test.ReadConfigurationInto(status_file, sections, defs) | 224 test.ReadConfigurationInto(status_file, sections, defs) |
154 | 225 |
155 | 226 |
156 | 227 |
157 def GetConfiguration(context, root): | 228 def GetConfiguration(context, root): |
158 return MjsunitTestConfiguration(context, root) | 229 return MjsunitTestConfiguration(context, root) |
OLD | NEW |