Index: content/public/android/javatests/src/org/chromium/content/browser/SelectPopupTest.java |
diff --git a/content/public/android/javatests/src/org/chromium/content/browser/SelectPopupTest.java b/content/public/android/javatests/src/org/chromium/content/browser/SelectPopupTest.java |
deleted file mode 100644 |
index 81e03c1b05550b9b9d5412dcd9f8c5c36cea192e..0000000000000000000000000000000000000000 |
--- a/content/public/android/javatests/src/org/chromium/content/browser/SelectPopupTest.java |
+++ /dev/null |
@@ -1,103 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-package org.chromium.content.browser; |
- |
-import android.test.suitebuilder.annotation.LargeTest; |
- |
-import org.chromium.base.test.util.DisabledTest; |
-import org.chromium.base.test.util.Feature; |
-import org.chromium.base.test.util.UrlUtils; |
-import org.chromium.content.browser.test.util.Criteria; |
-import org.chromium.content.browser.test.util.CriteriaHelper; |
-import org.chromium.content.browser.test.util.DOMUtils; |
-import org.chromium.content.browser.test.util.TestCallbackHelperContainer; |
-import org.chromium.content.browser.test.util.TestCallbackHelperContainer.OnPageFinishedHelper; |
-import org.chromium.content_shell_apk.ContentShellTestBase; |
- |
-import java.util.concurrent.TimeUnit; |
- |
-public class SelectPopupTest extends ContentShellTestBase { |
- private static final int WAIT_TIMEOUT_SECONDS = 2; |
- private static final String SELECT_URL = UrlUtils.encodeHtmlDataUri( |
- "<html><body>" + |
- "Which animal is the strongest:<br/>" + |
- "<select id=\"select\">" + |
- "<option>Black bear</option>" + |
- "<option>Polar bear</option>" + |
- "<option>Grizzly</option>" + |
- "<option>Tiger</option>" + |
- "<option>Lion</option>" + |
- "<option>Gorilla</option>" + |
- "<option>Chipmunk</option>" + |
- "</select>" + |
- "</body></html>"); |
- |
- private static class PopupShowingCriteria implements Criteria { |
- @Override |
- public boolean isSatisfied() { |
- return SelectPopupDialog.getCurrent() != null; |
- } |
- } |
- |
- private static class PopupHiddenCriteria implements Criteria { |
- @Override |
- public boolean isSatisfied() { |
- return SelectPopupDialog.getCurrent() == null; |
- } |
- } |
- |
- public SelectPopupTest() { |
- } |
- |
- /** |
- * Tests that showing a select popup and having the page reload while the popup is showing does |
- * not assert. |
- * @LargeTest |
- * @Feature({"Browser"}) |
- * BUG 172967 |
- */ |
- @DisabledTest |
- public void testReloadWhilePopupShowing() throws InterruptedException, Exception, Throwable { |
- // Load the test page. |
- launchContentShellWithUrl(SELECT_URL); |
- assertTrue("Page failed to load", waitForActiveShellToBeDoneLoading()); |
- |
- // The popup should be hidden before the click. |
- assertTrue("The select popup is shown after load.", |
- CriteriaHelper.pollForCriteria(new PopupHiddenCriteria())); |
- |
- final ContentView view = getActivity().getActiveContentView(); |
- final TestCallbackHelperContainer viewClient = |
- new TestCallbackHelperContainer(view); |
- final OnPageFinishedHelper onPageFinishedHelper = |
- viewClient.getOnPageFinishedHelper(); |
- |
- // Once clicked, the popup should show up. |
- DOMUtils.clickNode(this, view, viewClient, "select"); |
- assertTrue("The select popup did not show up on click.", |
- CriteriaHelper.pollForCriteria(new PopupShowingCriteria())); |
- |
- // Reload the test page. |
- int currentCallCount = onPageFinishedHelper.getCallCount(); |
- getInstrumentation().runOnMainSync(new Runnable() { |
- @Override |
- public void run() { |
- // Now reload the page while the popup is showing, it gets hidden. |
- getActivity().getActiveShell().loadUrl(SELECT_URL); |
- } |
- }); |
- onPageFinishedHelper.waitForCallback(currentCallCount, 1, |
- WAIT_TIMEOUT_SECONDS, TimeUnit.SECONDS); |
- |
- // The popup should be hidden after the page reload. |
- assertTrue("The select popup did not hide after reload.", |
- CriteriaHelper.pollForCriteria(new PopupHiddenCriteria())); |
- |
- // Click the select and wait for the popup to show. |
- DOMUtils.clickNode(this, view, viewClient, "select"); |
- assertTrue("The select popup did not show on click after reload.", |
- CriteriaHelper.pollForCriteria(new PopupShowingCriteria())); |
- } |
-} |