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 BlinkTestSuite(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(BlinkTestSuite, 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) |
49 dirs.sort() | 51 dirs.sort() |
Jakob Kummerow
2013/06/17 14:22:52
I think you want to filter the "resources" directo
| |
50 files.sort() | 52 files.sort() |
51 for filename in files: | 53 for filename in files: |
52 if filename.endswith(".js") and filename != "mjsunit.js": | 54 if filename.endswith(".js"): |
53 testname = os.path.join(dirname[len(self.root) + 1:], filename[:-3]) | 55 testname = os.path.join(dirname[len(self.root) + 1:], filename[:-3]) |
54 test = testcase.TestCase(self, testname) | 56 test = testcase.TestCase(self, testname) |
55 tests.append(test) | 57 tests.append(test) |
56 return tests | 58 return tests |
57 | 59 |
58 def GetFlagsForTestCase(self, testcase, context): | 60 def GetFlagsForTestCase(self, testcase, context): |
59 source = self.GetSourceForTest(testcase) | 61 source = self.GetSourceForTest(testcase) |
60 flags = [] + context.mode_flags | 62 flags = [] + context.mode_flags |
61 flags_match = re.findall(FLAGS_PATTERN, source) | 63 flags_match = re.findall(FLAGS_PATTERN, source) |
62 for match in flags_match: | 64 for match in flags_match: |
63 flags += match.strip().split() | 65 flags += match.strip().split() |
64 | 66 |
65 files_list = [] # List of file names to append to command arguments. | 67 files_list = [] # List of file names to append to command arguments. |
66 files_match = FILES_PATTERN.search(source); | 68 files_match = FILES_PATTERN.search(source); |
67 # Accept several lines of 'Files:'. | 69 # Accept several lines of 'Files:'. |
68 while True: | 70 while True: |
69 if files_match: | 71 if files_match: |
70 files_list += files_match.group(1).strip().split() | 72 files_list += files_match.group(1).strip().split() |
71 files_match = FILES_PATTERN.search(source, files_match.end()) | 73 files_match = FILES_PATTERN.search(source, files_match.end()) |
72 else: | 74 else: |
73 break | 75 break |
74 files = [ os.path.normpath(os.path.join(self.root, '..', '..', f)) | 76 files = [ os.path.normpath(os.path.join(self.root, '..', '..', f)) |
75 for f in files_list ] | 77 for f in files_list ] |
76 testfilename = os.path.join(self.root, testcase.path + self.suffix()) | 78 testfilename = os.path.join(self.root, testcase.path + self.suffix()) |
77 if SELF_SCRIPT_PATTERN.search(source): | 79 if SELF_SCRIPT_PATTERN.search(source): |
78 env = ["-e", "TEST_FILE_NAME=\"%s\"" % testfilename.replace("\\", "\\\\")] | 80 env = ["-e", "TEST_FILE_NAME=\"%s\"" % testfilename.replace("\\", "\\\\")] |
79 files = env + files | 81 files = env + files |
80 files.append(os.path.join(self.root, "mjsunit.js")) | 82 files.append(os.path.join(self.root, "resources/standalone-pre.js")) |
81 files.append(testfilename) | 83 files.append(testfilename) |
84 files.append(os.path.join(self.root, "resources/standalone-post.js")) | |
82 | 85 |
83 flags += files | 86 flags += files |
84 if context.isolates: | 87 if context.isolates: |
85 flags.append("--isolate") | 88 flags.append("--isolate") |
86 flags += files | 89 flags += files |
87 | 90 |
88 return testcase.flags + flags | 91 return testcase.flags + flags |
89 | 92 |
90 def GetSourceForTest(self, testcase): | 93 def GetSourceForTest(self, testcase): |
91 filename = os.path.join(self.root, testcase.path + self.suffix()) | 94 filename = os.path.join(self.root, testcase.path + self.suffix()) |
92 with open(filename) as f: | 95 with open(filename) as f: |
93 return f.read() | 96 return f.read() |
94 | 97 |
98 def IsFailureOutput(self, output, testpath): | |
99 if super(BlinkTestSuite, self).IsFailureOutput(output, testpath): | |
100 return True | |
101 file_name = os.path.join(self.root, testpath) + "-expected.txt" | |
102 with file(file_name, "r") as expected: | |
103 def ExpIterator(): | |
104 for line in expected.readlines(): | |
105 if line.startswith("#") or not line.strip(): continue | |
106 yield line.strip() | |
107 def ActIterator(): | |
108 for line in output.stdout.splitlines(): | |
109 if not line.strip(): continue | |
Jakob Kummerow
2013/06/17 14:22:52
To make this test suite pass on Android and NaCl,
| |
110 yield line.strip() | |
111 for (expected, actual) in itertools.izip(ExpIterator(), ActIterator()): | |
112 if expected != actual: | |
113 return True | |
114 return False | |
115 | |
95 | 116 |
96 def GetSuite(name, root): | 117 def GetSuite(name, root): |
97 return MjsunitTestSuite(name, root) | 118 return BlinkTestSuite(name, root) |
OLD | NEW |