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

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/infobar/InfoBarTest.java

Issue 1139643006: Rename chrome/android/javatests to javatests_shell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/javatests/src/org/chromium/chrome/browser/infobar/InfoBarTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/infobar/InfoBarTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/infobar/InfoBarTest.java
deleted file mode 100644
index 162222646b6ef2ed7eee7c258ad9d0c6e2ab0dd4..0000000000000000000000000000000000000000
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/infobar/InfoBarTest.java
+++ /dev/null
@@ -1,180 +0,0 @@
-// Copyright 2013 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.chrome.browser.infobar;
-
-import static org.chromium.base.test.util.ScalableTimeout.scaleTimeout;
-
-import android.test.suitebuilder.annotation.MediumTest;
-import android.test.suitebuilder.annotation.Smoke;
-
-import org.chromium.base.ThreadUtils;
-import org.chromium.base.test.util.Feature;
-import org.chromium.base.test.util.UrlUtils;
-import org.chromium.chrome.browser.ContentViewUtil;
-import org.chromium.chrome.browser.location.LocationSettingsTestUtil;
-import org.chromium.chrome.shell.ChromeShellTestBase;
-import org.chromium.chrome.test.util.InfoBarTestAnimationListener;
-import org.chromium.chrome.test.util.InfoBarUtil;
-import org.chromium.chrome.test.util.TestHttpServerClient;
-import org.chromium.content.browser.test.util.Criteria;
-import org.chromium.content.browser.test.util.CriteriaHelper;
-import org.chromium.content_public.browser.WebContents;
-
-import java.util.List;
-
-/** Tests for the InfoBars. */
-public class InfoBarTest extends ChromeShellTestBase {
- private static final long MAX_TIMEOUT = scaleTimeout(2000);
- private static final int CHECK_INTERVAL = 500;
- private static final String GEOLOCATION_PAGE =
- "chrome/test/data/geolocation/geolocation_on_load.html";
- private static final String POPUP_PAGE =
- "chrome/test/data/popup_blocker/popup-window-open.html";
- public static final String HELLO_WORLD_URL = UrlUtils.encodeHtmlDataUri(
- "<html>"
- + "<head><title>Hello, World!</title></head>"
- + "<body>Hello, World!</body>"
- + "</html>");
-
- private InfoBarTestAnimationListener mListener;
-
- @Override
- protected void setUp() throws Exception {
- super.setUp();
-
- // Register for animation notifications
- assertTrue(CriteriaHelper.pollForCriteria(new Criteria() {
- @Override
- public boolean isSatisfied() {
- if (getActivity().getActiveTab() == null) return false;
- if (getActivity().getActiveTab().getInfoBarContainer() == null) return false;
- return true;
- }
- }));
- InfoBarContainer container = getActivity().getActiveTab().getInfoBarContainer();
- mListener = new InfoBarTestAnimationListener();
- container.setAnimationListener(mListener);
- }
-
- /**
- * Verify PopUp InfoBar. Only basic triggering verified due to lack of tabs
- * in ChromeShell
- */
- @Smoke
- @MediumTest
- @Feature({"Browser", "Main"})
- public void testInfoBarForPopUp() throws InterruptedException {
- loadUrlWithSanitization(TestHttpServerClient.getUrl(POPUP_PAGE));
- assertTrue("InfoBar not added", mListener.addInfoBarAnimationFinished());
-
- List<InfoBar> infoBars = getActivity().getActiveTab().getInfoBarContainer().getInfoBars();
- assertEquals("Wrong infobar count", 1, infoBars.size());
- assertTrue(InfoBarUtil.hasPrimaryButton(infoBars.get(0)));
- assertFalse(InfoBarUtil.hasSecondaryButton(infoBars.get(0)));
- InfoBarUtil.clickPrimaryButton(infoBars.get(0));
- assertTrue("InfoBar not removed.", mListener.removeInfoBarAnimationFinished());
- assertEquals("Wrong infobar count", 0, infoBars.size());
-
- // A second load should not show the infobar.
- loadUrlWithSanitization(TestHttpServerClient.getUrl(POPUP_PAGE));
- assertFalse("InfoBar added when it should not", mListener.addInfoBarAnimationFinished());
- }
-
- /**
- * Verify Geolocation creates an InfoBar.
- */
- @Smoke
- @MediumTest
- @Feature({"Browser", "Main"})
- public void testInfoBarForGeolocation() throws InterruptedException {
- LocationSettingsTestUtil.setSystemLocationSettingEnabled(true);
- loadUrlWithSanitization(TestHttpServerClient.getUrl(GEOLOCATION_PAGE));
- assertTrue("InfoBar not added", mListener.addInfoBarAnimationFinished());
-
- // Make sure it has OK/Cancel buttons.
- List<InfoBar> infoBars = getActivity().getActiveTab().getInfoBarContainer().getInfoBars();
- assertEquals("Wrong infobar count", 1, infoBars.size());
- assertTrue(InfoBarUtil.hasPrimaryButton(infoBars.get(0)));
- assertTrue(InfoBarUtil.hasSecondaryButton(infoBars.get(0)));
-
- loadUrlWithSanitization(HELLO_WORLD_URL);
- assertTrue("InfoBar not removed.", mListener.removeInfoBarAnimationFinished());
- infoBars = getActivity().getActiveTab().getInfoBarContainer().getInfoBars();
- assertTrue("Wrong infobar count", infoBars.isEmpty());
- }
-
-
- /**
- * Verify Geolocation creates an InfoBar and that it's destroyed when navigating back.
- */
- @MediumTest
- @Feature({"Browser"})
- public void testInfoBarForGeolocationDisappearsOnBack() throws InterruptedException {
- LocationSettingsTestUtil.setSystemLocationSettingEnabled(true);
- loadUrlWithSanitization(HELLO_WORLD_URL);
- loadUrlWithSanitization(TestHttpServerClient.getUrl(GEOLOCATION_PAGE));
- assertTrue("InfoBar not added.", mListener.addInfoBarAnimationFinished());
-
- List<InfoBar> infoBars = getActivity().getActiveTab().getInfoBarContainer().getInfoBars();
- assertEquals("Wrong infobar count", 1, infoBars.size());
-
- // Navigate back and ensure the InfoBar has been removed.
- getInstrumentation().runOnMainSync(
- new Runnable() {
- @Override
- public void run() {
- getActivity().getActiveTab().goBack();
- }
- });
- CriteriaHelper.pollForCriteria(
- new Criteria() {
- @Override
- public boolean isSatisfied() {
- List<InfoBar> infoBars =
- getActivity().getActiveTab().getInfoBarContainer().getInfoBars();
- return infoBars.isEmpty();
- }
- },
- MAX_TIMEOUT, CHECK_INTERVAL);
- assertTrue("InfoBar not removed.", mListener.removeInfoBarAnimationFinished());
- }
-
- /**
- * Verify InfoBarContainers swap the WebContents they are monitoring properly.
- */
- @MediumTest
- @Feature({"Browser", "Main"})
- public void testInfoBarContainerSwapsWebContents() throws InterruptedException {
- // Add an infobar.
- LocationSettingsTestUtil.setSystemLocationSettingEnabled(true);
- loadUrlWithSanitization(TestHttpServerClient.getUrl(GEOLOCATION_PAGE));
- assertTrue("InfoBar not added", mListener.addInfoBarAnimationFinished());
- List<InfoBar> infoBars = getActivity().getActiveTab().getInfoBarContainer().getInfoBars();
- assertEquals("Wrong infobar count", 1, infoBars.size());
-
- // Swap out the WebContents and send the user somewhere so that the InfoBar gets removed.
- InfoBarTestAnimationListener removeListener = new InfoBarTestAnimationListener();
- getActivity().getActiveTab().getInfoBarContainer().setAnimationListener(removeListener);
- ThreadUtils.runOnUiThread(new Runnable() {
- @Override
- public void run() {
- WebContents newContents = ContentViewUtil.createWebContents(false, false);
- getActivity().getActiveTab().swapWebContents(newContents, false, false);
- }
- });
- loadUrlWithSanitization(HELLO_WORLD_URL);
- assertTrue("InfoBar not removed.", removeListener.removeInfoBarAnimationFinished());
- infoBars = getActivity().getActiveTab().getInfoBarContainer().getInfoBars();
- assertEquals("Wrong infobar count", 0, infoBars.size());
-
- // Revisiting the original page should make the InfoBar reappear.
- InfoBarTestAnimationListener addListener = new InfoBarTestAnimationListener();
- getActivity().getActiveTab().getInfoBarContainer().setAnimationListener(addListener);
- loadUrlWithSanitization(TestHttpServerClient.getUrl(GEOLOCATION_PAGE));
- assertTrue("InfoBar not added", addListener.addInfoBarAnimationFinished());
- infoBars = getActivity().getActiveTab().getInfoBarContainer().getInfoBars();
- assertEquals("Wrong infobar count", 1, infoBars.size());
- }
-}

Powered by Google App Engine
This is Rietveld 408576698