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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 'TypingTest.testNonPrintableCharactersShouldWorkWithContentEditableOrDesignM
odeSet', | 88 'TypingTest.testNonPrintableCharactersShouldWorkWithContentEditableOrDesignM
odeSet', |
89 'TypingTest.testShiftSelectionDeletes', | 89 'TypingTest.testShiftSelectionDeletes', |
90 'TypingTest.testShouldBeAbleToTypeIntoContentEditableElementWithExistingValu
e', | 90 'TypingTest.testShouldBeAbleToTypeIntoContentEditableElementWithExistingValu
e', |
91 'TypingTest.testShouldNotTypeIntoElementsThatPreventKeyDownEvents', | 91 'TypingTest.testShouldNotTypeIntoElementsThatPreventKeyDownEvents', |
92 'TypingTest.testTypingIntoAnIFrameWithContentEditableOrDesignModeSet', | 92 'TypingTest.testTypingIntoAnIFrameWithContentEditableOrDesignModeSet', |
93 'UnexpectedAlertBehaviorTest.*', | 93 'UnexpectedAlertBehaviorTest.*', |
94 'VisibilityTest.tooSmallAWindowWithOverflowHiddenIsNotAProblem', | 94 'VisibilityTest.tooSmallAWindowWithOverflowHiddenIsNotAProblem', |
95 'WebElementTest.testElementReturnsOriginDriver', | 95 'WebElementTest.testElementReturnsOriginDriver', |
96 'WindowTest.*', | 96 'WindowTest.*', |
97 ] | 97 ] |
| 98 _REVISION_NEGATIVE_FILTER['27'] = [] + _REVISION_NEGATIVE_FILTER['HEAD'] |
98 _REVISION_NEGATIVE_FILTER['26'] = [ | 99 _REVISION_NEGATIVE_FILTER['26'] = [ |
99 'UploadTest.testFileUploading', | 100 'UploadTest.testFileUploading', |
100 'CorrectEventFiringTest.testUploadingFileShouldFireOnChangeEvent', | 101 'CorrectEventFiringTest.testUploadingFileShouldFireOnChangeEvent', |
101 'FormHandlingTest.testShouldBeAbleToAlterTheContentsOfAFileUploadInputElemen
t', | 102 'FormHandlingTest.testShouldBeAbleToAlterTheContentsOfAFileUploadInputElemen
t', |
102 'FormHandlingTest.testShouldBeAbleToUploadTheSameFileTwice', | 103 'FormHandlingTest.testShouldBeAbleToUploadTheSameFileTwice', |
103 'FormHandlingTest.testShouldBeAbleToSendKeysToAFileUploadInputElementInAnXht
mlDocument', | 104 'FormHandlingTest.testShouldBeAbleToSendKeysToAFileUploadInputElementInAnXht
mlDocument', |
104 ] + _REVISION_NEGATIVE_FILTER['HEAD'] | 105 ] + _REVISION_NEGATIVE_FILTER['HEAD'] |
105 | 106 |
106 _OS_NEGATIVE_FILTER = {} | 107 _OS_NEGATIVE_FILTER = {} |
107 _OS_NEGATIVE_FILTER['win'] = [ | 108 _OS_NEGATIVE_FILTER['win'] = [ |
108 # https://code.google.com/p/chromedriver/issues/detail?id=282 | 109 # https://code.google.com/p/chromedriver/issues/detail?id=282 |
109 'PageLoadingTest.testShouldNotHangIfDocumentOpenCallIsNeverFollowedByDocumen
tCloseCall', | 110 'PageLoadingTest.testShouldNotHangIfDocumentOpenCallIsNeverFollowedByDocumen
tCloseCall', |
| 111 # https://code.google.com/p/chromedriver/issues/detail?id=303 |
| 112 'CombinedInputActionsTest.testChordControlCutAndPaste', |
110 ] | 113 ] |
111 _OS_NEGATIVE_FILTER['linux'] = [ | 114 _OS_NEGATIVE_FILTER['linux'] = [ |
112 # https://code.google.com/p/chromedriver/issues/detail?id=284 | 115 # https://code.google.com/p/chromedriver/issues/detail?id=284 |
113 'TypingTest.testArrowKeysAndPageUpAndDown', | 116 'TypingTest.testArrowKeysAndPageUpAndDown', |
114 'TypingTest.testHomeAndEndAndPageUpAndPageDownKeys', | 117 'TypingTest.testHomeAndEndAndPageUpAndPageDownKeys', |
115 'TypingTest.testNumberpadKeys', | 118 'TypingTest.testNumberpadKeys', |
116 ] | 119 ] |
117 _OS_NEGATIVE_FILTER['mac'] = [] | 120 _OS_NEGATIVE_FILTER['mac'] = [] |
118 _OS_NEGATIVE_FILTER['android'] = [ | 121 _OS_NEGATIVE_FILTER['android'] = [ |
119 'BasicMouseInterfaceTest.testDoubleClick', | 122 'BasicMouseInterfaceTest.testDoubleClick', |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 Args: | 219 Args: |
217 operating_system: The operating system, one of 'linux', 'mac', 'win', or | 220 operating_system: The operating system, one of 'linux', 'mac', 'win', or |
218 'android'. | 221 'android'. |
219 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'. |
220 | 223 |
221 Returns: | 224 Returns: |
222 Filter string, in Google Test (C++) format. | 225 Filter string, in Google Test (C++) format. |
223 """ | 226 """ |
224 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + | 227 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + |
225 _REVISION_NEGATIVE_FILTER[chrome_version]) | 228 _REVISION_NEGATIVE_FILTER[chrome_version]) |
OLD | NEW |