2008-09-09 20:08:45 +00:00
|
|
|
# Copyright 2008 the V8 project authors. All rights reserved.
|
2008-08-27 10:11:39 +00:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
# met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above
|
|
|
|
# copyright notice, this list of conditions and the following
|
|
|
|
# disclaimer in the documentation and/or other materials provided
|
|
|
|
# with the distribution.
|
|
|
|
# * Neither the name of Google Inc. nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2019-02-24 18:17:25 +00:00
|
|
|
# for py2/py3 compatibility
|
|
|
|
from functools import reduce
|
2008-08-27 10:11:39 +00:00
|
|
|
|
|
|
|
import os
|
2012-09-24 09:38:46 +00:00
|
|
|
|
|
|
|
from testrunner.local import testsuite
|
2017-12-13 12:47:24 +00:00
|
|
|
from testrunner.objects import testcase
|
2018-01-04 10:42:49 +00:00
|
|
|
from testrunner.outproc import mozilla
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2019-02-05 14:00:49 +00:00
|
|
|
EXCLUDED = [
|
|
|
|
"CVS",
|
|
|
|
".svn",
|
|
|
|
]
|
|
|
|
|
|
|
|
FRAMEWORK = [
|
|
|
|
"browser.js",
|
|
|
|
"shell.js",
|
|
|
|
"jsref.js",
|
|
|
|
"template.js",
|
|
|
|
]
|
|
|
|
|
|
|
|
TEST_DIRS = [
|
|
|
|
"ecma",
|
|
|
|
"ecma_2",
|
|
|
|
"ecma_3",
|
|
|
|
"js1_1",
|
|
|
|
"js1_2",
|
|
|
|
"js1_3",
|
|
|
|
"js1_4",
|
|
|
|
"js1_5",
|
|
|
|
]
|
|
|
|
|
|
|
|
class TestLoader(testsuite.JSTestLoader):
|
|
|
|
@property
|
|
|
|
def excluded_files(self):
|
|
|
|
return set(FRAMEWORK)
|
2019-02-05 12:03:06 +00:00
|
|
|
|
2019-02-05 14:00:49 +00:00
|
|
|
@property
|
|
|
|
def excluded_dirs(self):
|
|
|
|
return set(EXCLUDED)
|
2019-02-05 12:03:06 +00:00
|
|
|
|
2019-02-05 14:00:49 +00:00
|
|
|
@property
|
|
|
|
def test_dirs(self):
|
|
|
|
return TEST_DIRS
|
2019-02-05 15:17:09 +00:00
|
|
|
|
2019-02-05 14:00:49 +00:00
|
|
|
def _to_relpath(self, abspath, _):
|
|
|
|
# TODO: refactor this by setting the test path during the TestCase creation
|
|
|
|
return os.path.relpath(abspath, self.test_root)
|
2008-08-27 10:11:39 +00:00
|
|
|
|
|
|
|
|
2017-12-13 12:47:24 +00:00
|
|
|
class TestSuite(testsuite.TestSuite):
|
2018-01-31 09:18:13 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(TestSuite, self).__init__(*args, **kwargs)
|
2019-02-05 14:00:49 +00:00
|
|
|
self.test_root = os.path.join(self.root, "data")
|
|
|
|
self._test_loader.test_root = self.test_root
|
|
|
|
|
|
|
|
def _test_loader_class(self):
|
|
|
|
return TestLoader
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2017-12-12 21:33:16 +00:00
|
|
|
def _test_class(self):
|
2017-12-13 12:47:24 +00:00
|
|
|
return TestCase
|
2017-12-12 21:33:16 +00:00
|
|
|
|
|
|
|
|
2018-08-29 13:52:04 +00:00
|
|
|
class TestCase(testcase.D8TestCase):
|
2018-01-31 12:01:49 +00:00
|
|
|
def _get_files_params(self):
|
2017-12-12 21:33:16 +00:00
|
|
|
files = [os.path.join(self.suite.root, "mozilla-shell-emulation.js")]
|
|
|
|
testfilename = self.path + ".js"
|
2019-02-05 14:00:49 +00:00
|
|
|
testfilepath = testfilename.split(os.path.sep)
|
2019-02-24 18:17:25 +00:00
|
|
|
for i in range(len(testfilepath)):
|
2019-02-05 14:00:49 +00:00
|
|
|
script = os.path.join(self.suite.test_root,
|
2012-09-24 09:38:46 +00:00
|
|
|
reduce(os.path.join, testfilepath[:i], ""),
|
|
|
|
"shell.js")
|
|
|
|
if os.path.exists(script):
|
2017-10-27 12:55:29 +00:00
|
|
|
files.append(script)
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2019-02-05 14:00:49 +00:00
|
|
|
files.append(os.path.join(self.suite.test_root, testfilename))
|
2017-12-12 21:33:16 +00:00
|
|
|
return files
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2018-01-31 12:01:49 +00:00
|
|
|
def _get_suite_flags(self):
|
2017-12-12 21:33:16 +00:00
|
|
|
return ['--expose-gc']
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2017-12-12 21:33:16 +00:00
|
|
|
def _get_source_path(self):
|
2019-02-05 14:00:49 +00:00
|
|
|
return os.path.join(self.suite.test_root, self.path + self._get_suffix())
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2017-12-21 14:48:59 +00:00
|
|
|
@property
|
|
|
|
def output_proc(self):
|
2018-01-04 07:39:09 +00:00
|
|
|
if not self.expected_outcomes:
|
|
|
|
if self.path.endswith('-n'):
|
2018-01-04 10:42:49 +00:00
|
|
|
return mozilla.MOZILLA_PASS_NEGATIVE
|
|
|
|
return mozilla.MOZILLA_PASS_DEFAULT
|
2017-12-20 15:54:43 +00:00
|
|
|
if self.path.endswith('-n'):
|
2018-01-04 10:42:49 +00:00
|
|
|
return mozilla.NegOutProc(self.expected_outcomes)
|
|
|
|
return mozilla.OutProc(self.expected_outcomes)
|
2018-01-04 07:39:09 +00:00
|
|
|
|
|
|
|
|
2018-01-31 09:18:13 +00:00
|
|
|
def GetSuite(*args, **kwargs):
|
|
|
|
return TestSuite(*args, **kwargs)
|