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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 'RenderedWebElementTest.testShouldPickUpStyleOfAnElement', | 73 'RenderedWebElementTest.testShouldPickUpStyleOfAnElement', |
74 'SessionHandlingTest.callingAnyOperationAfterClosingTheLastWindowShouldThrow
AnException', | 74 'SessionHandlingTest.callingAnyOperationAfterClosingTheLastWindowShouldThrow
AnException', |
75 'SessionHandlingTest.callingQuitAfterClosingTheLastWindowIsANoOp', | 75 'SessionHandlingTest.callingQuitAfterClosingTheLastWindowIsANoOp', |
76 # Broken because AddWebStorage.java is broken. | 76 # Broken because AddWebStorage.java is broken. |
77 'SessionStorageTest.*', | 77 'SessionStorageTest.*', |
78 'SqlDatabaseTest.*', | 78 'SqlDatabaseTest.*', |
79 'TextHandlingTest.testShouldNotReturnLtrMarks', | 79 'TextHandlingTest.testShouldNotReturnLtrMarks', |
80 'TextHandlingTest.testShouldReturnEmptyStringWhenTagIsSelfClosing', | 80 'TextHandlingTest.testShouldReturnEmptyStringWhenTagIsSelfClosing', |
81 'TextPagesTest.testShouldBeAbleToLoadASimplePageOfText', | 81 'TextPagesTest.testShouldBeAbleToLoadASimplePageOfText', |
82 'TextPagesTest.testShouldThrowExceptionWhenAddingCookieToAPageThatIsNotHtml'
, | 82 'TextPagesTest.testShouldThrowExceptionWhenAddingCookieToAPageThatIsNotHtml'
, |
83 'TypingTest.testChordControlCutAndPaste', | |
84 'TypingTest.testChordControlHomeShiftEndDelete', | |
85 'TypingTest.testChordReveseShiftHomeSelectionDeletes', | |
86 'TypingTest.testDeleteAndBackspaceKeys', | |
87 'TypingTest.testNonPrintableCharactersShouldWorkWithContentEditableOrDesignM
odeSet', | 83 'TypingTest.testNonPrintableCharactersShouldWorkWithContentEditableOrDesignM
odeSet', |
88 'TypingTest.testShiftSelectionDeletes', | |
89 'TypingTest.testShouldBeAbleToTypeIntoContentEditableElementWithExistingValu
e', | 84 'TypingTest.testShouldBeAbleToTypeIntoContentEditableElementWithExistingValu
e', |
90 'TypingTest.testShouldNotTypeIntoElementsThatPreventKeyDownEvents', | 85 'TypingTest.testShouldNotTypeIntoElementsThatPreventKeyDownEvents', |
91 'TypingTest.testTypingIntoAnIFrameWithContentEditableOrDesignModeSet', | 86 'TypingTest.testTypingIntoAnIFrameWithContentEditableOrDesignModeSet', |
92 'UnexpectedAlertBehaviorTest.*', | 87 'UnexpectedAlertBehaviorTest.*', |
93 'VisibilityTest.tooSmallAWindowWithOverflowHiddenIsNotAProblem', | 88 'VisibilityTest.tooSmallAWindowWithOverflowHiddenIsNotAProblem', |
94 'WebElementTest.testElementReturnsOriginDriver', | 89 'WebElementTest.testElementReturnsOriginDriver', |
95 'WindowTest.*', | 90 'WindowTest.*', |
96 ] | 91 ] |
97 _REVISION_NEGATIVE_FILTER['27'] = [] + _REVISION_NEGATIVE_FILTER['HEAD'] | 92 _REVISION_NEGATIVE_FILTER['27'] = [] + _REVISION_NEGATIVE_FILTER['HEAD'] |
98 _REVISION_NEGATIVE_FILTER['26'] = [ | 93 _REVISION_NEGATIVE_FILTER['26'] = [ |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 Args: | 165 Args: |
171 operating_system: The operating system, one of 'linux', 'mac', 'win', or | 166 operating_system: The operating system, one of 'linux', 'mac', 'win', or |
172 'android'. | 167 'android'. |
173 chrome_version: Chrome version to test against, e.g., 'HEAD' or '26'. | 168 chrome_version: Chrome version to test against, e.g., 'HEAD' or '26'. |
174 | 169 |
175 Returns: | 170 Returns: |
176 Filter string, in Google Test (C++) format. | 171 Filter string, in Google Test (C++) format. |
177 """ | 172 """ |
178 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + | 173 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + |
179 _REVISION_NEGATIVE_FILTER[chrome_version]) | 174 _REVISION_NEGATIVE_FILTER[chrome_version]) |
OLD | NEW |