// 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/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/autofill_driver_impl.h" #include "components/autofill/core/browser/autofill_manager.h" #include "components/autofill/core/browser/test_autofill_manager_delegate.h" #include "content/public/browser/navigation_controller.h" #include "content/public/browser/notification_service.h" #include "content/public/browser/notification_types.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/rect.h" namespace autofill { namespace { class MockAutofillManagerDelegate : public autofill::TestAutofillManagerDelegate { public: MockAutofillManagerDelegate() {} virtual ~MockAutofillManagerDelegate() {} virtual PrefService* GetPrefs() { return &prefs_; } user_prefs::PrefRegistrySyncable* GetPrefRegistry() { return prefs_.registry(); } MOCK_METHOD7(ShowAutofillPopup, void(const gfx::RectF& element_bounds, base::i18n::TextDirection text_direction, const std::vector& values, const std::vector& labels, const std::vector& icons, const std::vector& identifiers, base::WeakPtr delegate)); MOCK_METHOD0(HideAutofillPopup, void()); private: TestingPrefServiceSyncable prefs_; DISALLOW_COPY_AND_ASSIGN(MockAutofillManagerDelegate); }; // Subclass AutofillDriverImpl so we can create an AutofillDriverImpl instance. class TestAutofillDriverImpl : public AutofillDriverImpl { public: TestAutofillDriverImpl(content::WebContents* web_contents, AutofillManagerDelegate* delegate) : AutofillDriverImpl( web_contents, delegate, g_browser_process->GetApplicationLocale(), AutofillManager::ENABLE_AUTOFILL_DOWNLOAD_MANAGER) {} virtual ~TestAutofillDriverImpl() {} private: DISALLOW_COPY_AND_ASSIGN(TestAutofillDriverImpl); }; } // namespace class AutofillDriverImplBrowserTest : public InProcessBrowserTest, public content::WebContentsObserver { public: AutofillDriverImplBrowserTest() {} virtual ~AutofillDriverImplBrowserTest() {} virtual void SetUpOnMainThread() OVERRIDE { web_contents_ = browser()->tab_strip_model()->GetActiveWebContents(); ASSERT_TRUE(web_contents_ != NULL); Observe(web_contents_); AutofillManager::RegisterProfilePrefs(manager_delegate_.GetPrefRegistry()); autofill_driver_.reset(new TestAutofillDriverImpl(web_contents_, &manager_delegate_)); } // Normally the WebContents will automatically delete the driver, but here // the driver is owned by this test, so we have to manually destroy. virtual void WebContentsDestroyed(content::WebContents* web_contents) OVERRIDE { DCHECK_EQ(web_contents_, web_contents); autofill_driver_.reset(); } protected: content::WebContents* web_contents_; testing::NiceMock manager_delegate_; scoped_ptr autofill_driver_; }; IN_PROC_BROWSER_TEST_F(AutofillDriverImplBrowserTest, SwitchTabAndHideAutofillPopup) { // Notification is different on platforms. On linux this will be called twice, // while on windows only once. EXPECT_CALL(manager_delegate_, HideAutofillPopup()) .Times(testing::AtLeast(1)); content::WindowedNotificationObserver observer( content::NOTIFICATION_WEB_CONTENTS_VISIBILITY_CHANGED, content::Source(web_contents_)); chrome::AddSelectedTabWithURL(browser(), GURL(content::kAboutBlankURL), content::PAGE_TRANSITION_AUTO_TOPLEVEL); observer.Wait(); } IN_PROC_BROWSER_TEST_F(AutofillDriverImplBrowserTest, TestPageNavigationHidingAutofillPopup) { // Notification is different on platforms. On linux this will be called twice, // while on windows only once. EXPECT_CALL(manager_delegate_, HideAutofillPopup()) .Times(testing::AtLeast(1)); content::WindowedNotificationObserver observer( content::NOTIFICATION_NAV_ENTRY_COMMITTED, content::Source( &(web_contents_->GetController()))); browser()->OpenURL(content::OpenURLParams( GURL(chrome::kChromeUIBookmarksURL), content::Referrer(), CURRENT_TAB, content::PAGE_TRANSITION_TYPED, false)); browser()->OpenURL(content::OpenURLParams( GURL(chrome::kChromeUIAboutURL), content::Referrer(), CURRENT_TAB, content::PAGE_TRANSITION_TYPED, false)); observer.Wait(); } } // namespace autofill