This source file includes following definitions.
- CreateTouchPoint
- CreateTouch
- CreateTouch
- CreateGesture
- TEST_F
- TEST_F
#include "content/common/input/web_input_event_traits.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/WebKit/public/web/WebInputEvent.h"
using blink::WebGestureEvent;
using blink::WebInputEvent;
using blink::WebTouchEvent;
using blink::WebTouchPoint;
namespace content {
namespace {
class WebInputEventTraitsTest : public testing::Test {
protected:
static WebTouchPoint CreateTouchPoint(WebTouchPoint::State state, int id) {
WebTouchPoint touch;
touch.state = state;
touch.id = id;
return touch;
}
static WebTouchEvent CreateTouch(WebInputEvent::Type type) {
return CreateTouch(type, 1);
}
static WebTouchEvent CreateTouch(WebInputEvent::Type type,
unsigned touch_count) {
WebTouchEvent event;
event.touchesLength = touch_count;
event.type = type;
return event;
}
static WebGestureEvent CreateGesture(WebInputEvent::Type type,
float x,
float y) {
WebGestureEvent event;
event.type = type;
event.x = x;
event.y = y;
return event;
}
};
TEST_F(WebInputEventTraitsTest, TouchEventCoalescing) {
WebTouchEvent touch0 = CreateTouch(WebInputEvent::TouchStart);
WebTouchEvent touch1 = CreateTouch(WebInputEvent::TouchMove);
EXPECT_FALSE(WebInputEventTraits::CanCoalesce(touch0, touch0));
EXPECT_FALSE(WebInputEventTraits::CanCoalesce(touch0, touch1));
EXPECT_TRUE(WebInputEventTraits::CanCoalesce(touch1, touch1));
touch0 = CreateTouch(WebInputEvent::TouchMove);
touch1 = CreateTouch(WebInputEvent::TouchMove);
touch0.touches[0].id = 7;
EXPECT_FALSE(WebInputEventTraits::CanCoalesce(touch0, touch1));
touch0 = CreateTouch(WebInputEvent::TouchMove, 2);
touch1 = CreateTouch(WebInputEvent::TouchMove, 2);
touch0.touches[0].id = 1;
touch1.touches[0].id = 0;
EXPECT_FALSE(WebInputEventTraits::CanCoalesce(touch0, touch1));
touch0 = CreateTouch(WebInputEvent::TouchMove, 1);
touch1 = CreateTouch(WebInputEvent::TouchMove, 2);
EXPECT_FALSE(WebInputEventTraits::CanCoalesce(touch0, touch1));
touch0 = CreateTouch(WebInputEvent::TouchMove, 2);
touch1 = CreateTouch(WebInputEvent::TouchMove, 2);
touch0.touches[0] = touch1.touches[1] =
CreateTouchPoint(WebTouchPoint::StateMoved, 1);
touch0.touches[1] = touch1.touches[0] =
CreateTouchPoint(WebTouchPoint::StateMoved, 0);
EXPECT_TRUE(WebInputEventTraits::CanCoalesce(touch0, touch1));
touch0 = CreateTouch(WebInputEvent::TouchMove, 2);
touch1 = CreateTouch(WebInputEvent::TouchMove, 2);
touch0.touches[0] = touch1.touches[1] =
CreateTouchPoint(WebTouchPoint::StateMoved, 1);
WebInputEventTraits::Coalesce(touch0, &touch1);
ASSERT_EQ(1, touch1.touches[0].id);
ASSERT_EQ(0, touch1.touches[1].id);
EXPECT_EQ(WebTouchPoint::StateUndefined, touch1.touches[1].state);
EXPECT_EQ(WebTouchPoint::StateMoved, touch1.touches[0].state);
touch0 = touch1 = CreateTouch(WebInputEvent::TouchMove, 2);
touch0.touches[0] = CreateTouchPoint(WebTouchPoint::StateMoved, 1);
touch1.touches[1] = CreateTouchPoint(WebTouchPoint::StateStationary, 1);
touch0.touches[1] = CreateTouchPoint(WebTouchPoint::StateStationary, 0);
touch1.touches[0] = CreateTouchPoint(WebTouchPoint::StateMoved, 0);
WebInputEventTraits::Coalesce(touch0, &touch1);
ASSERT_EQ(1, touch1.touches[0].id);
ASSERT_EQ(0, touch1.touches[1].id);
EXPECT_EQ(WebTouchPoint::StateMoved, touch1.touches[0].state);
EXPECT_EQ(WebTouchPoint::StateMoved, touch1.touches[1].state);
}
TEST_F(WebInputEventTraitsTest, PinchEventCoalescing) {
WebGestureEvent pinch0 =
CreateGesture(WebInputEvent::GesturePinchBegin, 1, 1);
WebGestureEvent pinch1 =
CreateGesture(WebInputEvent::GesturePinchUpdate, 2, 2);
EXPECT_FALSE(WebInputEventTraits::CanCoalesce(pinch0, pinch0));
EXPECT_FALSE(WebInputEventTraits::CanCoalesce(pinch0, pinch1));
pinch0 = CreateGesture(WebInputEvent::GesturePinchUpdate, 1, 1);
pinch1 = CreateGesture(WebInputEvent::GesturePinchUpdate, 2, 2);
EXPECT_FALSE(WebInputEventTraits::CanCoalesce(pinch0, pinch1));
EXPECT_TRUE(WebInputEventTraits::CanCoalesce(pinch0, pinch0));
pinch0 = CreateGesture(WebInputEvent::GesturePinchUpdate, 1, 1);
pinch0.data.pinchUpdate.scale = 2.f;
pinch1 = CreateGesture(WebInputEvent::GesturePinchUpdate, 1, 1);
pinch1.data.pinchUpdate.scale = 3.f;
EXPECT_TRUE(WebInputEventTraits::CanCoalesce(pinch0, pinch0));
WebInputEventTraits::Coalesce(pinch0, &pinch1);
EXPECT_EQ(2.f * 3.f, pinch1.data.pinchUpdate.scale);
}
}
}