This source file includes following definitions.
- popup_hidden_
- OnPopupShown
- OnPopupHidden
- WaitForPopupHidden
- popup_hidden
- SetUpOnMainThread
- WebContentsDestroyed
- IN_PROC_BROWSER_TEST_F
- IN_PROC_BROWSER_TEST_F
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/ui/autofill/autofill_popup_view.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "components/autofill/content/browser/content_autofill_driver.h"
#include "components/autofill/core/browser/autofill_manager.h"
#include "components/autofill/core/browser/test_autofill_external_delegate.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/test/test_utils.h"
#include "ui/gfx/rect.h"
#include "ui/gfx/vector2d.h"
namespace autofill {
namespace {
class TestAutofillExternalDelegate : public AutofillExternalDelegate {
public:
TestAutofillExternalDelegate(content::WebContents* web_contents,
AutofillManager* autofill_manager,
AutofillDriver* autofill_driver)
: AutofillExternalDelegate(autofill_manager, autofill_driver),
popup_hidden_(true) {}
virtual ~TestAutofillExternalDelegate() {}
virtual void OnPopupShown() OVERRIDE {
popup_hidden_ = false;
AutofillExternalDelegate::OnPopupShown();
}
virtual void OnPopupHidden() OVERRIDE {
popup_hidden_ = true;
if (message_loop_runner_.get())
message_loop_runner_->Quit();
AutofillExternalDelegate::OnPopupHidden();
}
void WaitForPopupHidden() {
if (popup_hidden_)
return;
message_loop_runner_ = new content::MessageLoopRunner;
message_loop_runner_->Run();
}
bool popup_hidden() const { return popup_hidden_; }
private:
bool popup_hidden_;
scoped_refptr<content::MessageLoopRunner> message_loop_runner_;
DISALLOW_COPY_AND_ASSIGN(TestAutofillExternalDelegate);
};
}
class AutofillPopupControllerBrowserTest
: public InProcessBrowserTest,
public content::WebContentsObserver {
public:
AutofillPopupControllerBrowserTest() {}
virtual ~AutofillPopupControllerBrowserTest() {}
virtual void SetUpOnMainThread() OVERRIDE {
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(web_contents_ != NULL);
Observe(web_contents_);
ContentAutofillDriver* driver =
ContentAutofillDriver::FromWebContents(web_contents_);
autofill_external_delegate_.reset(
new TestAutofillExternalDelegate(
web_contents_,
driver->autofill_manager(),
driver));
}
virtual void WebContentsDestroyed(content::WebContents* web_contents)
OVERRIDE {
DCHECK_EQ(web_contents_, web_contents);
autofill_external_delegate_.reset();
}
protected:
content::WebContents* web_contents_;
scoped_ptr<TestAutofillExternalDelegate> autofill_external_delegate_;
};
#if !defined(OS_MACOSX)
IN_PROC_BROWSER_TEST_F(AutofillPopupControllerBrowserTest,
HidePopupOnWindowConfiguration) {
GenerateTestAutofillPopup(autofill_external_delegate_.get());
EXPECT_FALSE(autofill_external_delegate_->popup_hidden());
gfx::Rect new_bounds = browser()->window()->GetBounds() - gfx::Vector2d(1, 1);
browser()->window()->SetBounds(new_bounds);
autofill_external_delegate_->WaitForPopupHidden();
EXPECT_TRUE(autofill_external_delegate_->popup_hidden());
}
#endif
#if defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(USE_AURA)
#define MAYBE_DeleteDelegateBeforePopupHidden \
DISABLED_DeleteDelegateBeforePopupHidden
#else
#define MAYBE_DeleteDelegateBeforePopupHidden DeleteDelegateBeforePopupHidden
#endif
IN_PROC_BROWSER_TEST_F(AutofillPopupControllerBrowserTest,
MAYBE_DeleteDelegateBeforePopupHidden){
GenerateTestAutofillPopup(autofill_external_delegate_.get());
autofill_external_delegate_.reset();
}
}