11d0d16ea9
BUG=v8:5238 Review-Url: https://codereview.chromium.org/2216293002 Cr-Commit-Position: refs/heads/master@{#38362}
99 lines
2.6 KiB
Python
Executable File
99 lines
2.6 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# 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
|
|
import sys
|
|
import unittest
|
|
|
|
# Needed because the test runner contains relative imports.
|
|
TOOLS_PATH = os.path.dirname(os.path.dirname(os.path.dirname(
|
|
os.path.abspath(__file__))))
|
|
sys.path.append(TOOLS_PATH)
|
|
|
|
from testrunner.local.testsuite import TestSuite
|
|
from testrunner.objects.testcase import TestCase
|
|
|
|
|
|
class TestSuiteTest(unittest.TestCase):
|
|
def test_filter_testcases_by_status_first_pass(self):
|
|
suite = TestSuite('foo', 'bar')
|
|
suite.tests = [
|
|
TestCase(suite, 'foo/bar'),
|
|
TestCase(suite, 'baz/bar'),
|
|
]
|
|
suite.rules = {
|
|
'': {
|
|
'foo/bar': set(['PASS', 'SKIP']),
|
|
'baz/bar': set(['PASS', 'FAIL']),
|
|
},
|
|
}
|
|
suite.wildcards = {
|
|
'': {
|
|
'baz/*': set(['PASS', 'SLOW']),
|
|
},
|
|
}
|
|
suite.FilterTestCasesByStatus(warn_unused_rules=False)
|
|
self.assertEquals(
|
|
[TestCase(suite, 'baz/bar')],
|
|
suite.tests,
|
|
)
|
|
self.assertEquals(set(['PASS', 'FAIL', 'SLOW']), suite.tests[0].outcomes)
|
|
|
|
def test_filter_testcases_by_status_second_pass(self):
|
|
suite = TestSuite('foo', 'bar')
|
|
|
|
test1 = TestCase(suite, 'foo/bar')
|
|
test2 = TestCase(suite, 'baz/bar')
|
|
|
|
# Contrived outcomes from filtering by variant-independent rules.
|
|
test1.outcomes = set(['PREV'])
|
|
test2.outcomes = set(['PREV'])
|
|
|
|
suite.tests = [
|
|
test1.CopyAddingFlags(variant='default', flags=[]),
|
|
test1.CopyAddingFlags(variant='stress', flags=['-v']),
|
|
test2.CopyAddingFlags(variant='default', flags=[]),
|
|
test2.CopyAddingFlags(variant='stress', flags=['-v']),
|
|
]
|
|
|
|
suite.rules = {
|
|
'default': {
|
|
'foo/bar': set(['PASS', 'SKIP']),
|
|
'baz/bar': set(['PASS', 'FAIL']),
|
|
},
|
|
'stress': {
|
|
'baz/bar': set(['SKIP']),
|
|
},
|
|
}
|
|
suite.wildcards = {
|
|
'default': {
|
|
'baz/*': set(['PASS', 'SLOW']),
|
|
},
|
|
'stress': {
|
|
'foo/*': set(['PASS', 'SLOW']),
|
|
},
|
|
}
|
|
suite.FilterTestCasesByStatus(warn_unused_rules=False, variants=True)
|
|
self.assertEquals(
|
|
[
|
|
TestCase(suite, 'foo/bar', flags=['-v']),
|
|
TestCase(suite, 'baz/bar'),
|
|
],
|
|
suite.tests,
|
|
)
|
|
|
|
self.assertEquals(
|
|
set(['PASS', 'SLOW', 'PREV']),
|
|
suite.tests[0].outcomes,
|
|
)
|
|
self.assertEquals(
|
|
set(['PASS', 'FAIL', 'SLOW', 'PREV']),
|
|
suite.tests[1].outcomes,
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|