2016-10-02 19:41:17 +00:00
|
|
|
# Copyright 2016 the V8 project authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
from testrunner.local import testsuite
|
|
|
|
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
|
2016-10-02 19:41:17 +00:00
|
|
|
|
|
|
|
PROTOCOL_TEST_JS = "protocol-test.js"
|
|
|
|
EXPECTED_SUFFIX = "-expected.txt"
|
2017-02-27 20:20:39 +00:00
|
|
|
RESOURCES_FOLDER = "resources"
|
2016-10-02 19:41:17 +00:00
|
|
|
|
2019-02-05 14:00:49 +00:00
|
|
|
class TestLoader(testsuite.JSTestLoader):
|
|
|
|
@property
|
|
|
|
def excluded_files(self):
|
|
|
|
return {PROTOCOL_TEST_JS}
|
|
|
|
|
|
|
|
@property
|
|
|
|
def excluded_dirs(self):
|
|
|
|
return {RESOURCES_FOLDER}
|
|
|
|
|
|
|
|
|
2017-12-13 12:47:24 +00:00
|
|
|
class TestSuite(testsuite.TestSuite):
|
2019-02-05 14:00:49 +00:00
|
|
|
def _test_loader_class(self):
|
|
|
|
return TestLoader
|
2016-10-02 19:41:17 +00:00
|
|
|
|
2017-12-12 21:33:16 +00:00
|
|
|
def _test_class(self):
|
2017-12-13 12:47:24 +00:00
|
|
|
return TestCase
|
2016-10-02 19:41:17 +00:00
|
|
|
|
2017-12-12 21:33:16 +00:00
|
|
|
|
2017-12-13 12:47:24 +00:00
|
|
|
class TestCase(testcase.TestCase):
|
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
|
|
|
|
|
|
|
self._source_flags = self._parse_source_flags()
|
|
|
|
|
2018-01-31 12:01:49 +00:00
|
|
|
def _get_files_params(self):
|
2017-12-12 21:33:16 +00:00
|
|
|
return [
|
|
|
|
os.path.join(self.suite.root, PROTOCOL_TEST_JS),
|
|
|
|
os.path.join(self.suite.root, self.path + self._get_suffix()),
|
|
|
|
]
|
|
|
|
|
|
|
|
def _get_source_flags(self):
|
|
|
|
return self._source_flags
|
|
|
|
|
|
|
|
def _get_source_path(self):
|
|
|
|
return os.path.join(self.suite.root, self.path + self._get_suffix())
|
|
|
|
|
2017-12-19 14:48:08 +00:00
|
|
|
def get_shell(self):
|
2017-12-12 21:33:16 +00:00
|
|
|
return 'inspector-test'
|
|
|
|
|
2018-09-11 09:43:12 +00:00
|
|
|
def _get_resources(self):
|
|
|
|
return [
|
|
|
|
os.path.join(
|
|
|
|
'test', 'inspector', 'debugger', 'resources', 'break-locations.js'),
|
|
|
|
]
|
|
|
|
|
2017-12-21 14:48:59 +00:00
|
|
|
@property
|
|
|
|
def output_proc(self):
|
2018-01-04 07:39:09 +00:00
|
|
|
return outproc.ExpectedOutProc(
|
|
|
|
self.expected_outcomes,
|
|
|
|
os.path.join(self.suite.root, self.path) + EXPECTED_SUFFIX)
|
2017-12-21 12:24:12 +00:00
|
|
|
|
2017-12-12 21:33:16 +00:00
|
|
|
|
2018-01-31 09:18:13 +00:00
|
|
|
def GetSuite(*args, **kwargs):
|
|
|
|
return TestSuite(*args, **kwargs)
|