OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 """Test expectation list for WebDriver Java acceptance tests. | 5 """Test expectation list for WebDriver Java acceptance tests. |
6 | 6 |
7 It is evaluated through Python. | 7 It is evaluated through Python. |
8 """ | 8 """ |
9 | 9 |
10 _REVISION_NEGATIVE_FILTER = {} | 10 _REVISION_NEGATIVE_FILTER = {} |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 'CorrectEventFiringTest.testUploadingFileShouldFireOnChangeEvent', | 101 'CorrectEventFiringTest.testUploadingFileShouldFireOnChangeEvent', |
102 'FormHandlingTest.testShouldBeAbleToAlterTheContentsOfAFileUploadInputElemen
t', | 102 'FormHandlingTest.testShouldBeAbleToAlterTheContentsOfAFileUploadInputElemen
t', |
103 'FormHandlingTest.testShouldBeAbleToUploadTheSameFileTwice', | 103 'FormHandlingTest.testShouldBeAbleToUploadTheSameFileTwice', |
104 'FormHandlingTest.testShouldBeAbleToSendKeysToAFileUploadInputElementInAnXht
mlDocument', | 104 'FormHandlingTest.testShouldBeAbleToSendKeysToAFileUploadInputElementInAnXht
mlDocument', |
105 ] + _REVISION_NEGATIVE_FILTER['HEAD'] | 105 ] + _REVISION_NEGATIVE_FILTER['HEAD'] |
106 | 106 |
107 _OS_NEGATIVE_FILTER = {} | 107 _OS_NEGATIVE_FILTER = {} |
108 _OS_NEGATIVE_FILTER['win'] = [ | 108 _OS_NEGATIVE_FILTER['win'] = [ |
109 # https://code.google.com/p/chromedriver/issues/detail?id=303 | 109 # https://code.google.com/p/chromedriver/issues/detail?id=303 |
110 'CombinedInputActionsTest.testChordControlCutAndPaste', | 110 'CombinedInputActionsTest.testChordControlCutAndPaste', |
| 111 # Flaky: https://code.google.com/p/chromedriver/issues/detail?id=282 |
| 112 'PageLoadingTest.testShouldNotHangIfDocumentOpenCallIsNeverFollowedByDocumen
tCloseCall', |
111 ] | 113 ] |
112 _OS_NEGATIVE_FILTER['linux'] = [ | 114 _OS_NEGATIVE_FILTER['linux'] = [ |
113 # https://code.google.com/p/chromedriver/issues/detail?id=284 | 115 # https://code.google.com/p/chromedriver/issues/detail?id=284 |
114 'TypingTest.testArrowKeysAndPageUpAndDown', | 116 'TypingTest.testArrowKeysAndPageUpAndDown', |
115 'TypingTest.testHomeAndEndAndPageUpAndPageDownKeys', | 117 'TypingTest.testHomeAndEndAndPageUpAndPageDownKeys', |
116 'TypingTest.testNumberpadKeys', | 118 'TypingTest.testNumberpadKeys', |
117 ] | 119 ] |
118 _OS_NEGATIVE_FILTER['mac'] = [] | 120 _OS_NEGATIVE_FILTER['mac'] = [] |
119 _OS_NEGATIVE_FILTER['android'] = [ | 121 _OS_NEGATIVE_FILTER['android'] = [ |
120 'BasicMouseInterfaceTest.testDoubleClick', | 122 'BasicMouseInterfaceTest.testDoubleClick', |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 Args: | 219 Args: |
218 operating_system: The operating system, one of 'linux', 'mac', 'win', or | 220 operating_system: The operating system, one of 'linux', 'mac', 'win', or |
219 'android'. | 221 'android'. |
220 chrome_version: Chrome version to test against, e.g., 'HEAD' or '26'. | 222 chrome_version: Chrome version to test against, e.g., 'HEAD' or '26'. |
221 | 223 |
222 Returns: | 224 Returns: |
223 Filter string, in Google Test (C++) format. | 225 Filter string, in Google Test (C++) format. |
224 """ | 226 """ |
225 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + | 227 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + |
226 _REVISION_NEGATIVE_FILTER[chrome_version]) | 228 _REVISION_NEGATIVE_FILTER[chrome_version]) |
OLD | NEW |