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 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/renderer_host/render_widget_host_view_child_frame.h"
#include <stdint.h>
#include <memory>
#include <tuple>
#include <utility>
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/task_environment.h"
#include "build/build_config.h"
#include "components/input/child_frame_input_helper.h"
#include "components/viz/common/surfaces/parent_local_surface_id_allocator.h"
#include "components/viz/test/begin_frame_args_test.h"
#include "components/viz/test/fake_external_begin_frame_source.h"
#include "content/browser/gpu/compositor_util.h"
#include "content/browser/renderer_host/cross_process_frame_connector.h"
#include "content/browser/renderer_host/frame_token_message_queue.h"
#include "content/browser/renderer_host/frame_tree.h"
#include "content/browser/renderer_host/render_widget_host_delegate.h"
#include "content/browser/renderer_host/render_widget_host_factory.h"
#include "content/browser/renderer_host/render_widget_host_impl.h"
#include "content/browser/site_instance_group.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/site_instance.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/fake_frame_widget.h"
#include "content/public/test/mock_render_process_host.h"
#include "content/public/test/test_browser_context.h"
#include "content/public/test/test_image_transport_factory.h"
#include "content/public/test/test_web_contents_factory.h"
#include "content/test/mock_render_widget_host_delegate.h"
#include "content/test/mock_widget.h"
#include "content/test/test_render_view_host.h"
#include "content/test/test_render_widget_host.h"
#include "content/test/test_web_contents.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/frame/frame_visual_properties.h"
#include "third_party/blink/public/common/input/synthetic_web_input_event_builders.h"
#include "ui/base/ui_base_features.h"
#include "ui/compositor/compositor.h"
namespace content {
namespace {
const viz::LocalSurfaceId kArbitraryLocalSurfaceId(
1,
base::UnguessableToken::CreateForTesting(2, 3));
} // namespace
class MockChildFrameInputHelper : public input::ChildFrameInputHelper {
public:
explicit MockChildFrameInputHelper(input::RenderWidgetHostViewInput* view,
Delegate* delegate)
: ChildFrameInputHelper(view, delegate) {}
~MockChildFrameInputHelper() override = default;
bool BubbleScrollEvent(const blink::WebGestureEvent& event) override {
last_bubbled_event_type_ = event.GetType();
return can_bubble_;
}
blink::WebInputEvent::Type GetAndResetLastBubbledEventType() {
blink::WebInputEvent::Type last = last_bubbled_event_type_;
last_bubbled_event_type_ = blink::WebInputEvent::Type::kUndefined;
return last;
}
void SetCanBubble(bool can_bubble) { can_bubble_ = can_bubble; }
private:
blink::WebInputEvent::Type last_bubbled_event_type_ =
blink::WebInputEvent::Type::kUndefined;
bool can_bubble_ = true;
};
class MockFrameConnector : public CrossProcessFrameConnector {
public:
explicit MockFrameConnector() : CrossProcessFrameConnector(nullptr) {}
~MockFrameConnector() override = default;
void FirstSurfaceActivation(const viz::SurfaceInfo& surface_info) override {
last_surface_info_ = surface_info;
}
void SetViewportIntersection(
const gfx::Rect& viewport_intersection,
const gfx::Rect& main_frame_intersection,
const gfx::Rect& compositor_visible_rect,
blink::mojom::FrameOcclusionState occlusion_state) {
intersection_state_.viewport_intersection = viewport_intersection;
intersection_state_.main_frame_intersection = main_frame_intersection;
intersection_state_.compositor_visible_rect = compositor_visible_rect;
intersection_state_.occlusion_state = occlusion_state;
}
RenderWidgetHostViewBase* GetParentRenderWidgetHostView() override {
return nullptr;
}
viz::SurfaceInfo last_surface_info_;
};
class RenderWidgetHostViewChildFrameTest
: public RenderViewHostImplTestHarness {
public:
RenderWidgetHostViewChildFrameTest() {}
void SetUp() override {
RenderViewHostImplTestHarness::SetUp();
process_host_ = std::make_unique<MockRenderProcessHost>(browser_context());
site_instance_group_ =
base::WrapRefCounted(SiteInstanceGroup::CreateForTesting(
browser_context(), process_host_.get()));
int32_t routing_id = process_host_->GetNextRoutingID();
sink_ = &process_host_->sink();
// Create a RenderWidgetHostImpl which will be associated with an
// RenderWidgetHostViewChildFrame, to simulate what would be done for an
// OOPIF.
widget_host_ = RenderWidgetHostFactory::Create(
/*frame_tree=*/&contents()->GetPrimaryFrameTree(), &delegate_,
RenderWidgetHostImpl::DefaultFrameSinkId(*site_instance_group_,
routing_id),
site_instance_group_->GetSafeRef(), routing_id,
/*hidden=*/false, /*renderer_initiated_creation=*/false);
widget_host_->BindWidgetInterfaces(
mojo::AssociatedRemote<blink::mojom::WidgetHost>()
.BindNewEndpointAndPassDedicatedReceiver(),
widget_.GetNewRemote());
widget_host_->BindFrameWidgetInterfaces(
mojo::AssociatedRemote<blink::mojom::FrameWidgetHost>()
.BindNewEndpointAndPassDedicatedReceiver(),
TestRenderWidgetHost::CreateStubFrameWidgetRemote());
display::ScreenInfo screen_info;
screen_info.rect = gfx::Rect(1, 2, 3, 4);
display::ScreenInfos screen_infos(screen_info);
view_ = RenderWidgetHostViewChildFrame::Create(widget_host_.get(),
screen_infos);
// Set MockChildFrameInputHelper as `input_helper_` member variable.
view_->SetInputHelperForTesting(
std::make_unique<MockChildFrameInputHelper>(view_, nullptr));
// Test we get the expected ScreenInfo before the FrameDelegate is set.
EXPECT_EQ(screen_info, view_->GetScreenInfo());
EXPECT_EQ(screen_infos, view_->GetScreenInfos());
test_frame_connector_ = std::make_unique<MockFrameConnector>();
test_frame_connector_->SetView(view_, false);
view_->SetFrameConnector(test_frame_connector_.get());
}
void TearDown() override {
sink_ = nullptr;
if (view_) {
RenderWidgetHostViewChildFrame* local_view = view_;
view_ = nullptr;
local_view->Destroy();
}
widget_host_.reset();
site_instance_group_.reset();
process_host_->Cleanup();
test_frame_connector_.reset();
process_host_.reset();
RenderViewHostImplTestHarness::TearDown();
}
viz::SurfaceId GetSurfaceId() const {
return view_->last_activated_surface_info_.id();
}
viz::LocalSurfaceId GetLocalSurfaceId() const {
return GetSurfaceId().local_surface_id();
}
MockChildFrameInputHelper* GetMockInputHelper() {
return static_cast<MockChildFrameInputHelper*>(view_->input_helper_.get());
}
protected:
std::unique_ptr<MockRenderProcessHost> process_host_;
scoped_refptr<SiteInstanceGroup> site_instance_group_;
raw_ptr<IPC::TestSink> sink_ = nullptr;
MockRenderWidgetHostDelegate delegate_;
MockWidget widget_;
// Tests should set these to NULL if they've already triggered their
// destruction.
std::unique_ptr<RenderWidgetHostImpl> widget_host_;
raw_ptr<RenderWidgetHostViewChildFrame> view_ = nullptr;
std::unique_ptr<MockFrameConnector> test_frame_connector_;
};
TEST_F(RenderWidgetHostViewChildFrameTest, VisibilityTest) {
// Calling show and hide also needs to be propagated to child frame by the
// |frame_connector_| which itself requires a |frame_proxy_in_parent_renderer|
// (set to nullptr for MockFrameConnector). To avoid crashing the test
// |frame_connector_| is to set to nullptr.
view_->SetFrameConnector(nullptr);
view_->Show();
ASSERT_TRUE(view_->IsShowing());
view_->Hide();
ASSERT_FALSE(view_->IsShowing());
// Restore the MockFrameConnector to avoid a crash during destruction.
view_->SetFrameConnector(test_frame_connector_.get());
}
// Tests that the viewport intersection rect is dispatched to the RenderWidget
// whenever screen rects are updated.
TEST_F(RenderWidgetHostViewChildFrameTest, ViewportIntersectionUpdated) {
gfx::Rect intersection_rect(5, 5, 100, 80);
gfx::Rect main_frame_intersection(5, 10, 200, 200);
blink::mojom::FrameOcclusionState occlusion_state =
blink::mojom::FrameOcclusionState::kPossiblyOccluded;
test_frame_connector_->SetViewportIntersection(
intersection_rect, main_frame_intersection, intersection_rect,
occlusion_state);
MockRenderProcessHost* process =
static_cast<MockRenderProcessHost*>(widget_host_->GetProcess());
process->Init();
mojo::AssociatedRemote<blink::mojom::FrameWidgetHost> blink_frame_widget_host;
auto blink_frame_widget_host_receiver =
blink_frame_widget_host.BindNewEndpointAndPassDedicatedReceiver();
mojo::AssociatedRemote<blink::mojom::FrameWidget> blink_frame_widget;
auto blink_frame_widget_receiver =
blink_frame_widget.BindNewEndpointAndPassDedicatedReceiver();
widget_host_->BindFrameWidgetInterfaces(
std::move(blink_frame_widget_host_receiver), blink_frame_widget.Unbind());
FakeFrameWidget fake_frame_widget(std::move(blink_frame_widget_receiver));
widget_host_->RendererWidgetCreated(/*for_frame_widget=*/true);
base::RunLoop().RunUntilIdle();
widget_.ClearScreenRects();
base::RunLoop().RunUntilIdle();
auto& intersection_state = fake_frame_widget.GetIntersectionState();
EXPECT_EQ(gfx::Rect(intersection_rect),
intersection_state->viewport_intersection);
EXPECT_EQ(gfx::Rect(main_frame_intersection),
intersection_state->main_frame_intersection);
EXPECT_EQ(gfx::Rect(intersection_rect),
intersection_state->compositor_visible_rect);
EXPECT_EQ(static_cast<blink::mojom::FrameOcclusionState>(occlusion_state),
intersection_state->occlusion_state);
}
// Tests that moving the child around does not affect the physical backing size.
TEST_F(RenderWidgetHostViewChildFrameTest, CompositorViewportPixelSize) {
display::ScreenInfo screen_info;
screen_info.device_scale_factor = 2.0f;
blink::FrameVisualProperties visual_properties;
visual_properties.screen_infos = display::ScreenInfos(screen_info);
test_frame_connector_->SynchronizeVisualProperties(visual_properties, false);
gfx::Size local_frame_size(1276, 410);
test_frame_connector_->SetLocalFrameSize(local_frame_size);
EXPECT_EQ(local_frame_size, view_->GetCompositorViewportPixelSize());
gfx::Rect rect_in_parent_view(local_frame_size);
rect_in_parent_view.set_origin(gfx::Point(230, 263));
test_frame_connector_->SetRectInParentView(rect_in_parent_view);
EXPECT_EQ(local_frame_size, view_->GetCompositorViewportPixelSize());
EXPECT_EQ(gfx::Point(115, 131), view_->GetViewBounds().origin());
}
// Tests that SynchronizeVisualProperties is called only once and all the
// parameters change atomically.
TEST_F(RenderWidgetHostViewChildFrameTest,
SynchronizeVisualPropertiesOncePerChange) {
MockRenderProcessHost* process =
static_cast<MockRenderProcessHost*>(widget_host_->GetProcess());
process->Init();
widget_host_->RendererWidgetCreated(/*for_frame_widget=*/true);
constexpr gfx::Rect compositor_viewport_pixel_rect(100, 100);
constexpr gfx::Rect rect_in_local_root(compositor_viewport_pixel_rect);
viz::ParentLocalSurfaceIdAllocator allocator;
allocator.GenerateId();
viz::LocalSurfaceId local_surface_id = allocator.GetCurrentLocalSurfaceId();
blink::FrameVisualProperties visual_properties;
visual_properties.screen_infos = display::ScreenInfos(display::ScreenInfo());
visual_properties.rect_in_local_root = rect_in_local_root;
visual_properties.compositor_viewport = compositor_viewport_pixel_rect;
visual_properties.local_frame_size = compositor_viewport_pixel_rect.size();
visual_properties.capture_sequence_number = 123u;
visual_properties.local_surface_id = local_surface_id;
visual_properties.root_widget_viewport_segments.emplace_back(1, 2, 3, 4);
base::RunLoop().RunUntilIdle();
widget_.ClearVisualProperties();
test_frame_connector_->SynchronizeVisualProperties(visual_properties);
// Update to the renderer.
base::RunLoop().RunUntilIdle();
ASSERT_EQ(1u, widget_.ReceivedVisualProperties().size());
{
blink::VisualProperties sent_visual_properties =
widget_.ReceivedVisualProperties().at(0);
EXPECT_EQ(compositor_viewport_pixel_rect,
sent_visual_properties.compositor_viewport_pixel_rect);
EXPECT_EQ(rect_in_local_root.size(),
sent_visual_properties.new_size_device_px);
EXPECT_EQ(local_surface_id, sent_visual_properties.local_surface_id);
EXPECT_EQ(123u, sent_visual_properties.capture_sequence_number);
EXPECT_EQ(1u, sent_visual_properties.root_widget_viewport_segments.size());
EXPECT_EQ(gfx::Rect(1, 2, 3, 4),
sent_visual_properties.root_widget_viewport_segments[0]);
}
}
// Test that when we have a gesture scroll sequence that is not consumed by the
// child, the events are bubbled so that the parent may consume them.
TEST_F(RenderWidgetHostViewChildFrameTest, UncomsumedGestureScrollBubbled) {
blink::WebGestureEvent scroll_begin =
blink::SyntheticWebGestureEventBuilder::BuildScrollBegin(
0.f, 10.f, blink::WebGestureDevice::kTouchscreen);
blink::WebGestureEvent scroll_update =
blink::SyntheticWebGestureEventBuilder::BuildScrollUpdate(
0.f, 10.f, 0, blink::WebGestureDevice::kTouchscreen);
blink::WebGestureEvent scroll_end =
blink::SyntheticWebGestureEventBuilder::Build(
blink::WebInputEvent::Type::kGestureScrollEnd,
blink::WebGestureDevice::kTouchscreen);
view_->GestureEventAck(
scroll_begin, blink::mojom::InputEventResultSource::kCompositorThread,
blink::mojom::InputEventResultState::kNoConsumerExists);
EXPECT_EQ(blink::WebInputEvent::Type::kGestureScrollBegin,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
view_->GestureEventAck(
scroll_update, blink::mojom::InputEventResultSource::kCompositorThread,
blink::mojom::InputEventResultState::kNoConsumerExists);
EXPECT_EQ(blink::WebInputEvent::Type::kGestureScrollUpdate,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
view_->GestureEventAck(scroll_end,
blink::mojom::InputEventResultSource::kBrowser,
blink::mojom::InputEventResultState::kIgnored);
EXPECT_EQ(blink::WebInputEvent::Type::kGestureScrollEnd,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
}
// Test that when we have a gesture scroll sequence that is consumed by the
// child, the events are not bubbled to the parent.
TEST_F(RenderWidgetHostViewChildFrameTest, ConsumedGestureScrollNotBubbled) {
blink::WebGestureEvent scroll_begin =
blink::SyntheticWebGestureEventBuilder::BuildScrollBegin(
0.f, 10.f, blink::WebGestureDevice::kTouchscreen);
blink::WebGestureEvent scroll_update =
blink::SyntheticWebGestureEventBuilder::BuildScrollUpdate(
0.f, 10.f, 0, blink::WebGestureDevice::kTouchscreen);
blink::WebGestureEvent scroll_end =
blink::SyntheticWebGestureEventBuilder::Build(
blink::WebInputEvent::Type::kGestureScrollEnd,
blink::WebGestureDevice::kTouchscreen);
view_->GestureEventAck(
scroll_begin, blink::mojom::InputEventResultSource::kCompositorThread,
blink::mojom::InputEventResultState::kConsumed);
EXPECT_EQ(blink::WebInputEvent::Type::kUndefined,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
view_->GestureEventAck(
scroll_update, blink::mojom::InputEventResultSource::kCompositorThread,
blink::mojom::InputEventResultState::kConsumed);
EXPECT_EQ(blink::WebInputEvent::Type::kUndefined,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
// Scrolling in a child my reach its extent and no longer be consumed, however
// scrolling is latched to the child so we do not bubble the update.
view_->GestureEventAck(
scroll_update, blink::mojom::InputEventResultSource::kCompositorThread,
blink::mojom::InputEventResultState::kNoConsumerExists);
EXPECT_EQ(blink::WebInputEvent::Type::kUndefined,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
view_->GestureEventAck(scroll_end,
blink::mojom::InputEventResultSource::kBrowser,
blink::mojom::InputEventResultState::kIgnored);
EXPECT_EQ(blink::WebInputEvent::Type::kUndefined,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
}
// Test that the child does not continue to attempt to bubble scroll events if
// bubbling has failed for the current scroll gesture.
TEST_F(RenderWidgetHostViewChildFrameTest,
DoNotBubbleRemainingEventsOfRejectedScrollGesture) {
blink::WebGestureEvent scroll_begin =
blink::SyntheticWebGestureEventBuilder::BuildScrollBegin(
0.f, 10.f, blink::WebGestureDevice::kTouchscreen);
blink::WebGestureEvent scroll_update =
blink::SyntheticWebGestureEventBuilder::BuildScrollUpdate(
0.f, 10.f, 0, blink::WebGestureDevice::kTouchscreen);
blink::WebGestureEvent scroll_end =
blink::SyntheticWebGestureEventBuilder::Build(
blink::WebInputEvent::Type::kGestureScrollEnd,
blink::WebGestureDevice::kTouchscreen);
GetMockInputHelper()->SetCanBubble(false);
view_->GestureEventAck(
scroll_begin, blink::mojom::InputEventResultSource::kCompositorThread,
blink::mojom::InputEventResultState::kNoConsumerExists);
EXPECT_EQ(blink::WebInputEvent::Type::kGestureScrollBegin,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
// The GSB was rejected, so the child view must not attempt to bubble the
// remaining events of the scroll sequence.
view_->GestureEventAck(
scroll_update, blink::mojom::InputEventResultSource::kCompositorThread,
blink::mojom::InputEventResultState::kNoConsumerExists);
EXPECT_EQ(blink::WebInputEvent::Type::kUndefined,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
view_->GestureEventAck(scroll_end,
blink::mojom::InputEventResultSource::kBrowser,
blink::mojom::InputEventResultState::kIgnored);
EXPECT_EQ(blink::WebInputEvent::Type::kUndefined,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
GetMockInputHelper()->SetCanBubble(true);
// When we have a new scroll gesture, the view may try bubbling again.
view_->GestureEventAck(
scroll_begin, blink::mojom::InputEventResultSource::kCompositorThread,
blink::mojom::InputEventResultState::kNoConsumerExists);
EXPECT_EQ(blink::WebInputEvent::Type::kGestureScrollBegin,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
view_->GestureEventAck(
scroll_update, blink::mojom::InputEventResultSource::kCompositorThread,
blink::mojom::InputEventResultState::kNoConsumerExists);
EXPECT_EQ(blink::WebInputEvent::Type::kGestureScrollUpdate,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
view_->GestureEventAck(scroll_end,
blink::mojom::InputEventResultSource::kBrowser,
blink::mojom::InputEventResultState::kIgnored);
EXPECT_EQ(blink::WebInputEvent::Type::kGestureScrollEnd,
GetMockInputHelper()->GetAndResetLastBubbledEventType());
}
} // namespace content
|