OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """Utilities for dealing with the python unittest module.""" | 5 """Utilities for dealing with the python unittest module.""" |
6 | 6 |
7 import fnmatch | 7 import fnmatch |
8 import sys | 8 import sys |
9 import unittest | 9 import unittest |
10 | 10 |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
94 def FilterTestSuite(suite, gtest_filter): | 94 def FilterTestSuite(suite, gtest_filter): |
95 """Returns a new filtered tests suite based on the given gtest filter. | 95 """Returns a new filtered tests suite based on the given gtest filter. |
96 | 96 |
97 See http://code.google.com/p/googletest/wiki/AdvancedGuide | 97 See http://code.google.com/p/googletest/wiki/AdvancedGuide |
98 for gtest_filter specification. | 98 for gtest_filter specification. |
99 """ | 99 """ |
100 return unittest.TestSuite(FilterTests(GetTestsFromSuite(suite), gtest_filter)) | 100 return unittest.TestSuite(FilterTests(GetTestsFromSuite(suite), gtest_filter)) |
101 | 101 |
102 | 102 |
103 def FilterTests(all_tests, gtest_filter): | 103 def FilterTests(all_tests, gtest_filter): |
104 """Returns a filtered list of tests based on the given gtest filter. | 104 """Filter a list of tests based on the given gtest filter. |
105 | 105 |
106 See http://code.google.com/p/googletest/wiki/AdvancedGuide | 106 See http://code.google.com/p/googletest/wiki/AdvancedGuide |
107 for gtest_filter specification. | 107 for gtest_filter specification. |
108 | |
109 Args: | |
110 all_tests: List of tests (unittest.TestSuite) or test names. | |
111 gtest_filter: Filter to apply. | |
112 | |
113 Returns: | |
114 Filtered subset of the given list of tests. | |
108 """ | 115 """ |
109 pattern_groups = gtest_filter.split('-') | 116 pattern_groups = gtest_filter.split('-') |
110 positive_patterns = pattern_groups[0].split(':') | 117 positive_patterns = pattern_groups[0].split(':') |
111 negative_patterns = None | 118 negative_patterns = None |
112 if len(pattern_groups) > 1: | 119 if len(pattern_groups) > 1: |
113 negative_patterns = pattern_groups[1].split(':') | 120 negative_patterns = pattern_groups[1].split(':') |
114 | 121 |
115 tests = [] | 122 tests = [] |
116 for test in all_tests: | 123 for test in all_tests: |
117 test_name = GetTestName(test) | 124 test_name = test if isinstance(test, str) else GetTestName(test) |
Paweł Hajdan Jr.
2013/05/28 17:00:06
Is this autodetection really needed and useful? I'
Sami
2013/05/28 17:17:06
Agreed, this is a little too magical. I've split t
| |
118 # Test name must by matched by one positive pattern. | 125 # Test name must by matched by one positive pattern. |
119 for pattern in positive_patterns: | 126 for pattern in positive_patterns: |
120 if fnmatch.fnmatch(test_name, pattern): | 127 if fnmatch.fnmatch(test_name, pattern): |
121 break | 128 break |
122 else: | 129 else: |
123 continue | 130 continue |
124 # Test name must not be matched by any negative patterns. | 131 # Test name must not be matched by any negative patterns. |
125 for pattern in negative_patterns or []: | 132 for pattern in negative_patterns or []: |
126 if fnmatch.fnmatch(test_name, pattern): | 133 if fnmatch.fnmatch(test_name, pattern): |
127 break | 134 break |
128 else: | 135 else: |
129 tests += [test] | 136 tests += [test] |
130 return tests | 137 return tests |
OLD | NEW |