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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/views/media_router/presentation_receiver_window_view.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/media_router/presentation_receiver_window_delegate.h"
#include "chrome/browser/ui/views/location_bar/location_bar_view.h"
#include "chrome/browser/ui/views/location_bar/location_icon_view.h"
#include "chrome/browser/ui/views/media_router/presentation_receiver_window_frame.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_test.h"
#include "ui/base/ui_base_types.h"
#include "ui/events/event.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/views/view.h"
#include "url/gurl.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "ash/public/cpp/window_properties.h"
#include "ui/aura/client/aura_constants.h"
#include "ui/aura/window.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/views/widget/widget.h"
#endif
namespace {
using content::WebContents;
// Provides a WebContents for the PresentationReceiverWindowView to display and
// a window-close callback for the test to cleanly close the view.
class FakeReceiverDelegate final : public PresentationReceiverWindowDelegate {
public:
explicit FakeReceiverDelegate(Profile* profile)
: web_contents_(WebContents::Create(WebContents::CreateParams(profile))) {
}
FakeReceiverDelegate(const FakeReceiverDelegate&) = delete;
FakeReceiverDelegate& operator=(const FakeReceiverDelegate&) = delete;
void set_window_closed_callback(base::OnceClosure callback) {
closed_callback_ = std::move(callback);
}
// PresentationReceiverWindowDelegate overrides.
void WindowClosed() final {
if (closed_callback_) {
std::move(closed_callback_).Run();
}
}
content::WebContents* web_contents() const final {
return web_contents_.get();
}
private:
std::unique_ptr<content::WebContents> web_contents_;
base::OnceClosure closed_callback_;
};
class PresentationReceiverWindowViewBrowserTest : public InProcessBrowserTest {
public:
PresentationReceiverWindowViewBrowserTest(
const PresentationReceiverWindowViewBrowserTest&) = delete;
PresentationReceiverWindowViewBrowserTest& operator=(
const PresentationReceiverWindowViewBrowserTest&) = delete;
protected:
PresentationReceiverWindowViewBrowserTest() = default;
PresentationReceiverWindowView* CreateReceiverWindowView(
PresentationReceiverWindowDelegate* delegate,
const gfx::Rect& bounds) {
auto* frame =
new PresentationReceiverWindowFrame(Profile::FromBrowserContext(
delegate->web_contents()->GetBrowserContext()));
auto view =
std::make_unique<PresentationReceiverWindowView>(frame, delegate);
auto* view_raw = view.get();
frame->InitReceiverFrame(std::move(view), bounds);
view_raw->Init();
return view_raw;
}
void SetUpOnMainThread() override {
InProcessBrowserTest::SetUpOnMainThread();
fake_delegate_ =
std::make_unique<FakeReceiverDelegate>(browser()->profile());
receiver_view_ = CreateReceiverWindowView(fake_delegate_.get(), bounds_);
}
void TearDownOnMainThread() override {
base::RunLoop run_loop;
fake_delegate_->set_window_closed_callback(run_loop.QuitClosure());
receiver_view_->Close();
run_loop.Run();
fake_delegate_.reset();
InProcessBrowserTest::TearDownOnMainThread();
}
const gfx::Rect bounds_{100, 100};
std::unique_ptr<FakeReceiverDelegate> fake_delegate_;
raw_ptr<PresentationReceiverWindowView, AcrossTasksDanglingUntriaged>
receiver_view_ = nullptr;
};
#if BUILDFLAG(IS_CHROMEOS)
IN_PROC_BROWSER_TEST_F(PresentationReceiverWindowViewBrowserTest,
ChromeOSHardwareFullscreenButton) {
// Bypass ExclusiveAccessContext and default accelerator to simulate hardware
// window state button, which sets the native aura window to a "normal" state.
// Waits for the PresentationReceiverWindowView to enter or exit fullscreen.
// It waits for the location bar visibility to change rather than simply using
// RunLoop::RunUntilIdle because in Mash, the fullscreen change takes place in
// another process.
class FullscreenWaiter final {
public:
enum class AwaitType {
kOutOfFullscreen,
kIntoFullscreen,
};
FullscreenWaiter(PresentationReceiverWindowView* receiver_view,
AwaitType await_type,
base::OnceClosure fullscreen_callback)
: receiver_view_(receiver_view),
await_type_(await_type),
fullscreen_callback_(std::move(fullscreen_callback)) {
auto* location_bar_view = receiver_view_->location_bar_view();
subscription_ =
location_bar_view->AddVisibleChangedCallback(base::BindRepeating(
&FullscreenWaiter::OnViewVisibilityChanged,
base::Unretained(this), base::Unretained(location_bar_view)));
}
FullscreenWaiter(const FullscreenWaiter&) = delete;
FullscreenWaiter& operator=(const FullscreenWaiter&) = delete;
~FullscreenWaiter() = default;
private:
void OnViewVisibilityChanged(views::View* observed_view) {
bool fullscreen = !observed_view->GetVisible();
EXPECT_EQ(fullscreen, receiver_view_->IsFullscreen());
if (fullscreen == (await_type_ == AwaitType::kIntoFullscreen)) {
std::move(fullscreen_callback_).Run();
}
}
const raw_ptr<PresentationReceiverWindowView> receiver_view_;
base::CallbackListSubscription subscription_;
const AwaitType await_type_;
base::OnceClosure fullscreen_callback_;
};
{
base::RunLoop fullscreen_loop;
FullscreenWaiter waiter(receiver_view_,
FullscreenWaiter::AwaitType::kIntoFullscreen,
fullscreen_loop.QuitClosure());
receiver_view_->ShowInactiveFullscreen();
fullscreen_loop.Run();
ASSERT_TRUE(receiver_view_->IsFullscreen());
EXPECT_FALSE(receiver_view_->location_bar_view()->GetVisible());
}
{
base::RunLoop fullscreen_loop;
FullscreenWaiter waiter(receiver_view_,
FullscreenWaiter::AwaitType::kOutOfFullscreen,
fullscreen_loop.QuitClosure());
receiver_view_->GetWidget()->SetFullscreen(false);
fullscreen_loop.Run();
ASSERT_FALSE(receiver_view_->IsFullscreen());
EXPECT_TRUE(receiver_view_->location_bar_view()->GetVisible());
}
// Back to fullscreen with the hardware button.
{
base::RunLoop fullscreen_loop;
FullscreenWaiter waiter(receiver_view_,
FullscreenWaiter::AwaitType::kIntoFullscreen,
fullscreen_loop.QuitClosure());
receiver_view_->GetWidget()->SetFullscreen(true);
fullscreen_loop.Run();
ASSERT_TRUE(receiver_view_->IsFullscreen());
EXPECT_FALSE(receiver_view_->location_bar_view()->GetVisible());
}
}
#endif
IN_PROC_BROWSER_TEST_F(PresentationReceiverWindowViewBrowserTest,
LocationBarViewShown) {
receiver_view_->ShowInactiveFullscreen();
receiver_view_->ExitFullscreen();
ASSERT_FALSE(receiver_view_->IsFullscreen());
auto* location_bar_view = receiver_view_->location_bar_view();
EXPECT_TRUE(location_bar_view->IsDrawn());
EXPECT_LE(0, location_bar_view->x());
EXPECT_LE(0, location_bar_view->y());
EXPECT_LT(0, location_bar_view->width());
EXPECT_LT(0, location_bar_view->height());
}
IN_PROC_BROWSER_TEST_F(PresentationReceiverWindowViewBrowserTest,
ShowPageInfoDialog) {
content::NavigationController::LoadURLParams load_params(GURL("about:blank"));
fake_delegate_->web_contents()->GetController().LoadURLWithParams(
load_params);
receiver_view_->ShowInactiveFullscreen();
receiver_view_->ExitFullscreen();
ASSERT_FALSE(receiver_view_->IsFullscreen());
auto* location_icon_view =
receiver_view_->location_bar_view()->location_icon_view();
gfx::Rect local_bounds = location_icon_view->GetLocalBounds();
gfx::Point local_icon_center(local_bounds.x() + local_bounds.width() / 2,
local_bounds.y() + local_bounds.height() / 2);
ui::MouseEvent security_chip_press_event(
ui::EventType::kMousePressed, local_icon_center, local_icon_center,
base::TimeTicks(), ui::EF_LEFT_MOUSE_BUTTON, ui::EF_LEFT_MOUSE_BUTTON);
ui::MouseEvent security_chip_release_event(
ui::EventType::kMouseReleased, local_icon_center, local_icon_center,
base::TimeTicks(), ui::EF_LEFT_MOUSE_BUTTON, ui::EF_LEFT_MOUSE_BUTTON);
location_icon_view->OnMousePressed(security_chip_press_event);
location_icon_view->OnMouseReleased(security_chip_release_event);
EXPECT_TRUE(location_icon_view->IsBubbleShowing());
}
} // namespace
|