1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <Cocoa/Cocoa.h>
#include "base/functional/bind.h"
#include "components/input/render_widget_host_input_event_router.h"
#import "content/app_shim_remote_cocoa/render_widget_host_view_cocoa.h"
#include "content/browser/renderer_host/render_widget_host_view_mac.h"
#include "content/browser/site_per_process_browsertest.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test_utils.h"
#include "content/public/test/hit_test_region_observer.h"
#include "content/public/test/test_utils.h"
#include "content/test/render_document_feature.h"
#include "testing/gmock/include/gmock/gmock.h"
#import "third_party/ocmock/OCMock/OCMock.h"
#import "third_party/ocmock/ocmock_extensions.h"
namespace content {
namespace {
// Helper class for TextInputClientMac.
class TextInputClientMacHelper {
public:
TextInputClientMacHelper() {}
TextInputClientMacHelper(const TextInputClientMacHelper&) = delete;
TextInputClientMacHelper& operator=(const TextInputClientMacHelper&) = delete;
~TextInputClientMacHelper() {}
void WaitForStringFromRange(RenderWidgetHost* rwh, const gfx::Range& range) {
GetStringFromRangeForRenderWidget(
rwh, range,
base::BindOnce(&TextInputClientMacHelper::OnResult,
base::Unretained(this)));
loop_runner_ = new MessageLoopRunner();
loop_runner_->Run();
}
void WaitForStringAtPoint(RenderWidgetHost* rwh, const gfx::Point& point) {
GetStringAtPointForRenderWidget(
rwh, point,
base::BindOnce(&TextInputClientMacHelper::OnResult,
base::Unretained(this)));
loop_runner_ = new MessageLoopRunner();
loop_runner_->Run();
}
const std::string& word() const { return word_; }
const gfx::Point& point() const { return point_; }
private:
void OnResult(const std::string& string, const gfx::Point& point) {
if (!BrowserThread::CurrentlyOn(BrowserThread::UI)) {
GetUIThreadTaskRunner({})->PostTask(
FROM_HERE, base::BindOnce(&TextInputClientMacHelper::OnResult,
base::Unretained(this), string, point));
return;
}
word_ = string;
point_ = point;
if (loop_runner_ && loop_runner_->loop_running())
loop_runner_->Quit();
}
std::string word_;
gfx::Point point_;
scoped_refptr<MessageLoopRunner> loop_runner_;
};
} // namespace
// Site per process browser tests inside content which are specific to Mac OSX
// platform.
class SitePerProcessMacBrowserTest : public SitePerProcessBrowserTest {};
// This test will load a text only page inside a child frame and then queries
// the string range which includes the first word. Then it uses the returned
// point to query the text again and verifies that correct result is returned.
// Finally, the returned words are compared against the first word in the html
// file which is "This".
IN_PROC_BROWSER_TEST_P(SitePerProcessMacBrowserTest,
GetStringFromRangeAndPointChildFrame) {
GURL main_url(embedded_test_server()->GetURL(
"a.com", "/cross_site_iframe_factory.html?a(b)"));
EXPECT_TRUE(NavigateToURL(shell(), main_url));
FrameTreeNode* root = web_contents()->GetPrimaryFrameTree().root();
FrameTreeNode* child = root->child_at(0);
EXPECT_TRUE(NavigateToURLFromRenderer(
child, embedded_test_server()->GetURL("b.com", "/title1.html")));
web_contents()->GetPrimaryFrameTree().SetFocusedFrame(
child, web_contents()->GetSiteInstance()->group());
RenderWidgetHost* child_widget_host =
child->current_frame_host()->GetRenderWidgetHost();
TextInputClientMacHelper helper;
// Get string from range.
helper.WaitForStringFromRange(child_widget_host, gfx::Range(0, 4));
gfx::Point point = helper.point();
std::string word = helper.word();
// Now get it at a given point.
helper.WaitForStringAtPoint(child_widget_host, point);
EXPECT_EQ(word, helper.word());
EXPECT_EQ("This", word);
}
// This test will load a text only page and then queries the string range which
// includes the first word. Then it uses the returned point to query the text
// again and verifies that correct result is returned. Finally, the returned
// words are compared against the first word in the html file which is "This".
IN_PROC_BROWSER_TEST_P(SitePerProcessMacBrowserTest,
GetStringFromRangeAndPointMainFrame) {
GURL main_url(embedded_test_server()->GetURL("a.com", "/title1.html"));
EXPECT_TRUE(NavigateToURL(shell(), main_url));
FrameTreeNode* root = web_contents()->GetPrimaryFrameTree().root();
RenderWidgetHost* widget_host =
root->current_frame_host()->GetRenderWidgetHost();
web_contents()->GetPrimaryFrameTree().SetFocusedFrame(
root, web_contents()->GetSiteInstance()->group());
TextInputClientMacHelper helper;
// Get string from range.
helper.WaitForStringFromRange(widget_host, gfx::Range(0, 4));
gfx::Point point = helper.point();
std::string word = helper.word();
// Now get it at a given point.
helper.WaitForStringAtPoint(widget_host, point);
EXPECT_EQ(word, helper.word());
EXPECT_EQ("This", word);
}
// Ensure that the RWHVCF forwards wheel events with phase ending information.
// RWHVCF may see wheel events with phase ending information that have deltas
// of 0. These should not be dropped, otherwise MouseWheelEventQueue will not
// be informed that the user's gesture has ended.
// See crbug.com/628742
IN_PROC_BROWSER_TEST_P(SitePerProcessMacBrowserTest,
ForwardWheelEventsWithPhaseEndingInformation) {
GURL main_url(embedded_test_server()->GetURL(
"a.com", "/cross_site_iframe_factory.html?a(b)"));
EXPECT_TRUE(NavigateToURL(shell(), main_url));
FrameTreeNode* root = static_cast<WebContentsImpl*>(shell()->web_contents())
->GetPrimaryFrameTree()
.root();
ASSERT_EQ(1U, root->child_count());
FrameTreeNode* child_iframe_node = root->child_at(0);
RenderWidgetHost* child_rwh =
child_iframe_node->current_frame_host()->GetRenderWidgetHost();
InputEventAckWaiter gesture_scroll_begin_ack_observer(
child_rwh, base::BindRepeating([](blink::mojom::InputEventResultSource,
blink::mojom::InputEventResultState,
const blink::WebInputEvent& event) {
return event.GetType() ==
blink::WebInputEvent::Type::kGestureScrollBegin &&
!static_cast<const blink::WebGestureEvent&>(event)
.data.scroll_begin.synthetic;
}));
InputEventAckWaiter gesture_scroll_end_ack_observer(
child_rwh, base::BindRepeating([](blink::mojom::InputEventResultSource,
blink::mojom::InputEventResultState,
const blink::WebInputEvent& event) {
return event.GetType() ==
blink::WebInputEvent::Type::kGestureScrollEnd &&
!static_cast<const blink::WebGestureEvent&>(event)
.data.scroll_end.synthetic;
}));
RenderWidgetHostViewBase* child_rwhv =
static_cast<RenderWidgetHostViewBase*>(child_rwh->GetView());
blink::WebMouseWheelEvent scroll_event(
blink::WebInputEvent::Type::kMouseWheel,
blink::WebInputEvent::kNoModifiers,
blink::WebInputEvent::GetStaticTimeStampForTests());
scroll_event.SetPositionInWidget(1, 1);
scroll_event.delta_units = ui::ScrollGranularity::kScrollByPrecisePixel;
scroll_event.delta_x = 0.0f;
// Have the RWHVCF process a sequence of touchpad scroll events that contain
// phase informaiton. We start scrolling normally, then we fling.
// We wait for GestureScrollBegin/Ends that result from these wheel events.
// If we don't see them, this test will time out indicating failure.
// Begin scrolling.
scroll_event.delta_y = -1.0f;
scroll_event.phase = blink::WebMouseWheelEvent::kPhaseBegan;
scroll_event.momentum_phase = blink::WebMouseWheelEvent::kPhaseNone;
child_rwhv->ProcessMouseWheelEvent(scroll_event, ui::LatencyInfo());
gesture_scroll_begin_ack_observer.Wait();
scroll_event.delta_y = -2.0f;
scroll_event.phase = blink::WebMouseWheelEvent::kPhaseChanged;
scroll_event.momentum_phase = blink::WebMouseWheelEvent::kPhaseNone;
child_rwhv->ProcessMouseWheelEvent(scroll_event, ui::LatencyInfo());
// We now go into a fling.
scroll_event.delta_y = -2.0f;
scroll_event.phase = blink::WebMouseWheelEvent::kPhaseNone;
scroll_event.momentum_phase = blink::WebMouseWheelEvent::kPhaseBegan;
child_rwhv->ProcessMouseWheelEvent(scroll_event, ui::LatencyInfo());
scroll_event.delta_y = -2.0f;
scroll_event.phase = blink::WebMouseWheelEvent::kPhaseNone;
scroll_event.momentum_phase = blink::WebMouseWheelEvent::kPhaseChanged;
child_rwhv->ProcessMouseWheelEvent(scroll_event, ui::LatencyInfo());
// End of fling momentum.
scroll_event.delta_y = 0.0f;
scroll_event.phase = blink::WebMouseWheelEvent::kPhaseNone;
scroll_event.momentum_phase = blink::WebMouseWheelEvent::kPhaseEnded;
child_rwhv->ProcessMouseWheelEvent(scroll_event, ui::LatencyInfo());
gesture_scroll_end_ack_observer.Wait();
}
namespace {
id MockGestureEvent(NSEventType type,
double magnification,
int x,
int y,
NSEventPhase phase) {
id event = [OCMockObject mockForClass:[NSEvent class]];
NSPoint locationInWindow = NSMakePoint(x, y);
CGFloat deltaX = 0;
CGFloat deltaY = 0;
NSTimeInterval timestamp = 1;
NSUInteger modifierFlags = 0;
[(NSEvent*)[[event stub] andReturnValue:OCMOCK_VALUE(type)] type];
[(NSEvent*)[[event stub] andReturnValue:OCMOCK_VALUE(phase)] phase];
[(NSEvent*)[[event stub] andReturnValue:OCMOCK_VALUE(locationInWindow)]
locationInWindow];
[(NSEvent*)[[event stub] andReturnValue:OCMOCK_VALUE(deltaX)] deltaX];
[(NSEvent*)[[event stub] andReturnValue:OCMOCK_VALUE(deltaY)] deltaY];
[(NSEvent*)[[event stub] andReturnValue:OCMOCK_VALUE(timestamp)] timestamp];
[(NSEvent*)[[event stub] andReturnValue:OCMOCK_VALUE(modifierFlags)]
modifierFlags];
[(NSEvent*)[[event stub] andReturnValue:OCMOCK_VALUE(magnification)]
magnification];
return event;
}
void SendMacTouchpadPinchSequenceWithExpectedTarget(
RenderWidgetHostViewBase* root_view,
const gfx::Point& gesture_point,
raw_ptr<input::RenderWidgetHostViewInput>& router_touchpad_gesture_target,
RenderWidgetHostViewBase* expected_target) {
auto* root_view_mac = static_cast<RenderWidgetHostViewMac*>(root_view);
RenderWidgetHostViewCocoa* cocoa_view = root_view_mac->GetInProcessNSView();
NSEvent* pinchBeginEvent =
MockGestureEvent(NSEventTypeMagnify, 0, gesture_point.x(),
gesture_point.y(), NSEventPhaseBegan);
// We don't simply use magnifyWithEvent for the begin event because we need
// to ignore the pinch threshold by indicating this is a synthetic gesture.
[cocoa_view handleBeginGestureWithEvent:pinchBeginEvent
isSyntheticallyInjected:YES];
// We don't check the gesture target yet, since on mac the GesturePinchBegin
// isn't sent until the first PinchUpdate.
InputEventAckWaiter waiter(expected_target->GetRenderWidgetHost(),
blink::WebInputEvent::Type::kGesturePinchBegin);
NSEvent* pinchUpdateEvent =
MockGestureEvent(NSEventTypeMagnify, 0.25, gesture_point.x(),
gesture_point.y(), NSEventPhaseChanged);
[cocoa_view magnifyWithEvent:pinchUpdateEvent];
waiter.Wait();
EXPECT_EQ(expected_target, router_touchpad_gesture_target);
NSEvent* pinchEndEvent =
MockGestureEvent(NSEventTypeMagnify, 0, gesture_point.x(),
gesture_point.y(), NSEventPhaseEnded);
[cocoa_view magnifyWithEvent:pinchEndEvent];
EXPECT_EQ(nullptr, router_touchpad_gesture_target);
}
} // namespace
IN_PROC_BROWSER_TEST_P(SitePerProcessMacBrowserTest,
InputEventRouterTouchpadGestureTargetTest) {
GURL main_url(embedded_test_server()->GetURL(
"/frame_tree/page_with_positioned_nested_frames.html"));
EXPECT_TRUE(NavigateToURL(shell(), main_url));
WebContentsImpl* contents = web_contents();
FrameTreeNode* root = contents->GetPrimaryFrameTree().root();
ASSERT_EQ(1U, root->child_count());
GURL frame_url(
embedded_test_server()->GetURL("b.com", "/page_with_click_handler.html"));
EXPECT_TRUE(NavigateToURLFromRenderer(root->child_at(0), frame_url));
auto* child_frame_host = root->child_at(0)->current_frame_host();
// Synchronize with the child and parent renderers to guarantee that the
// surface information required for event hit testing is ready.
auto* rwhv_child =
static_cast<RenderWidgetHostViewBase*>(child_frame_host->GetView());
WaitForHitTestData(child_frame_host);
// All touches & gestures are sent to the main frame's view, and should be
// routed appropriately from there.
auto* rwhv_parent = static_cast<RenderWidgetHostViewBase*>(
contents->GetRenderWidgetHostView());
input::RenderWidgetHostInputEventRouter* router =
contents->GetInputEventRouter();
EXPECT_EQ(nullptr, router->touchpad_gesture_target_);
gfx::Point main_frame_point(25, 575);
gfx::Point child_center(150, 450);
// TODO(crbug.com/40578618): If we send multiple touchpad pinch sequences to
// separate views and the timing of the acks are such that the begin ack of
// the second sequence arrives in the root before the end ack of the first
// sequence, we would produce an invalid gesture event sequence. For now, we
// wait for the root to receive the end ack before sending a pinch sequence to
// a different view. The root view should preserve validity of input event
// sequences when processing acks from multiple views, so that waiting here is
// not necessary.
InputEventAckWaiter pinch_end_observer(
rwhv_parent->GetRenderWidgetHost(),
base::BindRepeating([](blink::mojom::InputEventResultSource,
blink::mojom::InputEventResultState,
const blink::WebInputEvent& event) {
return event.GetType() ==
blink::WebGestureEvent::Type::kGesturePinchEnd &&
!static_cast<const blink::WebGestureEvent&>(event)
.NeedsWheelEvent();
}));
// Send touchpad pinch sequence to main-frame.
SendMacTouchpadPinchSequenceWithExpectedTarget(
rwhv_parent, main_frame_point, router->touchpad_gesture_target_,
rwhv_parent);
pinch_end_observer.Wait();
// Send touchpad pinch sequence to child.
SendMacTouchpadPinchSequenceWithExpectedTarget(
rwhv_parent, child_center, router->touchpad_gesture_target_, rwhv_child);
}
INSTANTIATE_TEST_SUITE_P(All,
SitePerProcessMacBrowserTest,
testing::ValuesIn(RenderDocumentFeatureLevelValues()));
} // namespace content
|