This source file includes following definitions.
- ShouldRepostEvent
 
- SetUpOnMainThread
 
- ShowView
 
- CreateGestureEvent
 
- SimulateGesture
 
- IN_PROC_BROWSER_TEST_F
 
#include "chrome/browser/ui/views/autofill/autofill_popup_base_view.h"
#include "chrome/browser/ui/autofill/autofill_popup_view_delegate.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/events/event_utils.h"
#include "ui/views/test/views_test_base.h"
#include "ui/views/widget/widget.h"
namespace autofill {
namespace {
using testing::Return;
using testing::ReturnRef;
class MockAutofillPopupViewDelegate : public AutofillPopupViewDelegate {
 public:
  MOCK_METHOD0(Hide, void());
  MOCK_METHOD0(ViewDestroyed, void());
  MOCK_METHOD1(SetSelectionAtPoint, void(const gfx::Point&));
  MOCK_METHOD0(AcceptSelectedLine, bool());
  MOCK_METHOD0(SelectionCleared, void());
  
  bool ShouldRepostEvent(const ui::MouseEvent&) { return false; }
  MOCK_CONST_METHOD0(ShouldHideOnOutsideClick, bool());
  MOCK_CONST_METHOD0(popup_bounds, gfx::Rect&());
  MOCK_METHOD0(container_view, gfx::NativeView());
};
}  
class AutofillPopupBaseViewTest : public InProcessBrowserTest {
 public:
  AutofillPopupBaseViewTest() {}
  virtual ~AutofillPopupBaseViewTest() {}
  virtual void SetUpOnMainThread() OVERRIDE {
    gfx::NativeWindow window = browser()->window()->GetNativeWindow();
    EXPECT_CALL(mock_delegate_, container_view())
        .WillRepeatedly(Return(window));
    EXPECT_CALL(mock_delegate_, ShouldHideOnOutsideClick())
        .WillRepeatedly(Return(false));
    EXPECT_CALL(mock_delegate_, ViewDestroyed());
    view_ = new AutofillPopupBaseView(
        &mock_delegate_,
        views::Widget::GetWidgetForNativeWindow(window));
  }
  void ShowView() {
    view_->DoShow();
  }
  ui::GestureEvent CreateGestureEvent(ui::EventType type, gfx::Point point) {
    return ui::GestureEvent(type,
                            point.x(),
                            point.y(),
                            0,
                            ui::EventTimeForNow(),
                            ui::GestureEventDetails(type, 0, 0),
                            0);
  }
  void SimulateGesture(ui::GestureEvent* event) {
    view_->OnGestureEvent(event);
  }
 protected:
  MockAutofillPopupViewDelegate mock_delegate_;
  AutofillPopupBaseView* view_;
};
IN_PROC_BROWSER_TEST_F(AutofillPopupBaseViewTest, GestureTest) {
  gfx::Rect bounds(0, 0, 5, 5);
  gfx::Point point = bounds.CenterPoint();
  EXPECT_CALL(mock_delegate_, popup_bounds()).WillRepeatedly(ReturnRef(bounds));
  ShowView();
  
  {
    testing::InSequence dummy;
    EXPECT_CALL(mock_delegate_, SetSelectionAtPoint(point)).Times(2);
    EXPECT_CALL(mock_delegate_, AcceptSelectedLine());
    EXPECT_CALL(mock_delegate_, SelectionCleared());
  }
  
  ui::GestureEvent tap_down_event = CreateGestureEvent(ui::ET_GESTURE_TAP_DOWN,
                                                       point);
  SimulateGesture(&tap_down_event);
  
  ui::GestureEvent tap_event = CreateGestureEvent(ui::ET_GESTURE_TAP, point);
  SimulateGesture(&tap_event);
  
  ui::GestureEvent outside_tap = CreateGestureEvent(ui::ET_GESTURE_TAP,
                                                    gfx::Point(100, 100));
  SimulateGesture(&outside_tap);
}
}