2012-03-28 09:33:19 +00:00
|
|
|
# Copyright 2012 the V8 project authors. All rights reserved.
|
2011-03-23 21:36:42 +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 __future__ import print_function
|
2011-03-23 21:36:42 +00:00
|
|
|
|
2015-09-25 13:03:27 +00:00
|
|
|
import imp
|
2017-01-07 02:44:49 +00:00
|
|
|
import itertools
|
2012-09-24 09:38:46 +00:00
|
|
|
import os
|
2016-10-07 10:20:43 +00:00
|
|
|
import re
|
2012-05-11 12:18:09 +00:00
|
|
|
import sys
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2015-09-25 13:03:27 +00:00
|
|
|
from testrunner.local import statusfile
|
2012-09-24 09:38:46 +00:00
|
|
|
from testrunner.local import testsuite
|
2014-05-21 09:25:05 +00:00
|
|
|
from testrunner.local import utils
|
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 base as outproc
|
|
|
|
from testrunner.outproc import test262
|
|
|
|
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2017-04-07 10:21:48 +00:00
|
|
|
# TODO(littledan): move the flag mapping into the status file
|
|
|
|
FEATURE_FLAGS = {
|
2018-10-05 01:57:05 +00:00
|
|
|
'Intl.Segmenter': '--harmony-intl-segmenter',
|
2019-06-12 17:14:02 +00:00
|
|
|
'Intl.DateTimeFormat-dayPeriod': '--harmony-intl-dateformat-day-period',
|
|
|
|
'Intl.DateTimeFormat-quarter': '--harmony-intl-dateformat-quarter',
|
|
|
|
'Intl.DateTimeFormat-fractionalSecondDigits': '--harmony-intl-dateformat-fractional-second-digits',
|
2019-11-18 22:14:27 +00:00
|
|
|
'String.prototype.replaceAll': '--harmony_string_replaceall',
|
2018-06-21 14:16:47 +00:00
|
|
|
'Symbol.prototype.description': '--harmony-symbol-description',
|
2018-10-10 09:35:07 +00:00
|
|
|
'export-star-as-namespace-from-module': '--harmony-namespace-exports',
|
2019-04-24 22:22:07 +00:00
|
|
|
'Promise.allSettled': '--harmony-promise-all-settled',
|
2020-04-08 23:16:14 +00:00
|
|
|
'FinalizationRegistry': '--harmony-weak-refs-with-cleanup-some',
|
|
|
|
'WeakRef': '--harmony-weak-refs-with-cleanup-some',
|
2019-07-23 13:36:57 +00:00
|
|
|
'host-gc-required': '--expose-gc-as=v8GC',
|
2019-09-23 15:42:10 +00:00
|
|
|
'top-level-await': '--harmony-top-level-await',
|
2019-10-08 14:31:03 +00:00
|
|
|
'regexp-match-indices': '--harmony-regexp-match-indices',
|
|
|
|
# https://github.com/tc39/test262/pull/2395
|
|
|
|
'regexp-named-groups': '--harmony-regexp-match-indices',
|
2019-10-10 20:11:08 +00:00
|
|
|
'class-methods-private': '--harmony-private-methods',
|
|
|
|
'class-static-methods-private': '--harmony-private-methods',
|
2020-04-20 09:44:59 +00:00
|
|
|
'AggregateError': '--harmony-promise-any',
|
2020-04-22 16:57:57 +00:00
|
|
|
'logical-assignment-operators': '--harmony-logical-assignment',
|
2020-04-30 13:09:58 +00:00
|
|
|
'Promise.any': '--harmony-promise-any',
|
2017-04-07 10:21:48 +00:00
|
|
|
}
|
|
|
|
|
2019-10-10 20:11:08 +00:00
|
|
|
SKIPPED_FEATURES = set([])
|
2017-09-11 15:01:09 +00:00
|
|
|
|
2016-02-28 12:26:43 +00:00
|
|
|
DATA = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data")
|
2016-02-19 14:41:16 +00:00
|
|
|
|
2015-09-25 13:03:27 +00:00
|
|
|
TEST_262_HARNESS_FILES = ["sta.js", "assert.js"]
|
2016-04-20 19:42:55 +00:00
|
|
|
TEST_262_NATIVE_FILES = ["detachArrayBuffer.js"]
|
2015-09-25 13:03:27 +00:00
|
|
|
|
|
|
|
TEST_262_SUITE_PATH = ["data", "test"]
|
|
|
|
TEST_262_HARNESS_PATH = ["data", "harness"]
|
2016-07-22 15:25:06 +00:00
|
|
|
TEST_262_TOOLS_PATH = ["harness", "src"]
|
2017-01-07 02:44:49 +00:00
|
|
|
TEST_262_LOCAL_TESTS_PATH = ["local-tests", "test"]
|
|
|
|
|
2016-07-22 15:25:06 +00:00
|
|
|
sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)),
|
|
|
|
*TEST_262_TOOLS_PATH))
|
2015-09-25 13:03:27 +00:00
|
|
|
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2018-01-12 10:07:56 +00:00
|
|
|
class VariantsGenerator(testsuite.VariantsGenerator):
|
2018-01-17 10:00:28 +00:00
|
|
|
def gen(self, test):
|
2018-01-12 10:07:56 +00:00
|
|
|
flags_set = self._get_flags_set(test)
|
|
|
|
test_record = test.test_record
|
2018-12-13 09:13:33 +00:00
|
|
|
|
|
|
|
# Add a reverse test ensuring that FAIL_PHASE_ONLY is only used for tests
|
|
|
|
# that actually fail to throw an exception at wrong phase.
|
|
|
|
phase_variants = ['']
|
|
|
|
if test.fail_phase_only:
|
|
|
|
phase_variants.append('-fail-phase-reverse')
|
|
|
|
|
|
|
|
for phase_var in phase_variants:
|
|
|
|
for n, variant in enumerate(self._get_variants(test)):
|
|
|
|
flags = flags_set[variant][0]
|
|
|
|
if 'noStrict' in test_record:
|
|
|
|
yield (variant, flags, str(n) + phase_var)
|
|
|
|
elif 'onlyStrict' in test_record:
|
|
|
|
yield (variant, flags + ['--use-strict'], 'strict-%d' % n + phase_var)
|
|
|
|
else:
|
|
|
|
yield (variant, flags, str(n))
|
|
|
|
yield (variant, flags + ['--use-strict'], 'strict-%d' % n + phase_var)
|
2018-01-12 10:07:56 +00:00
|
|
|
|
|
|
|
|
2019-02-05 14:00:49 +00:00
|
|
|
class TestLoader(testsuite.JSTestLoader):
|
|
|
|
@property
|
|
|
|
def test_dirs(self):
|
|
|
|
return [
|
|
|
|
self.test_root,
|
|
|
|
os.path.join(self.suite.root, *TEST_262_LOCAL_TESTS_PATH),
|
|
|
|
]
|
2019-02-05 15:17:09 +00:00
|
|
|
|
2019-02-05 14:00:49 +00:00
|
|
|
@property
|
|
|
|
def excluded_suffixes(self):
|
|
|
|
return {"_FIXTURE.js"}
|
|
|
|
|
|
|
|
@property
|
|
|
|
def excluded_dirs(self):
|
|
|
|
return {"intl402"} if self.test_config.noi18n else set()
|
|
|
|
|
|
|
|
def _should_filter_by_test(self, test):
|
|
|
|
features = test.test_record.get("features", [])
|
|
|
|
return SKIPPED_FEATURES.intersection(features)
|
|
|
|
|
|
|
|
|
|
|
|
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, *TEST_262_SUITE_PATH)
|
|
|
|
# TODO: this makes the TestLoader mutable, refactor it.
|
|
|
|
self._test_loader.test_root = self.test_root
|
2015-09-25 13:03:27 +00:00
|
|
|
self.harnesspath = os.path.join(self.root, *TEST_262_HARNESS_PATH)
|
|
|
|
self.harness = [os.path.join(self.harnesspath, f)
|
|
|
|
for f in TEST_262_HARNESS_FILES]
|
2012-09-24 09:38:46 +00:00
|
|
|
self.harness += [os.path.join(self.root, "harness-adapt.js")]
|
2019-02-05 14:00:49 +00:00
|
|
|
self.local_test_root = os.path.join(self.root, *TEST_262_LOCAL_TESTS_PATH)
|
2017-12-12 21:33:16 +00:00
|
|
|
self.parse_test_record = self._load_parse_test_record()
|
2017-12-12 11:08:27 +00:00
|
|
|
|
|
|
|
def _load_parse_test_record(self):
|
|
|
|
root = os.path.join(self.root, *TEST_262_TOOLS_PATH)
|
|
|
|
f = None
|
|
|
|
try:
|
|
|
|
(f, pathname, description) = imp.find_module("parseTestRecord", [root])
|
|
|
|
module = imp.load_module("parseTestRecord", f, pathname, description)
|
|
|
|
return module.parseTestRecord
|
|
|
|
except:
|
2017-12-12 21:33:16 +00:00
|
|
|
print ('Cannot load parseTestRecord; '
|
|
|
|
'you may need to gclient sync for test262')
|
|
|
|
raise
|
2017-12-12 11:08:27 +00:00
|
|
|
finally:
|
|
|
|
if f:
|
|
|
|
f.close()
|
2011-03-23 21:36:42 +00:00
|
|
|
|
2019-02-05 14:00:49 +00:00
|
|
|
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
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2018-01-12 10:07:56 +00:00
|
|
|
def _variants_gen_class(self):
|
|
|
|
return VariantsGenerator
|
2017-12-12 21:33:16 +00:00
|
|
|
|
|
|
|
|
2018-08-29 13:52:04 +00:00
|
|
|
class TestCase(testcase.D8TestCase):
|
2017-12-12 21:33:16 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2017-12-13 12:47:24 +00:00
|
|
|
super(TestCase, self).__init__(*args, **kwargs)
|
2017-12-12 21:33:16 +00:00
|
|
|
|
|
|
|
source = self.get_source()
|
|
|
|
self.test_record = self.suite.parse_test_record(source, self.path)
|
2018-01-04 07:39:09 +00:00
|
|
|
self._expected_exception = (
|
2017-12-21 14:48:59 +00:00
|
|
|
self.test_record
|
|
|
|
.get('negative', {})
|
|
|
|
.get('type', None)
|
|
|
|
)
|
|
|
|
|
2018-12-13 09:13:33 +00:00
|
|
|
# We disallow combining FAIL_PHASE_ONLY with any other fail outcome types.
|
|
|
|
# Outcome parsing logic in the base class converts all outcomes specified in
|
|
|
|
# the status file into either FAIL, CRASH or PASS, thus we do not need to
|
|
|
|
# handle FAIL_OK, FAIL_SLOPPY and various other outcomes.
|
|
|
|
if self.fail_phase_only:
|
|
|
|
assert (
|
|
|
|
statusfile.FAIL not in self.expected_outcomes and
|
|
|
|
statusfile.CRASH not in self.expected_outcomes), self.name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def fail_phase_only(self):
|
|
|
|
# The FAIL_PHASE_ONLY is defined in tools/testrunner/local/statusfile.py and
|
|
|
|
# can be used in status files to mark tests that throw an exception at wrong
|
|
|
|
# phase, e.g. SyntaxError is thrown at execution phase instead of parsing
|
|
|
|
# phase. See https://crbug.com/v8/8467 for more details.
|
|
|
|
return statusfile.FAIL_PHASE_ONLY in self._statusfile_outcomes
|
|
|
|
|
|
|
|
@property
|
|
|
|
def _fail_phase_reverse(self):
|
|
|
|
return 'fail-phase-reverse' in self.procid
|
|
|
|
|
2019-02-05 14:00:49 +00:00
|
|
|
def __needs_harness_agent(self):
|
|
|
|
tokens = self.path.split(os.path.sep)
|
|
|
|
return tokens[:2] == ["built-ins", "Atomics"]
|
|
|
|
|
2018-01-31 12:01:49 +00:00
|
|
|
def _get_files_params(self):
|
2017-12-12 21:33:16 +00:00
|
|
|
return (
|
|
|
|
list(self.suite.harness) +
|
|
|
|
([os.path.join(self.suite.root, "harness-agent.js")]
|
2019-02-05 14:00:49 +00:00
|
|
|
if self.__needs_harness_agent() else []) +
|
2018-11-20 14:32:44 +00:00
|
|
|
([os.path.join(self.suite.root, "harness-adapt-donotevaluate.js")]
|
2018-12-13 09:13:33 +00:00
|
|
|
if self.fail_phase_only and not self._fail_phase_reverse else []) +
|
2017-12-12 21:33:16 +00:00
|
|
|
self._get_includes() +
|
|
|
|
(["--module"] if "module" in self.test_record else []) +
|
|
|
|
[self._get_source_path()]
|
|
|
|
)
|
|
|
|
|
2018-01-31 12:01:49 +00:00
|
|
|
def _get_suite_flags(self):
|
2017-12-12 21:33:16 +00:00
|
|
|
return (
|
|
|
|
(["--throws"] if "negative" in self.test_record else []) +
|
|
|
|
(["--allow-natives-syntax"]
|
|
|
|
if "detachArrayBuffer.js" in self.test_record.get("includes", [])
|
|
|
|
else []) +
|
|
|
|
[flag for (feature, flag) in FEATURE_FLAGS.items()
|
2018-10-31 06:37:33 +00:00
|
|
|
if feature in self.test_record.get("features", [])] +
|
|
|
|
["--no-arguments"] # disable top-level arguments in d8
|
2017-12-12 21:33:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def _get_includes(self):
|
|
|
|
return [os.path.join(self._base_path(filename), filename)
|
|
|
|
for filename in self.test_record.get("includes", [])]
|
|
|
|
|
|
|
|
def _base_path(self, filename):
|
|
|
|
if filename in TEST_262_NATIVE_FILES:
|
|
|
|
return self.suite.root
|
|
|
|
else:
|
|
|
|
return self.suite.harnesspath
|
|
|
|
|
|
|
|
def _get_source_path(self):
|
|
|
|
filename = self.path + self._get_suffix()
|
2019-02-05 14:00:49 +00:00
|
|
|
path = os.path.join(self.suite.local_test_root, filename)
|
2017-12-12 21:33:16 +00:00
|
|
|
if os.path.exists(path):
|
|
|
|
return path
|
2019-02-05 14:00:49 +00:00
|
|
|
return os.path.join(self.suite.test_root, filename)
|
2015-09-25 13:03:27 +00:00
|
|
|
|
2017-12-21 14:48:59 +00:00
|
|
|
@property
|
|
|
|
def output_proc(self):
|
2018-01-04 07:39:09 +00:00
|
|
|
if self._expected_exception is not None:
|
2018-01-04 10:42:49 +00:00
|
|
|
return test262.ExceptionOutProc(self.expected_outcomes,
|
2018-12-13 09:13:33 +00:00
|
|
|
self._expected_exception,
|
|
|
|
self._fail_phase_reverse)
|
|
|
|
else:
|
|
|
|
# We only support fail phase reverse on tests that expect an exception.
|
|
|
|
assert not self._fail_phase_reverse
|
|
|
|
|
2018-01-04 07:39:09 +00:00
|
|
|
if self.expected_outcomes == outproc.OUTCOMES_PASS:
|
2018-01-04 10:42:49 +00:00
|
|
|
return test262.PASS_NO_EXCEPTION
|
|
|
|
return test262.NoExceptionOutProc(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)
|