autofill_popup_controller_interactive_uitest.cc revision 424c4d7b64af9d0d8fd9624f381f469654d5e3d2
1// Copyright 2013 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 "base/basictypes.h"
6#include "base/memory/scoped_ptr.h"
7#include "chrome/browser/ui/autofill/autofill_popup_view.h"
8#include "chrome/browser/ui/browser.h"
9#include "chrome/browser/ui/browser_window.h"
10#include "chrome/browser/ui/tabs/tab_strip_model.h"
11#include "chrome/test/base/in_process_browser_test.h"
12#include "components/autofill/content/browser/autofill_driver_impl.h"
13#include "components/autofill/core/browser/autofill_manager.h"
14#include "components/autofill/core/browser/test_autofill_external_delegate.h"
15#include "content/public/browser/web_contents.h"
16#include "content/public/browser/web_contents_observer.h"
17#include "content/public/test/test_utils.h"
18#include "ui/gfx/rect.h"
19#include "ui/gfx/vector2d.h"
20
21namespace autofill {
22namespace {
23
24class TestAutofillExternalDelegate : public AutofillExternalDelegate {
25 public:
26  TestAutofillExternalDelegate(content::WebContents* web_contents,
27                               AutofillManager* autofill_manager,
28                               AutofillDriver* autofill_driver)
29      : AutofillExternalDelegate(web_contents, autofill_manager,
30                                 autofill_driver),
31        popup_hidden_(true) {}
32  virtual ~TestAutofillExternalDelegate() {}
33
34  virtual void OnPopupShown(
35      content::RenderWidgetHost::KeyPressEventCallback* callback) OVERRIDE {
36    popup_hidden_ = false;
37
38    AutofillExternalDelegate::OnPopupShown(callback);
39  }
40
41  virtual void OnPopupHidden(
42      content::RenderWidgetHost::KeyPressEventCallback* callback) OVERRIDE {
43    popup_hidden_ = true;
44
45    if (message_loop_runner_.get())
46      message_loop_runner_->Quit();
47
48    AutofillExternalDelegate::OnPopupHidden(callback);
49  }
50
51  void WaitForPopupHidden() {
52    if (popup_hidden_)
53      return;
54
55    message_loop_runner_ = new content::MessageLoopRunner;
56    message_loop_runner_->Run();
57  }
58
59  bool popup_hidden() const { return popup_hidden_; }
60
61 private:
62  bool popup_hidden_;
63  scoped_refptr<content::MessageLoopRunner> message_loop_runner_;
64
65  DISALLOW_COPY_AND_ASSIGN(TestAutofillExternalDelegate);
66};
67
68}  // namespace
69
70class AutofillPopupControllerBrowserTest
71    : public InProcessBrowserTest,
72      public content::WebContentsObserver {
73 public:
74  AutofillPopupControllerBrowserTest() {}
75  virtual ~AutofillPopupControllerBrowserTest() {}
76
77  virtual void SetUpOnMainThread() OVERRIDE {
78    web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
79    ASSERT_TRUE(web_contents_ != NULL);
80    Observe(web_contents_);
81
82    AutofillDriverImpl* driver =
83        AutofillDriverImpl::FromWebContents(web_contents_);
84    autofill_external_delegate_.reset(
85       new TestAutofillExternalDelegate(
86           web_contents_,
87           driver->autofill_manager(),
88           driver));
89  }
90
91  // Normally the WebContents will automatically delete the delegate, but here
92  // the delegate is owned by this test, so we have to manually destroy.
93  virtual void WebContentsDestroyed(content::WebContents* web_contents)
94      OVERRIDE {
95    DCHECK_EQ(web_contents_, web_contents);
96
97    autofill_external_delegate_.reset();
98  }
99
100 protected:
101  content::WebContents* web_contents_;
102
103  scoped_ptr<TestAutofillExternalDelegate> autofill_external_delegate_;
104};
105
106// Autofill UI isn't currently hidden on window move on Mac.
107// http://crbug.com/180566
108#if !defined(OS_MACOSX)
109IN_PROC_BROWSER_TEST_F(AutofillPopupControllerBrowserTest,
110                       HidePopupOnWindowConfiguration) {
111  GenerateTestAutofillPopup(autofill_external_delegate_.get());
112
113  EXPECT_FALSE(autofill_external_delegate_->popup_hidden());
114
115  // Resize the window, which should cause the popup to hide.
116  gfx::Rect new_bounds = browser()->window()->GetBounds() - gfx::Vector2d(1, 1);
117  browser()->window()->SetBounds(new_bounds);
118
119  autofill_external_delegate_->WaitForPopupHidden();
120  EXPECT_TRUE(autofill_external_delegate_->popup_hidden());
121}
122#endif // !defined(OS_MACOSX)
123
124// This test checks that the browser doesn't crash if the delegate is deleted
125// before the popup is hidden.
126IN_PROC_BROWSER_TEST_F(AutofillPopupControllerBrowserTest,
127                       DeleteDelegateBeforePopupHidden){
128  GenerateTestAutofillPopup(autofill_external_delegate_.get());
129
130  // Delete the external delegate here so that is gets deleted before popup is
131  // hidden. This can happen if the web_contents are destroyed before the popup
132  // is hidden. See http://crbug.com/232475
133  autofill_external_delegate_.reset();
134}
135
136}  // namespace autofill
137