| Index: chrome/android/javatests/src/org/chromium/chrome/browser/webapps/WebappNavigationTest.java
|
| diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/webapps/WebappNavigationTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/webapps/WebappNavigationTest.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..25c476d3e882f4f5b40a3162092de4336ed36f44
|
| --- /dev/null
|
| +++ b/chrome/android/javatests/src/org/chromium/chrome/browser/webapps/WebappNavigationTest.java
|
| @@ -0,0 +1,166 @@
|
| +// Copyright 2017 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.webapps;
|
| +
|
| +import android.content.Intent;
|
| +import android.graphics.Color;
|
| +import android.support.test.InstrumentationRegistry;
|
| +import android.support.test.filters.SmallTest;
|
| +
|
| +import org.junit.After;
|
| +import org.junit.Assert;
|
| +import org.junit.Before;
|
| +import org.junit.Rule;
|
| +import org.junit.Test;
|
| +import org.junit.runner.RunWith;
|
| +
|
| +import org.chromium.base.ApiCompatibilityUtils;
|
| +import org.chromium.base.ThreadUtils;
|
| +import org.chromium.base.test.util.CommandLineFlags;
|
| +import org.chromium.base.test.util.Feature;
|
| +import org.chromium.chrome.R;
|
| +import org.chromium.chrome.browser.ChromeSwitches;
|
| +import org.chromium.chrome.browser.ChromeTabbedActivity;
|
| +import org.chromium.chrome.browser.ShortcutHelper;
|
| +import org.chromium.chrome.browser.customtabs.CustomTabActivity;
|
| +import org.chromium.chrome.browser.firstrun.FirstRunStatus;
|
| +import org.chromium.chrome.test.ChromeJUnit4ClassRunner;
|
| +import org.chromium.chrome.test.util.browser.contextmenu.ContextMenuUtils;
|
| +import org.chromium.content_public.browser.LoadUrlParams;
|
| +import org.chromium.net.test.EmbeddedTestServer;
|
| +import org.chromium.ui.base.PageTransition;
|
| +
|
| +/**
|
| + * Tests web navigations originating from a WebappActivity.
|
| + */
|
| +@RunWith(ChromeJUnit4ClassRunner.class)
|
| +@CommandLineFlags.Add({ChromeSwitches.DISABLE_FIRST_RUN_EXPERIENCE})
|
| +public class WebappNavigationTest {
|
| + private static final String OFF_ORIGIN_URL = "https://www.google.com/";
|
| + private static final String WEB_APP_PATH = "/chrome/test/data/banners/manifest_test_page.html";
|
| + private static final String OTHER_PAGE_PATH =
|
| + "/chrome/test/data/banners/manifest_no_service_worker.html";
|
| +
|
| + @Rule
|
| + public final WebappActivityTestRule mActivityTestRule = new WebappActivityTestRule();
|
| +
|
| + @Rule
|
| + public final TopActivityListener activityListener = new TopActivityListener();
|
| +
|
| + private EmbeddedTestServer mTestServer;
|
| +
|
| + @Before
|
| + public void setUp() throws Exception {
|
| + mTestServer = EmbeddedTestServer.createAndStartServer(InstrumentationRegistry.getContext());
|
| + }
|
| +
|
| + @After
|
| + public void tearDown() throws Exception {
|
| + mTestServer.stopAndDestroyServer();
|
| + }
|
| +
|
| + @Test
|
| + @SmallTest
|
| + @Feature({"Webapps"})
|
| + public void testOffOriginNavigationUsingLinkAndNoWebappThemeColor() throws Exception {
|
| + runWebappActivityAndWaitForIdle(mActivityTestRule.createIntent());
|
| +
|
| + // Not using #loadUrl, as it expects the URL to load in the activity under test,
|
| + // which is not happening here.
|
| + ThreadUtils.runOnUiThreadBlocking(new Runnable() {
|
| + @Override
|
| + public void run() {
|
| + mActivityTestRule.getActivity().getActivityTab().loadUrl(
|
| + new LoadUrlParams(OFF_ORIGIN_URL, PageTransition.LINK));
|
| + }
|
| + });
|
| +
|
| + CustomTabActivity customTab = assertCustomTabActivityLaunchedForOffOriginUrl();
|
| +
|
| + Assert.assertEquals(
|
| + "CCT Toolbar should use default primary color if theme color is not specified",
|
| + ApiCompatibilityUtils.getColor(
|
| + customTab.getResources(), R.color.default_primary_color),
|
| + customTab.getToolbarManager().getPrimaryColor());
|
| + }
|
| +
|
| + @Test
|
| + @SmallTest
|
| + @Feature({"Webapps"})
|
| + public void testOffOriginNavigationUsingJavaScriptAndWebappThemeColor() throws Exception {
|
| + runWebappActivityAndWaitForIdle(mActivityTestRule.createIntent().putExtra(
|
| + ShortcutHelper.EXTRA_THEME_COLOR, (long) Color.CYAN));
|
| +
|
| + mActivityTestRule.runJavaScriptCodeInCurrentTab(
|
| + String.format("window.top.location = '%s'", OFF_ORIGIN_URL));
|
| +
|
| + CustomTabActivity customTab = assertCustomTabActivityLaunchedForOffOriginUrl();
|
| +
|
| + Assert.assertEquals("CCT Toolbar should use the theme color of a webapp", Color.CYAN,
|
| + customTab.getToolbarManager().getPrimaryColor());
|
| + }
|
| +
|
| + private CustomTabActivity assertCustomTabActivityLaunchedForOffOriginUrl() {
|
| + CustomTabActivity customTab = activityListener.waitFor(CustomTabActivity.class);
|
| +
|
| + mActivityTestRule.waitUntilIdle(customTab);
|
| + // Dropping the TLD as Google can redirect to a local site, so this could fail outside US.
|
| + Assert.assertTrue(customTab.getActivityTab().getUrl().startsWith("https://www.google."));
|
| +
|
| + return customTab;
|
| + }
|
| +
|
| + @Test
|
| + @SmallTest
|
| + @Feature({"Webapps"})
|
| + public void testInOriginNavigationStaysInWebapp() throws Exception {
|
| + runWebappActivityAndWaitForIdle(mActivityTestRule.createIntent());
|
| +
|
| + String otherPageUrl = mTestServer.getURL(OTHER_PAGE_PATH);
|
| + mActivityTestRule.loadUrlInTab(otherPageUrl, PageTransition.LINK,
|
| + mActivityTestRule.getActivity().getActivityTab());
|
| +
|
| + mActivityTestRule.waitUntilIdle();
|
| + Assert.assertEquals(
|
| + otherPageUrl, mActivityTestRule.getActivity().getActivityTab().getUrl());
|
| +
|
| + Assert.assertSame(
|
| + mActivityTestRule.getActivity(), activityListener.getMostRecentActivity());
|
| + }
|
| +
|
| + @Test
|
| + @SmallTest
|
| + @Feature({"Webapps"})
|
| + public void testOpenInChromeFromContextMenuTabbedChrome() throws Exception {
|
| + // Needed to get full context menu.
|
| + FirstRunStatus.setFirstRunFlowComplete(true);
|
| + runWebappActivityAndWaitForIdle(mActivityTestRule.createIntent());
|
| +
|
| + mActivityTestRule.runJavaScriptCodeInCurrentTab("var aTag = document.createElement('a');"
|
| + + "aTag.id = 'myTestAnchorId';"
|
| + + "aTag.setAttribute('href','https://www.google.com/');"
|
| + + "aTag.innerHTML = 'Click Me!';"
|
| + + "document.body.appendChild(aTag);");
|
| +
|
| + ContextMenuUtils.selectContextMenuItem(InstrumentationRegistry.getInstrumentation(),
|
| + null /* activity to check for focus after click */,
|
| + mActivityTestRule.getActivity().getActivityTab(), "myTestAnchorId",
|
| + R.id.menu_id_open_in_chrome);
|
| +
|
| + ChromeTabbedActivity tabbedChrome = activityListener.waitFor(ChromeTabbedActivity.class);
|
| +
|
| + mActivityTestRule.waitUntilIdle(tabbedChrome);
|
| + // Dropping the TLD as Google can redirect to a local site, so this could fail outside US.
|
| + Assert.assertTrue(tabbedChrome.getActivityTab().getUrl().startsWith("https://www.google."));
|
| + }
|
| +
|
| + private void runWebappActivityAndWaitForIdle(Intent intent) throws Exception {
|
| + mActivityTestRule.startWebappActivity(
|
| + intent.putExtra(ShortcutHelper.EXTRA_URL, mTestServer.getURL(WEB_APP_PATH)));
|
| +
|
| + mActivityTestRule.waitUntilSplashscreenHides();
|
| + mActivityTestRule.waitUntilIdle();
|
| + }
|
| +}
|
|
|