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

Unified Diff: chrome/browser/ui/search/instant_extended_manual_browsertest.cc

Issue 14235006: Rename Instant browser tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@storage_unit_test
Patch Set: Rebase to upstream to avoid AUTHORS conflict 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/search/instant_extended_manual_browsertest.cc
diff --git a/chrome/browser/ui/search/instant_extended_manual_browsertest.cc b/chrome/browser/ui/search/instant_extended_manual_browsertest.cc
deleted file mode 100644
index 4b4f2185b2204cbe9cf1393e61cef3832d49189a..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/search/instant_extended_manual_browsertest.cc
+++ /dev/null
@@ -1,429 +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.
-
-#include "base/string_util.h"
-#include "chrome/browser/search/search.h"
-#include "chrome/browser/task_manager/task_manager.h"
-#include "chrome/browser/task_manager/task_manager_browsertest_util.h"
-#include "chrome/browser/ui/browser.h"
-#include "chrome/browser/ui/browser_commands.h"
-#include "chrome/browser/ui/host_desktop.h"
-#include "chrome/browser/ui/omnibox/omnibox_view.h"
-#include "chrome/browser/ui/search/instant_overlay.h"
-#include "chrome/browser/ui/search/instant_test_utils.h"
-#include "chrome/browser/ui/tabs/tab_strip_model.h"
-#include "chrome/common/chrome_notification_types.h"
-#include "chrome/common/search_types.h"
-#include "chrome/test/base/in_process_browser_test.h"
-#include "chrome/test/base/interactive_test_utils.h"
-#include "chrome/test/base/ui_test_utils.h"
-#include "content/public/browser/navigation_controller.h"
-#include "content/public/browser/navigation_entry.h"
-#include "content/public/browser/notification_service.h"
-#include "content/public/browser/render_process_host.h"
-#include "content/public/browser/web_contents.h"
-#include "content/public/test/browser_test_utils.h"
-#include "googleurl/src/gurl.h"
-#include "net/dns/mock_host_resolver.h"
-
-// !!! IMPORTANT !!!
-// These tests are run against a mock GWS using the web-page-replay system.
-// If you change a test, you MUST re-record the mock GWS session.
-// See: src/chrome/test/data/search/tools/instant_extended_manual_tests.py
-// for details.
-
-// Instant extended tests that need to be run manually because they need to
-// talk to the external network. All tests in this file should be marked as
-// "MANUAL_" unless they are disabled.
-class InstantExtendedManualTest : public InProcessBrowserTest,
- public InstantTestBase {
- public:
- InstantExtendedManualTest() {
- host_resolver_proc_ = new net::RuleBasedHostResolverProc(NULL);
- host_resolver_proc_->AllowDirectLookup("*");
- scoped_host_resolver_proc_.reset(
- new net::ScopedDefaultHostResolverProc(host_resolver_proc_.get()));
- }
-
- virtual ~InstantExtendedManualTest() {
- scoped_host_resolver_proc_.reset();
- host_resolver_proc_ = NULL;
- }
-
- virtual void SetUpOnMainThread() OVERRIDE {
- const testing::TestInfo* const test_info =
- testing::UnitTest::GetInstance()->current_test_info();
- ASSERT_TRUE(StartsWithASCII(test_info->name(), "MANUAL_", true) ||
- StartsWithASCII(test_info->name(), "DISABLED_", true));
- }
-
- protected:
- virtual void SetUpInProcessBrowserTestFixture() OVERRIDE {
- chrome::EnableInstantExtendedAPIForTesting();
- }
-
- content::WebContents* active_tab() {
- return browser()->tab_strip_model()->GetActiveWebContents();
- }
-
- bool PressBackspace() {
- return ui_test_utils::SendKeyPressSync(browser(), ui::VKEY_BACK,
- false, false, false, false);
- }
-
- bool PressBackspaceAndWaitForSuggestions() {
- content::WindowedNotificationObserver observer(
- chrome::NOTIFICATION_INSTANT_SET_SUGGESTION,
- content::NotificationService::AllSources());
- bool result = PressBackspace();
- observer.Wait();
- return result;
- }
-
- bool PressBackspaceAndWaitForOverlayToShow() {
- InstantTestModelObserver observer(
- instant()->model(), SearchMode::MODE_SEARCH_SUGGESTIONS);
- return PressBackspace() && observer.WaitForExpectedOverlayState();
- }
-
- void PressEnterAndWaitForNavigation() {
- content::WindowedNotificationObserver nav_observer(
- content::NOTIFICATION_NAV_ENTRY_COMMITTED,
- content::NotificationService::AllSources());
- browser()->window()->GetLocationBar()->AcceptInput();
- nav_observer.Wait();
- }
-
- bool PressEnterAndWaitForNavigationWithTitle(content::WebContents* contents,
- const string16& title) {
- content::TitleWatcher title_watcher(contents, title);
- content::WindowedNotificationObserver nav_observer(
- content::NOTIFICATION_NAV_ENTRY_COMMITTED,
- content::NotificationService::AllSources());
- browser()->window()->GetLocationBar()->AcceptInput();
- nav_observer.Wait();
- return title_watcher.WaitAndGetTitle() == title;
- }
-
- GURL GetActiveTabURL() {
- return active_tab()->GetController().GetActiveEntry()->GetURL();
- }
-
- bool GetSelectionState(bool* selected) {
- return GetBoolFromJS(instant()->GetOverlayContents(),
- "google.ac.gs().api.i()", selected);
- }
-
- bool OverlayIsGoogle() {
- content::WebContents* overlay_contents = instant()->GetOverlayContents();
- return overlay_contents &&
- overlay_contents->GetTitle() == ASCIIToUTF16("Google");
- }
-
- private:
- scoped_refptr<net::RuleBasedHostResolverProc> host_resolver_proc_;
- scoped_ptr<net::ScopedDefaultHostResolverProc> scoped_host_resolver_proc_;
-};
-
-IN_PROC_BROWSER_TEST_F(InstantExtendedManualTest,
- MANUAL_OmniboxFocusLoadsInstant) {
- set_browser(browser());
-
- // Explicitly unfocus the omnibox.
- EXPECT_TRUE(ui_test_utils::BringBrowserWindowToFront(browser()));
- ui_test_utils::ClickOnView(browser(), VIEW_ID_TAB_CONTAINER);
-
- EXPECT_TRUE(ui_test_utils::IsViewFocused(browser(), VIEW_ID_TAB_CONTAINER));
- EXPECT_FALSE(omnibox()->model()->has_focus());
-
- // Delete any existing overlay.
- instant()->overlay_.reset();
- EXPECT_FALSE(instant()->GetOverlayContents());
-
- // Refocus the omnibox. The InstantController should've preloaded Instant.
- FocusOmniboxAndWaitForInstantExtendedSupport();
- EXPECT_TRUE(OverlayIsGoogle());
-
- EXPECT_FALSE(ui_test_utils::IsViewFocused(browser(), VIEW_ID_TAB_CONTAINER));
- EXPECT_TRUE(omnibox()->model()->has_focus());
-
- // Check that the page supports Instant, but it isn't showing.
- ASSERT_TRUE(instant()->overlay());
- EXPECT_TRUE(instant()->overlay()->supports_instant());
- EXPECT_FALSE(instant()->IsOverlayingSearchResults());
- EXPECT_TRUE(instant()->model()->mode().is_default());
-}
-
-// TODO: http://crbug.com/230940
-IN_PROC_BROWSER_TEST_F(InstantExtendedManualTest,
- DISABLED_BackspaceFromQueryToSameQueryAndSearch) {
- set_browser(browser());
- FocusOmniboxAndWaitForInstantExtendedSupport();
- EXPECT_TRUE(OverlayIsGoogle());
-
- // Type "face" and expect Google to set gray text for "book" to suggest
- // [facebook], the query.
- ASSERT_TRUE(SetOmniboxTextAndWaitForOverlayToShow("face"));
- EXPECT_EQ(ASCIIToUTF16("face"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16("book"), GetGrayText());
-
- // Backspace to the text "fac".
- EXPECT_TRUE(PressBackspaceAndWaitForSuggestions());
- EXPECT_EQ(ASCIIToUTF16("fac"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16("ebook"), GetGrayText());
-
- // Press Enter. The page should show search results for [fac].
- EXPECT_TRUE(PressEnterAndWaitForNavigationWithTitle(
- instant()->GetOverlayContents(),
- ASCIIToUTF16("fac - Google Search")));
-}
-
-// TODO: http://crbug.com/230940
-IN_PROC_BROWSER_TEST_F(InstantExtendedManualTest,
- DISABLED_BackspaceFromQueryToOtherQueryAndSearch) {
- set_browser(browser());
- FocusOmniboxAndWaitForInstantExtendedSupport();
- EXPECT_TRUE(OverlayIsGoogle());
-
- // Type "fan" and expect Google to set gray text to "dango" to suggest
- // [fandango], the query.
- ASSERT_TRUE(SetOmniboxTextAndWaitForOverlayToShow("fan"));
- EXPECT_EQ(ASCIIToUTF16("fan"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16("dango"), GetGrayText());
-
- // Backspace to the text "fa". Expect Google to set gray text for "cebook" to
- // suggest [facebook], the query.
- EXPECT_TRUE(PressBackspaceAndWaitForSuggestions());
- EXPECT_EQ(ASCIIToUTF16("fa"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16("cebook"), GetGrayText());
-
- // Press Enter. Instant should clear gray text and submit the query [fa].
- EXPECT_TRUE(PressEnterAndWaitForNavigationWithTitle(
- instant()->GetOverlayContents(),
- ASCIIToUTF16("fa - Google Search")));
-}
-
-// TODO: http://crbug.com/230537
-IN_PROC_BROWSER_TEST_F(InstantExtendedManualTest,
- DISABLED_BackspaceFromUrlToNonSelectedUrlAndSearch) {
- set_browser(browser());
- FocusOmniboxAndWaitForInstantExtendedSupport();
- EXPECT_TRUE(OverlayIsGoogle());
-
- // Type "facebook.c" and expect Google to set blue text to "om" to suggest
- // http://www.facebook.com/, the URL.
- ASSERT_TRUE(SetOmniboxTextAndWaitForOverlayToShow("facebook.c"));
- EXPECT_EQ(ASCIIToUTF16("facebook.com"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16("om"), GetBlueText());
- bool selected = false;
- EXPECT_TRUE(GetSelectionState(&selected));
- EXPECT_TRUE(selected);
-
- // Backspace to the text "facebook.c". Expect no suggestion text and no
- // selected suggestion.
- // Page won't actually show because it's showing "press enter to search".
- EXPECT_TRUE(PressBackspaceAndWaitForSuggestions());
- EXPECT_EQ(ASCIIToUTF16("facebook.c"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16(""), GetBlueText());
- EXPECT_EQ(ASCIIToUTF16(""), GetGrayText());
- EXPECT_TRUE(GetSelectionState(&selected));
- EXPECT_FALSE(selected);
-
- // Press Enter. Instant should submit the query "facebook.c".
- EXPECT_TRUE(PressEnterAndWaitForNavigationWithTitle(
- active_tab(), ASCIIToUTF16("facebook.c - Google Search")));
-}
-
-IN_PROC_BROWSER_TEST_F(InstantExtendedManualTest,
- MANUAL_BackspaceFromUrlToUrlAndNavigate) {
- set_browser(browser());
- FocusOmniboxAndWaitForInstantExtendedSupport();
- EXPECT_TRUE(OverlayIsGoogle());
-
- // Type "facebook.com/" and expect Google to set blue text to "login.php" to
- // suggest http://www.facebook.com/login.php, the URL.
- ASSERT_TRUE(SetOmniboxTextAndWaitForOverlayToShow("facebook.com/"));
- EXPECT_EQ(ASCIIToUTF16("facebook.com/login.php"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16("login.php"), GetBlueText());
- bool selected = false;
- EXPECT_TRUE(GetSelectionState(&selected));
- EXPECT_TRUE(selected);
-
- // Backspace to the text "facebook.com/". There should be no suggestion text,
- // but the first suggestion should be selected.
- EXPECT_TRUE(PressBackspaceAndWaitForSuggestions());
- EXPECT_EQ(ASCIIToUTF16("facebook.com/"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16(""), GetBlueText());
- EXPECT_EQ(ASCIIToUTF16(""), GetGrayText());
- selected = false;
- EXPECT_TRUE(GetSelectionState(&selected));
- EXPECT_TRUE(selected);
-
- // Press Enter. Instant should navigate to facebook.com.
- PressEnterAndWaitForNavigation();
- EXPECT_TRUE(GetActiveTabURL().DomainIs("facebook.com"));
-}
-
-// TODO: http://crbug.com/230537
-IN_PROC_BROWSER_TEST_F(InstantExtendedManualTest,
- DISABLED_BackspaceFromQueryToSelectedUrlAndNavigate) {
- set_browser(browser());
- FocusOmniboxAndWaitForInstantExtendedSupport();
- EXPECT_TRUE(OverlayIsGoogle());
-
- // Type "a.cop" and expect Google to set gray text to "land" to suggest the
- // query [a.copland].
- ASSERT_TRUE(SetOmniboxTextAndWaitForOverlayToShow("a.cop"));
- EXPECT_EQ(ASCIIToUTF16("a.cop"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16("land"), GetGrayText());
-
- // Backspace to the text "a.co". Expect no suggestion text, but the
- // first suggestion should be selected URL "a.co".
- EXPECT_TRUE(PressBackspaceAndWaitForSuggestions());
- EXPECT_EQ(ASCIIToUTF16("a.co"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16(""), GetBlueText());
- EXPECT_EQ(ASCIIToUTF16(""), GetGrayText());
- bool selected = false;
- EXPECT_TRUE(GetSelectionState(&selected));
- EXPECT_TRUE(selected);
-
- // Press Enter. Instant should navigate to a.co/.
- PressEnterAndWaitForNavigation();
- EXPECT_TRUE(GetActiveTabURL().DomainIs("amazon.com"));
-}
-
-// TODO: http://crbug.com/230491
-IN_PROC_BROWSER_TEST_F(InstantExtendedManualTest,
- DISABLED_BackspaceFromSelectedUrlToQueryAndSearch) {
- set_browser(browser());
- FocusOmniboxAndWaitForInstantExtendedSupport();
- EXPECT_TRUE(OverlayIsGoogle());
-
- // Type "e.co/" and expect the top suggestion to be the URL "e.co/".
- ASSERT_TRUE(SetOmniboxTextAndWaitForOverlayToShow("e.co/"));
- EXPECT_EQ(ASCIIToUTF16("e.co/"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16(""), GetBlueText());
- EXPECT_EQ(ASCIIToUTF16(""), GetGrayText());
- bool selected = false;
- EXPECT_TRUE(GetSelectionState(&selected));
- EXPECT_TRUE(selected);
-
- // Backspace to the text "e.co". Expect Google to suggest the query [e.coli].
- EXPECT_TRUE(PressBackspaceAndWaitForOverlayToShow());
- EXPECT_EQ(ASCIIToUTF16("e.co"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16(""), GetBlueText());
- EXPECT_EQ(ASCIIToUTF16("li"), GetGrayText());
- selected = true;
- EXPECT_TRUE(GetSelectionState(&selected));
- EXPECT_FALSE(selected);
-
- // Press Enter. Instant should search for "e.co".
- EXPECT_TRUE(PressEnterAndWaitForNavigationWithTitle(
- instant()->GetOverlayContents(),
- ASCIIToUTF16("e.co - Google Search")));
-}
-
-IN_PROC_BROWSER_TEST_F(InstantExtendedManualTest, MANUAL_TypeURLAndPressEnter) {
- set_browser(browser());
- FocusOmniboxAndWaitForInstantExtendedSupport();
- EXPECT_TRUE(OverlayIsGoogle());
-
- // Type "www.facebook.com" and expect the top suggestion to be the URL
- // facebook.com.
- ASSERT_TRUE(SetOmniboxTextAndWaitForOverlayToShow("www.facebook.com"));
- EXPECT_EQ(ASCIIToUTF16("www.facebook.com"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16(""), GetBlueText());
- bool selected = false;
- EXPECT_TRUE(GetSelectionState(&selected));
- EXPECT_TRUE(selected);
-
- // Press Enter. Should navigate to facebook.com.
- PressEnterAndWaitForNavigation();
- EXPECT_TRUE(GetActiveTabURL().DomainIs("facebook.com"));
-}
-
-// TODO: http://crbug.com/232088
-IN_PROC_BROWSER_TEST_F(InstantExtendedManualTest,
- DISABLED_TypeAutocompletedURLAndPressEnter) {
- set_browser(browser());
- FocusOmniboxAndWaitForInstantExtendedSupport();
- EXPECT_TRUE(OverlayIsGoogle());
-
- // Type "www.facebook." and expect the top suggestion to be the URL
- // www.facebook.com.
- SetOmniboxTextAndWaitForSuggestion("www.facebook.");
- EXPECT_EQ(ASCIIToUTF16("www.facebook.com"), omnibox()->GetText());
- EXPECT_EQ(ASCIIToUTF16("com"), GetBlueText());
- bool selected = false;
- EXPECT_TRUE(GetSelectionState(&selected));
- EXPECT_TRUE(selected);
-
- // Press Enter. Should navigate to facebook.com.
- PressEnterAndWaitForNavigation();
- EXPECT_TRUE(GetActiveTabURL().DomainIs("facebook.com"));
-}
-
-// TODO: http://crbug.com/230537
-IN_PROC_BROWSER_TEST_F(InstantExtendedManualTest,
- DISABLED_PasteURLAndPressEnter) {
- set_browser(browser());
- FocusOmniboxAndWaitForInstantExtendedSupport();
- EXPECT_TRUE(OverlayIsGoogle());
-
- // Paste "www.facebook.com" and expect the top suggestion to be the URL
- // facebook.com.
- InstantTestModelObserver observer(
- instant()->model(), SearchMode::MODE_SEARCH_SUGGESTIONS);
- omnibox()->OnBeforePossibleChange();
- omnibox()->model()->on_paste();
- SetOmniboxText("www.facebook.com");
- omnibox()->OnAfterPossibleChange();
- ASSERT_TRUE(observer.WaitForExpectedOverlayState());
- EXPECT_EQ(ASCIIToUTF16("www.facebook.com"), omnibox()->GetText());
- EXPECT_EQ(string16(), GetBlueText());
- bool selected = false;
- EXPECT_TRUE(GetSelectionState(&selected));
- EXPECT_TRUE(selected);
-
- // Press Enter. Should navigate to facebook.com.
- PressEnterAndWaitForNavigation();
- EXPECT_TRUE(GetActiveTabURL().DomainIs("facebook.com"));
-}
-
-IN_PROC_BROWSER_TEST_F(InstantExtendedManualTest, MANUAL_PasteAndGo) {
- set_browser(browser());
- FocusOmniboxAndWaitForInstantExtendedSupport();
- EXPECT_TRUE(OverlayIsGoogle());
-
- // "Paste and Go" with the text www.facebook.com.
- content::WindowedNotificationObserver nav_observer(
- content::NOTIFICATION_NAV_ENTRY_COMMITTED,
- content::NotificationService::AllSources());
- omnibox()->model()->PasteAndGo(ASCIIToUTF16("www.facebook.com"));
- nav_observer.Wait();
- EXPECT_TRUE(GetActiveTabURL().DomainIs("facebook.com"));
-}
-
-IN_PROC_BROWSER_TEST_F(InstantExtendedManualTest,
- MANUAL_TypeSearchAndPressControlEnter) {
- set_browser(browser());
- FocusOmniboxAndWaitForInstantExtendedSupport();
- EXPECT_TRUE(OverlayIsGoogle());
-
- // Type "example" and expect Google to suggest a query, i.e., no blue text.
- SetOmniboxTextAndWaitForSuggestion("example");
- EXPECT_EQ(ASCIIToUTF16("example"), omnibox()->GetText());
- EXPECT_EQ(string16(), GetBlueText());
-
- // Press ctrl+enter and expect to navigate to example.com.
- content::WindowedNotificationObserver nav_observer(
- content::NOTIFICATION_NAV_ENTRY_COMMITTED,
- content::NotificationService::AllSources());
- omnibox()->model()->OnControlKeyChanged(true);
- browser()->window()->GetLocationBar()->AcceptInput();
- nav_observer.Wait();
- // example.com redirects to iana.
- EXPECT_TRUE(GetActiveTabURL().DomainIs("example.com") ||
- GetActiveTabURL().DomainIs("iana.org"));
-}

Powered by Google App Engine
This is Rietveld 408576698