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

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

Issue 14043009: Fall back to local page if online NTP fails to load. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add some checks for extended_enabled_ to not break old Chrome Instant 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_interactive_uitest.cc
diff --git a/chrome/browser/ui/search/instant_extended_interactive_uitest.cc b/chrome/browser/ui/search/instant_extended_interactive_uitest.cc
index 4147a2895aac16151d0ccba3ac517fc8e486eab5..c2c6240422942240f7674b73fdfcb4fc44c76951 100644
--- a/chrome/browser/ui/search/instant_extended_interactive_uitest.cc
+++ b/chrome/browser/ui/search/instant_extended_interactive_uitest.cc
@@ -35,6 +35,8 @@
#include "chrome/browser/search_engines/template_url_service_factory.h"
#include "chrome/browser/themes/theme_service.h"
#include "chrome/browser/themes/theme_service_factory.h"
+#include "chrome/browser/ui/browser_list.h"
+#include "chrome/browser/ui/browser_tabstrip.h"
#include "chrome/browser/ui/omnibox/omnibox_view.h"
#include "chrome/browser/ui/search/instant_commit_type.h"
#include "chrome/browser/ui/search/instant_ntp.h"
@@ -113,8 +115,8 @@ class InstantExtendedTest : public InProcessBrowserTest,
submit_count_(0) {
}
protected:
- virtual void SetUpInProcessBrowserTestFixture() OVERRIDE {
- chrome::EnableInstantExtendedAPIForTesting();
+ virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
+ command_line->AppendSwitch(switches::kEnableInstantExtendedAPI);
ASSERT_TRUE(https_test_server().Start());
GURL instant_url = https_test_server().GetURL(
"files/instant_extended.html?strk=1&");
@@ -222,8 +224,11 @@ class InstantPolicyTest : public ExtensionBrowserTest, public InstantTestBase {
InstantPolicyTest() {}
protected:
+ virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
+ command_line->AppendSwitch(switches::kEnableInstantExtendedAPI);
+ }
+
virtual void SetUpInProcessBrowserTestFixture() OVERRIDE {
- chrome::EnableInstantExtendedAPIForTesting();
ASSERT_TRUE(https_test_server().Start());
GURL instant_url = https_test_server().GetURL(
"files/instant_extended.html?strk=1&");
@@ -803,8 +808,9 @@ IN_PROC_BROWSER_TEST_F(InstantExtendedTest, PreloadedNTPDoesntSupportInstant) {
ASSERT_NO_FATAL_FAILURE(SetupInstant(browser()));
FocusOmniboxAndWaitForInstantOverlayAndNTPSupport();
- // NTP contents should not be preloaded.
- ASSERT_EQ(static_cast<InstantNTP*>(NULL), instant()->ntp());
+ // NTP contents should have fallen back to the local page.
+ ASSERT_NE(static_cast<InstantNTP*>(NULL), instant()->ntp());
+ EXPECT_TRUE(instant()->ntp()->IsLocal());
// Open new tab. Should use local NTP.
ui_test_utils::NavigateToURLWithDisposition(
@@ -2058,9 +2064,10 @@ IN_PROC_BROWSER_TEST_F(InstantExtendedTest, OverlayDoesntSupportInstant) {
ASSERT_NO_FATAL_FAILURE(SetupInstant(browser()));
// Focus the omnibox. When the support determination response comes back,
- // Instant will destroy the non-Instant page.
+ // Instant will destroy the non-Instant page and fall back to the local page.
FocusOmniboxAndWaitForInstantOverlayAndNTPSupport();
- EXPECT_EQ(NULL, instant()->GetOverlayContents());
+ ASSERT_NE(static_cast<InstantOverlay*>(NULL), instant()->overlay());
+ EXPECT_TRUE(instant()->overlay()->IsLocal());
// The local overlay is used on the next Update().
SetOmniboxText("query");
@@ -2072,9 +2079,10 @@ IN_PROC_BROWSER_TEST_F(InstantExtendedTest, OverlayDoesntSupportInstant) {
FocusOmnibox();
EXPECT_FALSE(instant()->overlay()->IsLocal());
- // Overlay destroyed again after determining support.
+ // Overlay falls back to local again after determining support.
FocusOmniboxAndWaitForInstantOverlaySupport();
- EXPECT_EQ(NULL, instant()->GetOverlayContents());
+ ASSERT_NE(static_cast<InstantOverlay*>(NULL), instant()->overlay());
+ EXPECT_TRUE(instant()->overlay()->IsLocal());
}
// Test that if Instant alters the input from URL to search, it's respected.
@@ -2285,3 +2293,51 @@ IN_PROC_BROWSER_TEST_F(InstantExtendedTest, SearchProviderRunsForFallback) {
// - Search history suggestion for "query"
EXPECT_EQ(2, CountSearchProviderSuggestions());
}
+
+class InstantExtendedFirstTabTest : public InProcessBrowserTest,
+ public InstantTestBase {
Jered 2013/05/05 15:08:00 indent more
David Black 2013/05/05 20:02:42 Done.
+ public:
+ InstantExtendedFirstTabTest() {}
+ protected:
+ virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
+ command_line->AppendSwitch(switches::kEnableInstantExtendedAPI);
+ command_line->AppendSwitch(switches::kDisableLocalFirstLoadNTP);
+ }
+};
+
+IN_PROC_BROWSER_TEST_F(
+ InstantExtendedFirstTabTest, RedirectToLocalOnLoadFailure) {
+ // Create a new window to test the first NTP load.
+ ui_test_utils::NavigateToURLWithDisposition(
+ browser(),
+ GURL(chrome::kChromeUINewTabURL),
+ NEW_WINDOW,
+ ui_test_utils::BROWSER_TEST_WAIT_FOR_BROWSER);
+
+ const BrowserList* native_browser_list = BrowserList::GetInstance(
+ chrome::HOST_DESKTOP_TYPE_NATIVE);
+ ASSERT_EQ(2u, native_browser_list->size());
+ set_browser(native_browser_list->get(1));
+
+ FocusOmniboxAndWaitForInstantOverlayAndNTPSupport();
+
+ // Also make sure our instant_tab_ is loaded.
+ if (!instant()->instant_tab_) {
+ content::WindowedNotificationObserver instant_tab_observer(
+ chrome::NOTIFICATION_INSTANT_TAB_SUPPORT_DETERMINED,
+ content::NotificationService::AllSources());
+ instant_tab_observer.Wait();
+ }
+
+ // NTP contents should be preloaded.
+ ASSERT_NE(static_cast<InstantNTP*>(NULL), instant()->ntp());
+ EXPECT_TRUE(instant()->ntp()->IsLocal());
+
+ // Overlay contents should be preloaded.
+ ASSERT_NE(static_cast<InstantOverlay*>(NULL), instant()->overlay());
+ EXPECT_TRUE(instant()->overlay()->IsLocal());
+
+ // Instant tab contents should be preloaded.
+ ASSERT_NE(static_cast<InstantTab*>(NULL), instant()->instant_tab());
+ EXPECT_TRUE(instant()->instant_tab()->IsLocal());
+}

Powered by Google App Engine
This is Rietveld 408576698