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 = {} |
11 _REVISION_NEGATIVE_FILTER['HEAD'] = [ | 11 _REVISION_NEGATIVE_FILTER['HEAD'] = [ |
12 'AlertsTest.*', | 12 'AlertsTest.*', |
| 13 'PerformanceLoggingTest.*', |
| 14 'ChromeOptionsFunctionalTest.canStartChromeWithCustomOptions', |
13 'AuthenticatedPageLoadingTest.*', | 15 'AuthenticatedPageLoadingTest.*', |
14 'AvailableLogsTest.browserLogShouldBeEnabledByDefault', | 16 'AvailableLogsTest.browserLogShouldBeEnabledByDefault', |
15 'AvailableLogsTest.clientLogShouldBeEnabledByDefault', | 17 'AvailableLogsTest.clientLogShouldBeEnabledByDefault', |
16 'AvailableLogsTest.driverLogShouldBeEnabledByDefault', | 18 'AvailableLogsTest.driverLogShouldBeEnabledByDefault', |
17 'AvailableLogsTest.profilerLogShouldBeDisabledByDefault', | 19 'AvailableLogsTest.profilerLogShouldBeDisabledByDefault', |
18 'AvailableLogsTest.shouldBeAbleToEnableProfilerLog', | 20 'AvailableLogsTest.shouldBeAbleToEnableProfilerLog', |
19 'BasicMouseInterfaceTest.testContextClick', | 21 'BasicMouseInterfaceTest.testContextClick', |
20 'BasicMouseInterfaceTest.testMousePositionIsNotPreservedInActionsChain', | 22 'BasicMouseInterfaceTest.testMousePositionIsNotPreservedInActionsChain', |
21 'BasicMouseInterfaceTest.testMovingIntoAnImageEnclosedInALink', | 23 'BasicMouseInterfaceTest.testMovingIntoAnImageEnclosedInALink', |
22 'BasicMouseInterfaceTest.testMovingMouseBackAndForthPastViewPort', | 24 'BasicMouseInterfaceTest.testMovingMouseBackAndForthPastViewPort', |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 'TypingTest.testShouldBeAbleToTypeIntoContentEditableElementWithExistingValu
e', | 90 'TypingTest.testShouldBeAbleToTypeIntoContentEditableElementWithExistingValu
e', |
89 'TypingTest.testShouldNotTypeIntoElementsThatPreventKeyDownEvents', | 91 'TypingTest.testShouldNotTypeIntoElementsThatPreventKeyDownEvents', |
90 'TypingTest.testTypingIntoAnIFrameWithContentEditableOrDesignModeSet', | 92 'TypingTest.testTypingIntoAnIFrameWithContentEditableOrDesignModeSet', |
91 'UnexpectedAlertBehaviorTest.*', | 93 'UnexpectedAlertBehaviorTest.*', |
92 'VisibilityTest.tooSmallAWindowWithOverflowHiddenIsNotAProblem', | 94 'VisibilityTest.tooSmallAWindowWithOverflowHiddenIsNotAProblem', |
93 'WebElementTest.testElementReturnsOriginDriver', | 95 'WebElementTest.testElementReturnsOriginDriver', |
94 'WindowTest.*', | 96 'WindowTest.*', |
95 ] | 97 ] |
96 _REVISION_NEGATIVE_FILTER['26'] = [ | 98 _REVISION_NEGATIVE_FILTER['26'] = [ |
97 'UploadTest.testFileUploading', | 99 'UploadTest.testFileUploading', |
| 100 'CorrectEventFiringTest.testUploadingFileShouldFireOnChangeEvent', |
| 101 'FormHandlingTest.testShouldBeAbleToAlterTheContentsOfAFileUploadInputElemen
t', |
| 102 'FormHandlingTest.testShouldBeAbleToUploadTheSameFileTwice', |
| 103 'FormHandlingTest.testShouldBeAbleToSendKeysToAFileUploadInputElementInAnXht
mlDocument', |
98 ] + _REVISION_NEGATIVE_FILTER['HEAD'] | 104 ] + _REVISION_NEGATIVE_FILTER['HEAD'] |
99 | 105 |
100 _OS_NEGATIVE_FILTER = {} | 106 _OS_NEGATIVE_FILTER = {} |
101 _OS_NEGATIVE_FILTER['win'] = [ | 107 _OS_NEGATIVE_FILTER['win'] = [ |
102 # https://code.google.com/p/chromedriver/issues/detail?id=282 | 108 # https://code.google.com/p/chromedriver/issues/detail?id=282 |
103 'PageLoadingTest.testShouldNotHangIfDocumentOpenCallIsNeverFollowedByDocumen
tCloseCall', | 109 'PageLoadingTest.testShouldNotHangIfDocumentOpenCallIsNeverFollowedByDocumen
tCloseCall', |
104 ] | 110 ] |
105 _OS_NEGATIVE_FILTER['linux'] = [ | 111 _OS_NEGATIVE_FILTER['linux'] = [ |
106 # https://code.google.com/p/chromedriver/issues/detail?id=284 | 112 # https://code.google.com/p/chromedriver/issues/detail?id=284 |
107 'TypingTest.testArrowKeysAndPageUpAndDown', | 113 'TypingTest.testArrowKeysAndPageUpAndDown', |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 Args: | 216 Args: |
211 operating_system: The operating system, one of 'linux', 'mac', 'win', or | 217 operating_system: The operating system, one of 'linux', 'mac', 'win', or |
212 'android'. | 218 'android'. |
213 chrome_version: Chrome version to test against, e.g., 'HEAD' or '26'. | 219 chrome_version: Chrome version to test against, e.g., 'HEAD' or '26'. |
214 | 220 |
215 Returns: | 221 Returns: |
216 Filter string, in Google Test (C++) format. | 222 Filter string, in Google Test (C++) format. |
217 """ | 223 """ |
218 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + | 224 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + |
219 _REVISION_NEGATIVE_FILTER[chrome_version]) | 225 _REVISION_NEGATIVE_FILTER[chrome_version]) |
OLD | NEW |