blob: 7af7acf0a927e2ac034aa459cd4aaa796618ea14 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001# Copyright 2008 the V8 project authors. All rights reserved.
2# Redistribution and use in source and binary forms, with or without
3# modification, are permitted provided that the following conditions are
4# met:
5#
6# * Redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer.
8# * Redistributions in binary form must reproduce the above
9# copyright notice, this list of conditions and the following
10# disclaimer in the documentation and/or other materials provided
11# with the distribution.
12# * Neither the name of Google Inc. nor the names of its
13# contributors may be used to endorse or promote products derived
14# from this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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.
27
Steve Blocka7e24c12009-10-30 11:49:00 +000028import os
Steve Blocka7e24c12009-10-30 11:49:00 +000029import re
Ben Murdochb8a8cc12014-11-26 15:28:44 +000030
31from testrunner.local import testsuite
32from testrunner.objects import testcase
Steve Blocka7e24c12009-10-30 11:49:00 +000033
Steve Blocka7e24c12009-10-30 11:49:00 +000034FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)")
35FILES_PATTERN = re.compile(r"//\s+Files:(.*)")
36SELF_SCRIPT_PATTERN = re.compile(r"//\s+Env: TEST_FILE_NAME")
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000037MODULE_PATTERN = re.compile(r"^// MODULE$", flags=re.MULTILINE)
38NO_HARNESS_PATTERN = re.compile(r"^// NO HARNESS$", flags=re.MULTILINE)
Steve Blocka7e24c12009-10-30 11:49:00 +000039
40
Ben Murdochb8a8cc12014-11-26 15:28:44 +000041class MjsunitTestSuite(testsuite.TestSuite):
Steve Blocka7e24c12009-10-30 11:49:00 +000042
Ben Murdochb8a8cc12014-11-26 15:28:44 +000043 def __init__(self, name, root):
44 super(MjsunitTestSuite, self).__init__(name, root)
Steve Blocka7e24c12009-10-30 11:49:00 +000045
Ben Murdochb8a8cc12014-11-26 15:28:44 +000046 def ListTests(self, context):
47 tests = []
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000048 for dirname, dirs, files in os.walk(self.root, followlinks=True):
Ben Murdochb8a8cc12014-11-26 15:28:44 +000049 for dotted in [x for x in dirs if x.startswith('.')]:
50 dirs.remove(dotted)
51 dirs.sort()
52 files.sort()
53 for filename in files:
54 if filename.endswith(".js") and filename != "mjsunit.js":
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000055 fullpath = os.path.join(dirname, filename)
56 relpath = fullpath[len(self.root) + 1 : -3]
57 testname = relpath.replace(os.path.sep, "/")
Ben Murdochb8a8cc12014-11-26 15:28:44 +000058 test = testcase.TestCase(self, testname)
59 tests.append(test)
60 return tests
Steve Blocka7e24c12009-10-30 11:49:00 +000061
Ben Murdochb8a8cc12014-11-26 15:28:44 +000062 def GetFlagsForTestCase(self, testcase, context):
63 source = self.GetSourceForTest(testcase)
64 flags = [] + context.mode_flags
65 flags_match = re.findall(FLAGS_PATTERN, source)
66 for match in flags_match:
67 flags += match.strip().split()
Steve Blocka7e24c12009-10-30 11:49:00 +000068
Ben Murdochb8a8cc12014-11-26 15:28:44 +000069 files_list = [] # List of file names to append to command arguments.
Steve Blocka7e24c12009-10-30 11:49:00 +000070 files_match = FILES_PATTERN.search(source);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000071 # Accept several lines of 'Files:'.
Steve Blocka7e24c12009-10-30 11:49:00 +000072 while True:
73 if files_match:
Ben Murdochb8a8cc12014-11-26 15:28:44 +000074 files_list += files_match.group(1).strip().split()
Steve Blocka7e24c12009-10-30 11:49:00 +000075 files_match = FILES_PATTERN.search(source, files_match.end())
76 else:
77 break
Ben Murdochb8a8cc12014-11-26 15:28:44 +000078 files = [ os.path.normpath(os.path.join(self.root, '..', '..', f))
79 for f in files_list ]
80 testfilename = os.path.join(self.root, testcase.path + self.suffix())
Steve Blocka7e24c12009-10-30 11:49:00 +000081 if SELF_SCRIPT_PATTERN.search(source):
Ben Murdochb8a8cc12014-11-26 15:28:44 +000082 env = ["-e", "TEST_FILE_NAME=\"%s\"" % testfilename.replace("\\", "\\\\")]
83 files = env + files
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000084
85 if not context.no_harness and not NO_HARNESS_PATTERN.search(source):
86 files.append(os.path.join(self.root, "mjsunit.js"))
87
88 if MODULE_PATTERN.search(source):
89 files.append("--module")
Ben Murdochb8a8cc12014-11-26 15:28:44 +000090 files.append(testfilename)
Steve Blocka7e24c12009-10-30 11:49:00 +000091
Ben Murdochb8a8cc12014-11-26 15:28:44 +000092 flags += files
93 if context.isolates:
94 flags.append("--isolate")
95 flags += files
Steve Block44f0eee2011-05-26 01:26:41 +010096
Ben Murdochb8a8cc12014-11-26 15:28:44 +000097 return testcase.flags + flags
Steve Blocka7e24c12009-10-30 11:49:00 +000098
Ben Murdochb8a8cc12014-11-26 15:28:44 +000099 def GetSourceForTest(self, testcase):
100 filename = os.path.join(self.root, testcase.path + self.suffix())
101 with open(filename) as f:
102 return f.read()
Steve Blocka7e24c12009-10-30 11:49:00 +0000103
104
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000105def GetSuite(name, root):
106 return MjsunitTestSuite(name, root)