blob: c55e4a85a81912b07deb32cf9e1554ae92ef0714 [file] [log] [blame]
Ben Murdoch8b112d22011-06-08 16:22:53 +01001# Copyright 2011 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
Ben Murdochb8a8cc12014-11-26 15:28:44 +000028
Ben Murdoch8b112d22011-06-08 16:22:53 +010029import os
Ben Murdoch8b112d22011-06-08 16:22:53 +010030
Ben Murdochb8a8cc12014-11-26 15:28:44 +000031from testrunner.local import testsuite
Ben Murdochb8a8cc12014-11-26 15:28:44 +000032from testrunner.objects import testcase
Ben Murdoch8b112d22011-06-08 16:22:53 +010033
34
Ben Murdochb8a8cc12014-11-26 15:28:44 +000035class PreparserTestSuite(testsuite.TestSuite):
36 def __init__(self, name, root):
37 super(PreparserTestSuite, self).__init__(name, root)
Ben Murdoch8b112d22011-06-08 16:22:53 +010038
Ben Murdochb8a8cc12014-11-26 15:28:44 +000039 def shell(self):
40 return "d8"
Ben Murdoch8b112d22011-06-08 16:22:53 +010041
Ben Murdochb8a8cc12014-11-26 15:28:44 +000042 def _ParsePythonTestTemplates(self, result, filename):
43 pathname = os.path.join(self.root, filename + ".pyt")
Emily Bernierd0a1eb72015-03-24 16:35:39 -040044 def Test(name, source, expectation, extra_flags=[]):
Ben Murdochb8a8cc12014-11-26 15:28:44 +000045 source = source.replace("\n", " ")
46 testname = os.path.join(filename, name)
47 flags = ["-e", source]
48 if expectation:
49 flags += ["--throws"]
Emily Bernierd0a1eb72015-03-24 16:35:39 -040050 flags += extra_flags
Ben Murdochb8a8cc12014-11-26 15:28:44 +000051 test = testcase.TestCase(self, testname, flags=flags)
Ben Murdoch257744e2011-11-30 15:57:28 +000052 result.append(test)
53 def Template(name, source):
54 def MkTest(replacement, expectation):
55 testname = name
56 testsource = source
57 for key in replacement.keys():
Ben Murdochb8a8cc12014-11-26 15:28:44 +000058 testname = testname.replace("$" + key, replacement[key]);
59 testsource = testsource.replace("$" + key, replacement[key]);
Ben Murdoch257744e2011-11-30 15:57:28 +000060 Test(testname, testsource, expectation)
61 return MkTest
Ben Murdoch589d6972011-11-30 16:04:58 +000062 execfile(pathname, {"Test": Test, "Template": Template})
Ben Murdoch257744e2011-11-30 15:57:28 +000063
Ben Murdochb8a8cc12014-11-26 15:28:44 +000064 def ListTests(self, context):
Ben Murdoch257744e2011-11-30 15:57:28 +000065 result = []
Ben Murdochb8a8cc12014-11-26 15:28:44 +000066
Ben Murdochb8a8cc12014-11-26 15:28:44 +000067 # Find all .pyt files in this directory.
Ben Murdoch257744e2011-11-30 15:57:28 +000068 filenames = [f[:-4] for f in os.listdir(self.root) if f.endswith(".pyt")]
69 filenames.sort()
Ben Murdochb8a8cc12014-11-26 15:28:44 +000070 for f in filenames:
71 self._ParsePythonTestTemplates(result, f)
Ben Murdoch8b112d22011-06-08 16:22:53 +010072 return result
73
Ben Murdochb8a8cc12014-11-26 15:28:44 +000074 def GetFlagsForTestCase(self, testcase, context):
Ben Murdochb8a8cc12014-11-26 15:28:44 +000075 return testcase.flags
Ben Murdoch8b112d22011-06-08 16:22:53 +010076
Ben Murdochb8a8cc12014-11-26 15:28:44 +000077 def GetSourceForTest(self, testcase):
Ben Murdochda12d292016-06-02 14:46:10 +010078 assert testcase.flags[0] == "-e"
79 return testcase.flags[1]
Ben Murdochb8a8cc12014-11-26 15:28:44 +000080
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000081 def _VariantGeneratorFactory(self):
82 return testsuite.StandardVariantGenerator
Ben Murdoch257744e2011-11-30 15:57:28 +000083
Ben Murdoch8b112d22011-06-08 16:22:53 +010084
Ben Murdochb8a8cc12014-11-26 15:28:44 +000085def GetSuite(name, root):
86 return PreparserTestSuite(name, root)