Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: chrome/test/chromedriver/test_expectations

Issue 13827002: [chromedriver] Run tests against 27. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable a failed test on Win7. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/test/chromedriver/run_py_tests.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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])
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/run_py_tests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698