OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/renderer_host/test/test_render_view_host.h" |
| 6 |
| 7 #include "chrome/browser/chrome_thread.h" |
| 8 #include "chrome/browser/chromeos/offline/offline_load_page.h" |
| 9 #include "chrome/browser/tab_contents/navigation_entry.h" |
| 10 #include "chrome/common/render_messages.h" |
| 11 |
| 12 static const char* kURL1 = "http://www.google.com/"; |
| 13 static const char* kURL2 = "http://www.gmail.com/"; |
| 14 |
| 15 namespace { |
| 16 |
| 17 // An OfflineLoadPage class that does not create windows. |
| 18 class TestOfflineLoadPage : public chromeos::OfflineLoadPage { |
| 19 public: |
| 20 TestOfflineLoadPage(TabContents* tab_contents, |
| 21 const GURL& url, |
| 22 Delegate* delegate) |
| 23 : chromeos::OfflineLoadPage(tab_contents, url, delegate) { |
| 24 } |
| 25 |
| 26 // Overriden from InterstitialPage. Don't create a view. |
| 27 virtual TabContentsView* CreateTabContentsView() { |
| 28 return NULL; |
| 29 } |
| 30 }; |
| 31 |
| 32 } // namespace |
| 33 |
| 34 namespace chromeos { |
| 35 |
| 36 class OfflineLoadPageTest : public RenderViewHostTestHarness, |
| 37 public OfflineLoadPage::Delegate { |
| 38 public: |
| 39 // The decision the user made. |
| 40 enum UserResponse { |
| 41 PENDING, |
| 42 OK, |
| 43 CANCEL |
| 44 }; |
| 45 |
| 46 OfflineLoadPageTest() |
| 47 : ui_thread_(ChromeThread::UI, MessageLoop::current()), |
| 48 io_thread_(ChromeThread::IO, MessageLoop::current()) { |
| 49 } |
| 50 |
| 51 virtual void SetUp() { |
| 52 RenderViewHostTestHarness::SetUp(); |
| 53 user_response_ = PENDING; |
| 54 } |
| 55 |
| 56 // OfflineLoadPage::Delegate implementation. |
| 57 virtual void OnBlockingPageComplete(bool proceed) { |
| 58 if (proceed) |
| 59 user_response_ = OK; |
| 60 else |
| 61 user_response_ = CANCEL; |
| 62 } |
| 63 |
| 64 void Navigate(const char* url, int page_id) { |
| 65 ViewHostMsg_FrameNavigate_Params params; |
| 66 InitNavigateParams(¶ms, page_id, GURL(url), PageTransition::TYPED); |
| 67 contents()->TestDidNavigate(contents_->render_view_host(), params); |
| 68 } |
| 69 |
| 70 void ShowInterstitial(const char* url) { |
| 71 (new TestOfflineLoadPage(contents(), GURL(url), this))->Show(); |
| 72 } |
| 73 |
| 74 // Returns the OfflineLoadPage currently showing or NULL if none is |
| 75 // showing. |
| 76 InterstitialPage* GetOfflineLoadPage() { |
| 77 return InterstitialPage::GetInterstitialPage(contents()); |
| 78 } |
| 79 |
| 80 UserResponse user_response() const { return user_response_; } |
| 81 |
| 82 private: |
| 83 UserResponse user_response_; |
| 84 ChromeThread ui_thread_; |
| 85 ChromeThread io_thread_; |
| 86 }; |
| 87 |
| 88 |
| 89 TEST_F(OfflineLoadPageTest, OfflinePaeProceed) { |
| 90 // Start a load. |
| 91 Navigate(kURL1, 1); |
| 92 // Load next page. |
| 93 controller().LoadURL(GURL(kURL2), GURL(), PageTransition::TYPED); |
| 94 |
| 95 // Simulate the load causing an offline browsing interstitial page |
| 96 // to be shown. |
| 97 ShowInterstitial(kURL2); |
| 98 InterstitialPage* interstitial = GetOfflineLoadPage(); |
| 99 ASSERT_TRUE(interstitial); |
| 100 MessageLoop::current()->RunAllPending(); |
| 101 |
| 102 // Simulate the user clicking "proceed". |
| 103 interstitial->Proceed(); |
| 104 |
| 105 EXPECT_EQ(OK, user_response()); |
| 106 |
| 107 // The URL remains to be URL2. |
| 108 EXPECT_EQ(kURL2, contents()->GetURL().spec()); |
| 109 |
| 110 // Ccommit navigation and the interstitial page is gone. |
| 111 Navigate(kURL2, 2); |
| 112 EXPECT_FALSE(GetOfflineLoadPage()); |
| 113 } |
| 114 |
| 115 // Tests showing an offline page and not proceeding. |
| 116 TEST_F(OfflineLoadPageTest, OfflinePageDontProceed) { |
| 117 // Start a load. |
| 118 Navigate(kURL1, 1); |
| 119 controller().LoadURL(GURL(kURL2), GURL(), PageTransition::TYPED); |
| 120 |
| 121 // Simulate the load causing an offline interstitial page to be shown. |
| 122 ShowInterstitial(kURL2); |
| 123 InterstitialPage* interstitial = GetOfflineLoadPage(); |
| 124 ASSERT_TRUE(interstitial); |
| 125 MessageLoop::current()->RunAllPending(); |
| 126 |
| 127 // Simulate the user clicking "don't proceed". |
| 128 interstitial->DontProceed(); |
| 129 |
| 130 // The interstitial should be gone. |
| 131 EXPECT_EQ(CANCEL, user_response()); |
| 132 EXPECT_FALSE(GetOfflineLoadPage()); |
| 133 // We did not proceed, the pending entry should be gone. |
| 134 EXPECT_FALSE(controller().pending_entry()); |
| 135 // the URL is set back to kURL1. |
| 136 EXPECT_EQ(kURL1, contents()->GetURL().spec()); |
| 137 } |
| 138 |
| 139 } // namespace chromeos |
OLD | NEW |