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 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
|
// Copyright 2019 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/ash/media_client/media_client_impl.h"
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "ash/public/cpp/media_controller.h"
#include "ash/public/cpp/test/test_new_window_delegate.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/ash/extensions/media_player_api.h"
#include "chrome/browser/ash/login/users/fake_chrome_user_manager.h"
#include "chrome/browser/notifications/notification_display_service.h"
#include "chrome/browser/notifications/system_notification_helper.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/test/base/browser_with_test_window_test.h"
#include "chrome/test/base/testing_profile_manager.h"
#include "components/account_id/account_id.h"
#include "components/services/app_service/public/cpp/app_registry_cache.h"
#include "components/services/app_service/public/cpp/app_registry_cache_wrapper.h"
#include "components/services/app_service/public/cpp/app_types.h"
#include "components/user_manager/fake_user_manager.h"
#include "media/capture/video/video_capture_device_info.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "ui/base/accelerators/media_keys_listener.h"
// Gmock matchers and actions that are used below.
using ::testing::AnyOf;
namespace {
class TestMediaController : public ash::MediaController {
public:
TestMediaController() = default;
TestMediaController(const TestMediaController&) = delete;
TestMediaController& operator=(const TestMediaController&) = delete;
~TestMediaController() override = default;
// ash::MediaController:
void SetClient(ash::MediaClient* client) override {}
void SetForceMediaClientKeyHandling(bool enabled) override {
force_media_client_key_handling_ = enabled;
}
void NotifyCaptureState(
const base::flat_map<AccountId, ash::MediaCaptureState>& capture_states)
override {}
void NotifyVmMediaNotificationState(bool camera,
bool mic,
bool camera_and_mic) override {}
bool force_media_client_key_handling() const {
return force_media_client_key_handling_;
}
private:
bool force_media_client_key_handling_ = false;
};
class TestMediaKeysDelegate : public ui::MediaKeysListener::Delegate {
public:
TestMediaKeysDelegate() = default;
TestMediaKeysDelegate(const TestMediaKeysDelegate&) = delete;
TestMediaKeysDelegate& operator=(const TestMediaKeysDelegate&) = delete;
~TestMediaKeysDelegate() override = default;
void OnMediaKeysAccelerator(const ui::Accelerator& accelerator) override {
last_media_key_ = accelerator;
}
std::optional<ui::Accelerator> ConsumeLastMediaKey() {
std::optional<ui::Accelerator> key = last_media_key_;
last_media_key_.reset();
return key;
}
private:
std::optional<ui::Accelerator> last_media_key_;
};
class FakeNotificationDisplayService : public NotificationDisplayService {
public:
void Display(
NotificationHandler::Type notification_type,
const message_center::Notification& notification,
std::unique_ptr<NotificationCommon::Metadata> metadata) override {
show_called_times_++;
active_notifications_.insert_or_assign(notification.id(), notification);
}
void Close(NotificationHandler::Type notification_type,
const std::string& notification_id) override {
active_notifications_.erase(notification_id);
}
void GetDisplayed(DisplayedNotificationsCallback callback) override {}
void GetDisplayedForOrigin(const GURL& origin,
DisplayedNotificationsCallback callback) override {
}
void AddObserver(NotificationDisplayService::Observer* observer) override {}
void RemoveObserver(NotificationDisplayService::Observer* observer) override {
}
// Returns true if any existing notification contains `keywords` as a
// substring.
bool HasNotificationMessageContaining(const std::string& keywords) const {
const std::u16string keywords_u16 = base::UTF8ToUTF16(keywords);
for (const auto& [notification_id, notification] : active_notifications_) {
if (notification.message().find(keywords_u16) != std::u16string::npos) {
return true;
}
}
return false;
}
size_t NumberOfActiveNotifications() const {
return active_notifications_.size();
}
size_t show_called_times() const { return show_called_times_; }
void SimulateClick(const std::string& id, std::optional<int> button_idx) {
auto notification_iter = active_notifications_.find(id);
ASSERT_TRUE(notification_iter != active_notifications_.end());
message_center::Notification notification = notification_iter->second;
notification.delegate()->Click(button_idx, std::nullopt);
if (notification.rich_notification_data().remove_on_click) {
active_notifications_.erase(id);
}
}
private:
std::map<std::string, message_center::Notification> active_notifications_;
size_t show_called_times_ = 0;
};
class MockNewWindowDelegate
: public testing::NiceMock<ash::TestNewWindowDelegate> {
public:
// TestNewWindowDelegate:
MOCK_METHOD(void,
OpenUrl,
(const GURL& url, OpenUrlFrom from, Disposition disposition),
(override));
};
} // namespace
class MediaClientTest : public BrowserWithTestWindowTest {
public:
MediaClientTest() = default;
MediaClientTest(const MediaClientTest&) = delete;
MediaClientTest& operator=(const MediaClientTest&) = delete;
~MediaClientTest() override = default;
void SetUp() override {
BrowserWithTestWindowTest::SetUp();
alt_window_ = CreateBrowserWindow();
alt_browser_ = CreateBrowser(alt_profile(), Browser::TYPE_NORMAL, false,
alt_window_.get());
extensions::MediaPlayerAPI::Get(profile());
test_delegate_ = std::make_unique<TestMediaKeysDelegate>();
media_controller_resetter_ =
std::make_unique<ash::MediaController::ScopedResetterForTest>();
test_media_controller_ = std::make_unique<TestMediaController>();
media_client_ = std::make_unique<MediaClientImpl>();
media_client_->InitForTesting(test_media_controller_.get());
BrowserList::SetLastActive(browser());
ASSERT_FALSE(test_media_controller_->force_media_client_key_handling());
ASSERT_EQ(std::nullopt, delegate()->ConsumeLastMediaKey());
}
void TearDown() override {
media_client_.reset();
test_media_controller_.reset();
media_controller_resetter_.reset();
test_delegate_.reset();
alt_browser_->tab_strip_model()->CloseAllTabs();
alt_browser_.reset();
alt_window_.reset();
BrowserWithTestWindowTest::TearDown();
}
MediaClientImpl* client() { return media_client_.get(); }
TestMediaController* controller() { return test_media_controller_.get(); }
Profile* alt_profile() {
return profile()->GetPrimaryOTRProfile(/*create_if_needed=*/true);
}
Browser* alt_browser() { return alt_browser_.get(); }
TestMediaKeysDelegate* delegate() { return test_delegate_.get(); }
private:
std::unique_ptr<TestMediaKeysDelegate> test_delegate_;
std::unique_ptr<ash::MediaController::ScopedResetterForTest>
media_controller_resetter_;
std::unique_ptr<TestMediaController> test_media_controller_;
std::unique_ptr<MediaClientImpl> media_client_;
std::unique_ptr<Browser> alt_browser_;
std::unique_ptr<BrowserWindow> alt_window_;
};
class MediaClientAppUsingCameraTest : public testing::Test {
public:
MediaClientAppUsingCameraTest() = default;
void LaunchAppUsingCamera(int active_client_count) {
media_client_.active_camera_client_count_ = active_client_count;
}
void SetCameraHWPrivacySwitchState(
const std::string& device_id,
cros::mojom::CameraPrivacySwitchState state) {
media_client_.device_id_to_camera_privacy_switch_state_[device_id] = state;
}
// Adds the device with id `device_id` to the map of active devices. To
// display hardware switch notifications associated to this device, the device
// needs to be active.
void MakeDeviceActive(const std::string& device_id) {
media_client_
.devices_used_by_client_[cros::mojom::CameraClientType::CHROME] = {
device_id};
}
void OnActiveClientChange(
cros::mojom::CameraClientType type,
const base::flat_set<std::string>& active_device_ids,
int active_client_count) {
media_client_.devices_used_by_client_.insert_or_assign(type,
active_device_ids);
media_client_.active_camera_client_count_ = active_client_count;
media_client_.OnGetSourceInfosByActiveClientChanged(
active_device_ids,
video_capture::mojom::VideoSourceProvider::GetSourceInfosResult::
kSuccess,
video_capture_devices_);
}
void AttachCamera(const std::string& device_id,
const std::string& device_name) {
media::VideoCaptureDeviceInfo device_info;
device_info.descriptor.device_id = device_id;
device_info.descriptor.set_display_name(device_name);
video_capture_devices_.push_back(device_info);
}
// Detaches the most recently attached camera.
void DetachCamera() { video_capture_devices_.pop_back(); }
void ShowCameraOffNotification(const std::string& device_id,
const std::string& device_name) {
media_client_.ShowCameraOffNotification(device_id, device_name);
}
FakeNotificationDisplayService* SetSystemNotificationService() const {
std::unique_ptr<FakeNotificationDisplayService>
fake_notification_display_service =
std::make_unique<FakeNotificationDisplayService>();
FakeNotificationDisplayService* fake_notification_display_service_ptr =
fake_notification_display_service.get();
SystemNotificationHelper::GetInstance()->SetSystemServiceForTesting(
std::move(fake_notification_display_service));
return fake_notification_display_service_ptr;
}
protected:
// Has to be the first member as others are CHECKing the environment in their
// constructors.
content::BrowserTaskEnvironment task_environment_;
MediaClientImpl media_client_;
SystemNotificationHelper system_notification_helper_;
MockNewWindowDelegate new_window_delegate_;
std::vector<media::VideoCaptureDeviceInfo> video_capture_devices_;
};
TEST_F(MediaClientTest, HandleMediaAccelerators) {
const struct {
ui::Accelerator accelerator;
base::RepeatingClosure client_handler;
} kTestCases[] = {
{ui::Accelerator(ui::VKEY_MEDIA_PLAY_PAUSE, ui::EF_NONE),
base::BindRepeating(&MediaClientImpl::HandleMediaPlayPause,
base::Unretained(client()))},
{ui::Accelerator(ui::VKEY_MEDIA_PLAY, ui::EF_NONE),
base::BindRepeating(&MediaClientImpl::HandleMediaPlay,
base::Unretained(client()))},
{ui::Accelerator(ui::VKEY_MEDIA_PAUSE, ui::EF_NONE),
base::BindRepeating(&MediaClientImpl::HandleMediaPause,
base::Unretained(client()))},
{ui::Accelerator(ui::VKEY_MEDIA_STOP, ui::EF_NONE),
base::BindRepeating(&MediaClientImpl::HandleMediaStop,
base::Unretained(client()))},
{ui::Accelerator(ui::VKEY_MEDIA_NEXT_TRACK, ui::EF_NONE),
base::BindRepeating(&MediaClientImpl::HandleMediaNextTrack,
base::Unretained(client()))},
{ui::Accelerator(ui::VKEY_MEDIA_PREV_TRACK, ui::EF_NONE),
base::BindRepeating(&MediaClientImpl::HandleMediaPrevTrack,
base::Unretained(client()))},
{ui::Accelerator(ui::VKEY_OEM_103, ui::EF_NONE),
base::BindRepeating(&MediaClientImpl::HandleMediaSeekBackward,
base::Unretained(client()))},
{ui::Accelerator(ui::VKEY_OEM_104, ui::EF_NONE),
base::BindRepeating(&MediaClientImpl::HandleMediaSeekForward,
base::Unretained(client()))}};
for (auto& test : kTestCases) {
SCOPED_TRACE(::testing::Message()
<< "accelerator key:" << test.accelerator.key_code());
// Enable custom media key handling for the current browser. Ensure that
// the client set the override on the controller.
client()->EnableCustomMediaKeyHandler(profile(), delegate());
EXPECT_TRUE(controller()->force_media_client_key_handling());
// Simulate the media key and check that the delegate received it.
test.client_handler.Run();
EXPECT_EQ(test.accelerator, delegate()->ConsumeLastMediaKey());
// Change the active browser and ensure the override was disabled.
BrowserList::SetLastActive(alt_browser());
EXPECT_FALSE(controller()->force_media_client_key_handling());
// Simulate the media key and check that the delegate did not receive it.
test.client_handler.Run();
EXPECT_EQ(std::nullopt, delegate()->ConsumeLastMediaKey());
// Change the active browser back and ensure the override was enabled.
BrowserList::SetLastActive(browser());
EXPECT_TRUE(controller()->force_media_client_key_handling());
// Simulate the media key and check the delegate received it.
test.client_handler.Run();
EXPECT_EQ(test.accelerator, delegate()->ConsumeLastMediaKey());
// Disable custom media key handling for the current browser and ensure
// the override was disabled.
client()->DisableCustomMediaKeyHandler(profile(), delegate());
EXPECT_FALSE(controller()->force_media_client_key_handling());
// Simulate the media key and check the delegate did not receive it.
test.client_handler.Run();
EXPECT_EQ(std::nullopt, delegate()->ConsumeLastMediaKey());
}
}
TEST_F(MediaClientAppUsingCameraTest,
NotificationRemovedWhenSWSwitchChangedToON) {
const FakeNotificationDisplayService* notification_display_service =
SetSystemNotificationService();
EXPECT_EQ(notification_display_service->NumberOfActiveNotifications(), 0u);
// Launch an app. The notification shouldn't be displayed yet.
LaunchAppUsingCamera(/*active_client_count=*/1);
EXPECT_EQ(notification_display_service->NumberOfActiveNotifications(), 0u);
// Showing the camera notification, e.g. because the hardware privacy switch
// was toggled.
SetCameraHWPrivacySwitchState("device_id",
cros::mojom::CameraPrivacySwitchState::ON);
MakeDeviceActive("device_id");
ShowCameraOffNotification("device_id", "device_name");
// One notification should be displayed.
EXPECT_EQ(notification_display_service->NumberOfActiveNotifications(), 1u);
// Setting the software privacy switch to ON. The existing hardware switch
// notification should be removed.
media_client_.OnCameraSWPrivacySwitchStateChanged(
cros::mojom::CameraPrivacySwitchState::ON);
EXPECT_EQ(notification_display_service->NumberOfActiveNotifications(), 0u);
}
TEST_F(MediaClientAppUsingCameraTest, LearnMoreButtonInteraction) {
FakeNotificationDisplayService* notification_display_service =
SetSystemNotificationService();
EXPECT_EQ(notification_display_service->show_called_times(), 0u);
LaunchAppUsingCamera(/*active_client_count=*/1);
// Showing the camera notification, e.g. because the privacy switch was
// toggled.
SetCameraHWPrivacySwitchState("device_id",
cros::mojom::CameraPrivacySwitchState::ON);
MakeDeviceActive("device_id");
ShowCameraOffNotification("device_id", "device_name");
EXPECT_EQ(notification_display_service->NumberOfActiveNotifications(), 1u);
EXPECT_CALL(new_window_delegate_, OpenUrl).Times(1);
notification_display_service->SimulateClick(
"ash.media.camera.activity_with_privacy_switch_on.device_id", 0);
EXPECT_EQ(notification_display_service->NumberOfActiveNotifications(), 0u);
}
TEST_F(MediaClientAppUsingCameraTest,
NotificationRemovedWhenCameraDetachedOrInactive) {
FakeNotificationDisplayService* notification_display_service =
SetSystemNotificationService();
// No notification initially.
EXPECT_EQ(0u, notification_display_service->NumberOfActiveNotifications());
const std::string camera1 = "camera1";
const std::string camera1_name = "Fake camera 1";
const std::string camera2 = "camera2";
const std::string camera2_name = "Fake camera 2";
// Attach two cameras to the device. Both of the cameras have HW switch. Turn
// the HW switch ON for both of the devices.
AttachCamera(camera1, camera1_name);
SetCameraHWPrivacySwitchState(camera1,
cros::mojom::CameraPrivacySwitchState::ON);
AttachCamera(camera2, camera2_name);
SetCameraHWPrivacySwitchState(camera2,
cros::mojom::CameraPrivacySwitchState::ON);
// Still no notification.
EXPECT_EQ(notification_display_service->NumberOfActiveNotifications(), 0u);
// `CHROME` client starts accessing camera1. A hardware switch notification
// for camera1 should be displayed.
OnActiveClientChange(cros::mojom::CameraClientType::CHROME, {camera1}, 1);
EXPECT_EQ(1u, notification_display_service->NumberOfActiveNotifications());
EXPECT_TRUE(notification_display_service->HasNotificationMessageContaining(
camera1_name));
// `CHROME` client starts accessing camera2 as well. A hardware switch
// notification for camera2 should be displayed.
OnActiveClientChange(cros::mojom::CameraClientType::CHROME,
{camera1, camera2}, 1);
EXPECT_EQ(2u, notification_display_service->NumberOfActiveNotifications());
EXPECT_TRUE(notification_display_service->HasNotificationMessageContaining(
camera2_name));
// `CHROME` client stops accessing camera1. The respective notification should
// be removed.
OnActiveClientChange(cros::mojom::CameraClientType::CHROME, {camera2}, 1);
EXPECT_EQ(1u, notification_display_service->NumberOfActiveNotifications());
EXPECT_FALSE(notification_display_service->HasNotificationMessageContaining(
camera1_name));
// Detach camera2.
DetachCamera();
// `CHROME` client stops accessing camera2 as the camera is detached. The
// respective notification should be removed.
OnActiveClientChange(cros::mojom::CameraClientType::CHROME, {}, 0);
EXPECT_EQ(0u, notification_display_service->NumberOfActiveNotifications());
}
|