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
|
|
|
|
2017-12-13 12:47:24 +00:00
|
|
|
class TestSuite(testsuite.TestSuite):
|
2018-02-01 10:01:21 +00:00
|
|
|
def ListTests(self):
|
2016-10-02 19:41:17 +00:00
|
|
|
tests = []
|
2017-12-13 12:47:24 +00:00
|
|
|
for dirname, dirs, files in os.walk(
|
|
|
|
os.path.join(self.root), followlinks=True):
|
2016-10-02 19:41:17 +00:00
|
|
|
for dotted in [x for x in dirs if x.startswith('.')]:
|
|
|
|
dirs.remove(dotted)
|
2017-02-27 20:20:39 +00:00
|
|
|
if dirname.endswith(os.path.sep + RESOURCES_FOLDER):
|
|
|
|
continue
|
2016-10-02 19:41:17 +00:00
|
|
|
dirs.sort()
|
|
|
|
files.sort()
|
|
|
|
for filename in files:
|
|
|
|
if filename.endswith(".js") and filename != PROTOCOL_TEST_JS:
|
|
|
|
fullpath = os.path.join(dirname, filename)
|
|
|
|
relpath = fullpath[len(self.root) + 1 : -3]
|
|
|
|
testname = relpath.replace(os.path.sep, "/")
|
2017-12-12 21:33:16 +00:00
|
|
|
test = self._create_test(testname)
|
2016-10-02 19:41:17 +00:00
|
|
|
tests.append(test)
|
|
|
|
return tests
|
|
|
|
|
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'
|
|
|
|
|
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)
|