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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 'FormHandlingTest.handleFormWithJavascriptAction', | 48 'FormHandlingTest.handleFormWithJavascriptAction', |
49 'FormHandlingTest.testShouldNotBeAbleToSubmitAFormThatDoesNotExist', | 49 'FormHandlingTest.testShouldNotBeAbleToSubmitAFormThatDoesNotExist', |
50 'FrameSwitchingTest.testFrameSearchesShouldBeRelativeToTheCurrentlySelectedF
rame', | 50 'FrameSwitchingTest.testFrameSearchesShouldBeRelativeToTheCurrentlySelectedF
rame', |
51 'FrameSwitchingTest.testShouldNotBeAbleToDoAnythingTheFrameIsDeletedFromUnde
rUs', | 51 'FrameSwitchingTest.testShouldNotBeAbleToDoAnythingTheFrameIsDeletedFromUnde
rUs', |
52 'FrameSwitchingTest.testShouldReturnWindowTitleInAFrameset', | 52 'FrameSwitchingTest.testShouldReturnWindowTitleInAFrameset', |
53 'FrameSwitchingTest.testShouldThrowFrameNotFoundExceptionLookingUpSubFramesW
ithSuperFrameNames', | 53 'FrameSwitchingTest.testShouldThrowFrameNotFoundExceptionLookingUpSubFramesW
ithSuperFrameNames', |
54 'GetLogsTest.differentLogsShouldNotContainTheSameLogEntries', | 54 'GetLogsTest.differentLogsShouldNotContainTheSameLogEntries', |
55 'GetLogsTest.logBufferShouldBeResetAfterEachGetLogCall', | 55 'GetLogsTest.logBufferShouldBeResetAfterEachGetLogCall', |
56 'GetLogsTest.turningOffLogShouldMeanNoLogMessages', | 56 'GetLogsTest.turningOffLogShouldMeanNoLogMessages', |
57 'I18nTest.testShouldBeAbleToActivateIMEEngine', | 57 'I18nTest.testShouldBeAbleToActivateIMEEngine', |
58 'ImplicitWaitTest.testShouldImplicitlyWaitForAnElementToBeVisibleBeforeInter
acting', | |
59 # Broken because AddWebStorage.java is broken. | 58 # Broken because AddWebStorage.java is broken. |
60 'LocalStorageTest.*', | 59 'LocalStorageTest.*', |
61 'LocationContextTest.*', | 60 'LocationContextTest.*', |
62 'MiscTest.testShouldBeAbleToGetTheSourceOfAnXmlDocument', | 61 'MiscTest.testShouldBeAbleToGetTheSourceOfAnXmlDocument', |
63 'OpacityTest.testShouldBeAbleToClickOnElementsWithOpacityZero', | 62 'OpacityTest.testShouldBeAbleToClickOnElementsWithOpacityZero', |
64 'PageLoadingTest.shouldBeAbleToDisableAcceptOfInsecureSslCertsWithRequiredCa
pability', | 63 'PageLoadingTest.shouldBeAbleToDisableAcceptOfInsecureSslCertsWithRequiredCa
pability', |
65 'PageLoadingTest.testShouldBeAbleToAccessPagesWithAnInsecureSslCertificate', | 64 'PageLoadingTest.testShouldBeAbleToAccessPagesWithAnInsecureSslCertificate', |
66 'PageLoadingTest.testShouldNotWaitIndefinitelyIfAnExternalResourceFailsToLoa
d', | 65 'PageLoadingTest.testShouldNotWaitIndefinitelyIfAnExternalResourceFailsToLoa
d', |
67 'PageLoadingTest.testShouldTimeoutIfAPageTakesTooLongToLoad', | 66 'PageLoadingTest.testShouldTimeoutIfAPageTakesTooLongToLoad', |
68 'PerformanceLoggingTest.testDisabledProfilingDoesNotLog', | 67 'PerformanceLoggingTest.testDisabledProfilingDoesNotLog', |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 Args: | 218 Args: |
220 operating_system: The operating system, one of 'linux', 'mac', 'win', or | 219 operating_system: The operating system, one of 'linux', 'mac', 'win', or |
221 'android'. | 220 'android'. |
222 chrome_version: Chrome version to test against, e.g., 'HEAD' or '26'. | 221 chrome_version: Chrome version to test against, e.g., 'HEAD' or '26'. |
223 | 222 |
224 Returns: | 223 Returns: |
225 Filter string, in Google Test (C++) format. | 224 Filter string, in Google Test (C++) format. |
226 """ | 225 """ |
227 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + | 226 return '*-' + ':'.join(_OS_NEGATIVE_FILTER[operating_system] + |
228 _REVISION_NEGATIVE_FILTER[chrome_version]) | 227 _REVISION_NEGATIVE_FILTER[chrome_version]) |
OLD | NEW |