This source file includes following definitions.
- TEST
- TEST
- TEST
#include "config.h"
#include <gdk/gdk.h>
#include <gdk/gdkkeysyms.h>
#include <gtest/gtest.h>
#include "WebInputEvent.h"
#include "WebInputEventConversion.h"
#include "WebInputEventFactory.h"
#include "core/events/KeyboardEvent.h"
using blink::WebInputEvent;
using blink::WebKeyboardEvent;
using blink::WebMouseEvent;
using blink::WebInputEventFactory;
namespace {
TEST(WebInputEventFactoryTest, DoubleClick)
{
GdkEventButton firstClick;
firstClick.type = GDK_BUTTON_PRESS;
firstClick.window = static_cast<GdkWindow*>(GINT_TO_POINTER(1));
firstClick.x = firstClick.y = firstClick.x_root = firstClick.y_root = 100;
firstClick.state = 0;
firstClick.time = 0;
firstClick.button = 1;
WebMouseEvent firstClickEvent = WebInputEventFactory::mouseEvent(&firstClick);
EXPECT_EQ(1, firstClickEvent.clickCount);
GdkEventButton secondClick = firstClick;
secondClick.time = firstClick.time + 100;
WebMouseEvent secondClickEvent = WebInputEventFactory::mouseEvent(&secondClick);
EXPECT_EQ(2, secondClickEvent.clickCount);
firstClick.time += 10000;
firstClickEvent = WebInputEventFactory::mouseEvent(&firstClick);
EXPECT_EQ(1, firstClickEvent.clickCount);
secondClick = firstClick;
secondClick.time = firstClick.time + 1000;
secondClickEvent = WebInputEventFactory::mouseEvent(&secondClick);
EXPECT_EQ(1, secondClickEvent.clickCount);
firstClick.time += 10000;
firstClickEvent = WebInputEventFactory::mouseEvent(&firstClick);
EXPECT_EQ(1, firstClickEvent.clickCount);
secondClick = firstClick;
secondClick.time = firstClick.time + 1;
secondClick.x = firstClick.x + 100;
secondClickEvent = WebInputEventFactory::mouseEvent(&secondClick);
EXPECT_EQ(1, secondClickEvent.clickCount);
firstClick.time += 10000;
firstClickEvent = WebInputEventFactory::mouseEvent(&firstClick);
EXPECT_EQ(1, firstClickEvent.clickCount);
secondClick = firstClick;
secondClick.time = firstClick.time + 1;
secondClick.x = firstClick.y + 100;
secondClickEvent = WebInputEventFactory::mouseEvent(&secondClick);
EXPECT_EQ(1, secondClickEvent.clickCount);
firstClick.time += 10000;
firstClickEvent = WebInputEventFactory::mouseEvent(&firstClick);
EXPECT_EQ(1, firstClickEvent.clickCount);
secondClick = firstClick;
secondClick.time = firstClick.time + 1;
secondClick.window = static_cast<GdkWindow*>(GINT_TO_POINTER(2));
secondClickEvent = WebInputEventFactory::mouseEvent(&secondClick);
EXPECT_EQ(1, secondClickEvent.clickCount);
}
TEST(WebInputEventFactoryTest, MouseUpClickCount)
{
GdkEventButton mouseDown;
memset(&mouseDown, 0, sizeof(mouseDown));
mouseDown.type = GDK_BUTTON_PRESS;
mouseDown.window = static_cast<GdkWindow*>(GINT_TO_POINTER(1));
mouseDown.x = mouseDown.y = mouseDown.x_root = mouseDown.y_root = 100;
mouseDown.time = 0;
mouseDown.button = 1;
WebInputEventFactory::mouseEvent(&mouseDown);
mouseDown.time += 10000;
GdkEventButton mouseUp = mouseDown;
mouseUp.type = GDK_BUTTON_RELEASE;
WebMouseEvent mouseDownEvent;
WebMouseEvent mouseUpEvent;
for (int i = 1; i < 4; ++i) {
mouseDown.time += 100;
mouseDownEvent = WebInputEventFactory::mouseEvent(&mouseDown);
EXPECT_EQ(i, mouseDownEvent.clickCount);
mouseUp.time = mouseDown.time + 50;
mouseUpEvent = WebInputEventFactory::mouseEvent(&mouseUp);
EXPECT_EQ(i, mouseUpEvent.clickCount);
}
mouseDown.time += 10000;
mouseDownEvent = WebInputEventFactory::mouseEvent(&mouseDown);
EXPECT_EQ(1, mouseDownEvent.clickCount);
GdkEventMotion mouseMove;
memset(&mouseMove, 0, sizeof(mouseMove));
mouseMove.type = GDK_MOTION_NOTIFY;
mouseMove.window = mouseDown.window;
mouseMove.time = mouseDown.time;
mouseMove.x = mouseMove.y = mouseMove.x_root = mouseMove.y_root = mouseDown.x + 100;
WebInputEventFactory::mouseEvent(&mouseMove);
mouseUp.time = mouseDown.time + 50;
mouseUpEvent = WebInputEventFactory::mouseEvent(&mouseUp);
EXPECT_EQ(0, mouseUpEvent.clickCount);
mouseDown.time += 10000;
mouseDownEvent = WebInputEventFactory::mouseEvent(&mouseDown);
EXPECT_EQ(1, mouseDownEvent.clickCount);
mouseMove.time = mouseDown.time + 1000;
mouseMove.x = mouseMove.y = mouseMove.x_root = mouseMove.y_root = mouseDown.x;
WebInputEventFactory::mouseEvent(&mouseMove);
mouseUp.time = mouseMove.time + 50;
mouseUpEvent = WebInputEventFactory::mouseEvent(&mouseUp);
EXPECT_EQ(0, mouseUpEvent.clickCount);
}
TEST(WebInputEventFactoryTest, NumPadConversion)
{
char five[] = "5";
GdkEventKey gdkEvent;
memset(&gdkEvent, 0, sizeof(GdkEventKey));
gdkEvent.type = GDK_KEY_PRESS;
gdkEvent.keyval = GDK_KP_5;
gdkEvent.string = five;
WebKeyboardEvent webEvent = WebInputEventFactory::keyboardEvent(&gdkEvent);
EXPECT_TRUE(webEvent.modifiers & WebInputEvent::IsKeyPad);
blink::PlatformKeyboardEventBuilder platformBuilder(webEvent);
RefPtrWillBeRawPtr<WebCore::KeyboardEvent> keypress = WebCore::KeyboardEvent::create(platformBuilder, 0);
EXPECT_TRUE(keypress->location() == WebCore::KeyboardEvent::DOM_KEY_LOCATION_NUMPAD);
blink::WebKeyboardEventBuilder builder(*keypress);
EXPECT_TRUE(builder.modifiers & WebInputEvent::IsKeyPad);
}
}