Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: remoting/client/plugin/touch_input_scaler_unittest.cc

Issue 985863002: Move all protocol event matchers to test_event_matchers.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/client/plugin/touch_input_scaler_unittest.cc
diff --git a/remoting/client/plugin/touch_input_scaler_unittest.cc b/remoting/client/plugin/touch_input_scaler_unittest.cc
index ae36041dc6c4a9e2d2254490d9ad8062a087bef1..18e66118b0c6659bb02d9c5b401aea66ab49fd9e 100644
--- a/remoting/client/plugin/touch_input_scaler_unittest.cc
+++ b/remoting/client/plugin/touch_input_scaler_unittest.cc
@@ -7,89 +7,24 @@
#include <cmath>
#include "remoting/protocol/protocol_mock_objects.h"
+#include "remoting/protocol/test_event_matchers.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
-namespace remoting {
-
using ::testing::_;
+using ::testing::AllOf;
using ::testing::PrintToString;
+
+namespace remoting {
+
using protocol::MockInputStub;
using protocol::TouchEvent;
using protocol::TouchEventPoint;
+using protocol::test::EqualsTouchPointCoordinates;
+using protocol::test::EqualsTouchPointRadii;
namespace {
-// If the rounding error for the coordinates checked in TouchPoint* matcher are
-// within 1 pixel diff, it should be acceptable.
-const float kEpsilon = 1.0f;
-
-void LogNumTouchPointMismatchError(int expected_size, int actual_size) {
- DVLOG(1) << "Expected number of touch points (" << expected_size
- << ") does not match the actual size (" << actual_size << ").";
-}
-
-void LogPointMismatchError(const std::string& field_name,
- int point_index,
- float expected,
- float actual) {
- DVLOG(1) << "Point " << point_index << ": expected " << field_name
- << " to be " << expected << ", actual " << actual
- << " (not within rounding error grace " << kEpsilon << ").";
-}
-
-MATCHER_P(TouchPointCoordinateEqual,
- expected_event,
- "Expect point coordinates equal.") {
- if (arg.touch_points().size() != expected_event.touch_points().size()) {
- LogNumTouchPointMismatchError(expected_event.touch_points().size(),
- arg.touch_points().size());
- return false;
- }
-
- for (int i = 0; i < expected_event.touch_points().size(); ++i) {
- const TouchEventPoint& arg_point = arg.touch_points(i);
- const TouchEventPoint& expected_point = expected_event.touch_points(i);
- if (std::abs(expected_point.x() - arg_point.x()) >= kEpsilon) {
- LogPointMismatchError("X", i, expected_point.x(), arg_point.x());
- return false;
- }
-
- if (std::abs(expected_point.y() - arg_point.y()) >= kEpsilon) {
- LogPointMismatchError("Y", i, expected_point.y(), arg_point.y());
- return false;
- }
- }
- return true;
-}
-
-MATCHER_P(TouchPointRadiiEqual, expected_event, "Expected point radii equal.") {
- if (arg.touch_points().size() != expected_event.touch_points().size()) {
- LogNumTouchPointMismatchError(expected_event.touch_points().size(),
- arg.touch_points().size());
- return false;
- }
-
- for (int i = 0; i < expected_event.touch_points().size(); ++i) {
- const TouchEventPoint& arg_point = arg.touch_points(i);
- const TouchEventPoint& expected_point = expected_event.touch_points(i);
- if (std::abs(expected_point.radius_x() - arg_point.radius_x()) >=
- kEpsilon) {
- LogPointMismatchError("radius X", i, expected_point.radius_x(),
- arg_point.radius_x());
- return false;
- }
-
- if (std::abs(expected_point.radius_y() - arg_point.radius_y()) >=
- kEpsilon) {
- LogPointMismatchError("radius Y", i, expected_point.radius_y(),
- arg_point.radius_y());
- return false;
- }
- }
- return true;
-}
-
const float kDefaultRadius = 30.0f;
const float kDefaultXCoord = 1.0f;
const float kDefaultYCoord = 1.0f;
@@ -200,7 +135,7 @@ TEST_F(TouchInputScalerTest, NoClampingNoScaling) {
point->set_y(15.0f);
EXPECT_CALL(mock_stub_,
- InjectTouchEvent(TouchPointCoordinateEqual(expected_out)));
+ InjectTouchEvent(EqualsTouchPointCoordinates(expected_out)));
InjectTestTouchEvent();
}
@@ -218,7 +153,7 @@ TEST_F(TouchInputScalerTest, ClampingNoScaling) {
point->set_y(1.0f);
EXPECT_CALL(mock_stub_,
- InjectTouchEvent(TouchPointCoordinateEqual(expected_out)));
+ InjectTouchEvent(EqualsTouchPointCoordinates(expected_out)));
InjectTestTouchEvent();
}
@@ -253,7 +188,7 @@ TEST_F(TouchInputScalerTest, ClampingMultiplePointsNoScaling) {
point->set_y(59.0f);
EXPECT_CALL(mock_stub_,
- InjectTouchEvent(TouchPointCoordinateEqual(expected_out)));
+ InjectTouchEvent(EqualsTouchPointCoordinates(expected_out)));
InjectTestTouchEvent();
}
@@ -275,7 +210,7 @@ TEST_F(TouchInputScalerTest, UpScalingNoClamping) {
point->set_y(8.4f);
EXPECT_CALL(mock_stub_,
- InjectTouchEvent(TouchPointCoordinateEqual(expected_out)));
+ InjectTouchEvent(EqualsTouchPointCoordinates(expected_out)));
InjectTestTouchEvent();
}
@@ -291,7 +226,7 @@ TEST_F(TouchInputScalerTest, UpScalingWithClamping) {
point->set_y(39.0f);
EXPECT_CALL(mock_stub_,
- InjectTouchEvent(TouchPointCoordinateEqual(expected_out)));
+ InjectTouchEvent(EqualsTouchPointCoordinates(expected_out)));
InjectTestTouchEvent();
}
@@ -313,7 +248,7 @@ TEST_F(TouchInputScalerTest, DownScalingNoClamping) {
point->set_y(1.5f);
EXPECT_CALL(mock_stub_,
- InjectTouchEvent(TouchPointCoordinateEqual(expected_out)));
+ InjectTouchEvent(EqualsTouchPointCoordinates(expected_out)));
InjectTestTouchEvent();
}
@@ -344,7 +279,7 @@ TEST_F(TouchInputScalerTest, DownScalingWithClamping) {
point->set_y(3.0f);
EXPECT_CALL(mock_stub_,
- InjectTouchEvent(TouchPointCoordinateEqual(expected_out)));
+ InjectTouchEvent(EqualsTouchPointCoordinates(expected_out)));
InjectTestTouchEvent();
}
@@ -359,7 +294,8 @@ TEST_F(TouchInputScalerTest, UpScaleRadii) {
point->set_radius_x(2.0f);
point->set_radius_y(4.0f);
- EXPECT_CALL(mock_stub_, InjectTouchEvent(TouchPointRadiiEqual(expected_out)));
+ EXPECT_CALL(mock_stub_,
+ InjectTouchEvent(EqualsTouchPointRadii(expected_out)));
InjectTestTouchEvent();
}
@@ -374,7 +310,8 @@ TEST_F(TouchInputScalerTest, DownScaleRadii) {
point->set_radius_x(2.5f);
point->set_radius_y(2.0f);
- EXPECT_CALL(mock_stub_, InjectTouchEvent(TouchPointRadiiEqual(expected_out)));
+ EXPECT_CALL(mock_stub_,
+ InjectTouchEvent(EqualsTouchPointRadii(expected_out)));
InjectTestTouchEvent();
}
@@ -400,9 +337,9 @@ TEST_F(TouchInputScalerTest, UpScaleCoordinatesAndRadii) {
point->set_radius_x(16.0f);
point->set_radius_y(6.0f);
- EXPECT_CALL(mock_stub_, InjectTouchEvent(::testing::AllOf(
- TouchPointCoordinateEqual(expected_out),
- TouchPointRadiiEqual(expected_out))));
+ EXPECT_CALL(mock_stub_,
+ InjectTouchEvent(AllOf(EqualsTouchPointCoordinates(expected_out),
+ EqualsTouchPointRadii(expected_out))));
InjectTestTouchEvent();
}
@@ -428,9 +365,9 @@ TEST_F(TouchInputScalerTest, DownScaleCoordinatesAndRadii) {
point->set_radius_x(2.666f);
point->set_radius_y(1.0f);
- EXPECT_CALL(mock_stub_, InjectTouchEvent(::testing::AllOf(
- TouchPointCoordinateEqual(expected_out),
- TouchPointRadiiEqual(expected_out))));
+ EXPECT_CALL(mock_stub_,
+ InjectTouchEvent(AllOf(EqualsTouchPointCoordinates(expected_out),
+ EqualsTouchPointRadii(expected_out))));
InjectTestTouchEvent();
}
« no previous file with comments | « remoting/client/plugin/normalizing_input_filter_mac_unittest.cc ('k') | remoting/host/client_session_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698