1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
// Copyright 2014 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/memory/scoped_ptr.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_tabstrip.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/url_constants.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/testing_pref_service_syncable.h"
#include "components/autofill/content/browser/content_autofill_driver.h"
#include "components/autofill/content/browser/content_autofill_driver_factory.h"
#include "components/autofill/core/browser/autofill_manager.h"
#include "components/autofill/core/browser/test_autofill_client.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/page_navigator.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/common/url_constants.h"
#include "content/public/test/test_utils.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gfx/geometry/rect.h"
namespace autofill {
namespace {
class MockAutofillClient : public TestAutofillClient {
public:
MockAutofillClient() {}
virtual ~MockAutofillClient() {}
virtual PrefService* GetPrefs() { return &prefs_; }
user_prefs::PrefRegistrySyncable* GetPrefRegistry() {
return prefs_.registry();
}
MOCK_METHOD4(ShowAutofillPopup,
void(const gfx::RectF& element_bounds,
base::i18n::TextDirection text_direction,
const std::vector<autofill::Suggestion>& suggestions,
base::WeakPtr<AutofillPopupDelegate> delegate));
MOCK_METHOD0(HideAutofillPopup, void());
private:
TestingPrefServiceSyncable prefs_;
DISALLOW_COPY_AND_ASSIGN(MockAutofillClient);
};
// Subclass ContentAutofillDriver so we can create an ContentAutofillDriver
// instance.
class TestContentAutofillDriver : public ContentAutofillDriver {
public:
TestContentAutofillDriver(content::RenderFrameHost* rfh,
AutofillClient* client)
: ContentAutofillDriver(
rfh,
client,
g_browser_process->GetApplicationLocale(),
AutofillManager::ENABLE_AUTOFILL_DOWNLOAD_MANAGER) {}
~TestContentAutofillDriver() override {}
private:
DISALLOW_COPY_AND_ASSIGN(TestContentAutofillDriver);
};
} // namespace
class ContentAutofillDriverBrowserTest : public InProcessBrowserTest,
public content::WebContentsObserver {
public:
ContentAutofillDriverBrowserTest() {}
virtual ~ContentAutofillDriverBrowserTest() {}
virtual void SetUpOnMainThread() override {
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(web_contents != NULL);
Observe(web_contents);
AutofillManager::RegisterProfilePrefs(autofill_client_.GetPrefRegistry());
web_contents->RemoveUserData(
ContentAutofillDriverFactory::
kContentAutofillDriverFactoryWebContentsUserDataKey);
ContentAutofillDriverFactory::CreateForWebContentsAndDelegate(
web_contents, &autofill_client_, "en-US",
AutofillManager::DISABLE_AUTOFILL_DOWNLOAD_MANAGER);
}
virtual void WasHidden() override {
if (!web_contents_hidden_callback_.is_null())
web_contents_hidden_callback_.Run();
}
virtual void NavigationEntryCommitted(
const content::LoadCommittedDetails& load_details) override {
if (!nav_entry_committed_callback_.is_null())
nav_entry_committed_callback_.Run();
}
protected:
content::WebContents* web_contents_;
base::Closure web_contents_hidden_callback_;
base::Closure nav_entry_committed_callback_;
testing::NiceMock<MockAutofillClient> autofill_client_;
};
IN_PROC_BROWSER_TEST_F(ContentAutofillDriverBrowserTest,
SwitchTabAndHideAutofillPopup) {
// Notification is different on platforms. On linux this will be called twice,
// while on windows only once.
EXPECT_CALL(autofill_client_, HideAutofillPopup()).Times(testing::AtLeast(1));
scoped_refptr<content::MessageLoopRunner> runner =
new content::MessageLoopRunner;
web_contents_hidden_callback_ = runner->QuitClosure();
chrome::AddSelectedTabWithURL(browser(),
GURL(url::kAboutBlankURL),
ui::PAGE_TRANSITION_AUTO_TOPLEVEL);
runner->Run();
web_contents_hidden_callback_.Reset();
}
IN_PROC_BROWSER_TEST_F(ContentAutofillDriverBrowserTest,
TestPageNavigationHidingAutofillPopup) {
// Notification is different on platforms. On linux this will be called twice,
// while on windows only once.
EXPECT_CALL(autofill_client_, HideAutofillPopup()).Times(testing::AtLeast(1));
scoped_refptr<content::MessageLoopRunner> runner =
new content::MessageLoopRunner;
nav_entry_committed_callback_ = runner->QuitClosure();
browser()->OpenURL(content::OpenURLParams(GURL(chrome::kChromeUIBookmarksURL),
content::Referrer(),
CURRENT_TAB,
ui::PAGE_TRANSITION_TYPED,
false));
browser()->OpenURL(content::OpenURLParams(GURL(chrome::kChromeUIAboutURL),
content::Referrer(),
CURRENT_TAB,
ui::PAGE_TRANSITION_TYPED,
false));
runner->Run();
nav_entry_committed_callback_.Reset();
}
} // namespace autofill
|