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 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
|
// 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 <memory>
#include <string>
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/metrics/field_trial.h"
#include "base/metrics/field_trial_params.h"
#include "base/run_loop.h"
#include "base/test/scoped_feature_list.h"
#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
#include "chrome/browser/media/webrtc/media_capture_devices_dispatcher.h"
#include "chrome/browser/media/webrtc/media_stream_capture_indicator.h"
#include "chrome/browser/media/webrtc/media_stream_device_permissions.h"
#include "chrome/browser/media/webrtc/permission_bubble_media_access_handler.h"
#include "chrome/browser/media/webrtc/webrtc_browsertest_base.h"
#include "chrome/browser/permissions/permission_manager_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/tabs/tab_enums.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/content_settings/browser/page_specific_content_settings.h"
#include "components/content_settings/core/browser/host_content_settings_map.h"
#include "components/content_settings/core/common/features.h"
#include "components/permissions/content_setting_permission_context_base.h"
#include "components/permissions/contexts/camera_pan_tilt_zoom_permission_context.h"
#include "components/permissions/permission_manager.h"
#include "components/permissions/permission_request.h"
#include "components/permissions/permission_request_manager.h"
#include "components/permissions/permission_util.h"
#include "components/permissions/request_type.h"
#include "components/permissions/test/mock_permission_prompt_factory.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/mock_render_process_host.h"
#include "extensions/common/constants.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/mediastream/media_stream_request.h"
#include "third_party/blink/public/mojom/mediastream/media_stream.mojom.h"
using ::blink::mojom::MediaStreamRequestResult;
using ::content_settings::PageSpecificContentSettings;
class MediaStreamDevicesControllerTest : public WebRtcTestBase {
public:
MediaStreamDevicesControllerTest()
: example_audio_id_("fake_audio_dev"),
example_video_id_("fake_video_dev") {
// `kLeftHandSideActivityIndicators` should be disabled as it changes the UI
// of the camera/mic activity indicator. The new UI will be tested
// separately.
scoped_feature_list_.InitWithFeatures(
{}, {content_settings::features::kLeftHandSideActivityIndicators});
}
void OnMediaStreamResponse(
const blink::mojom::StreamDevicesSet& stream_devices_set,
MediaStreamRequestResult result,
std::unique_ptr<content::MediaStreamUI> ui) {
blink::MediaStreamDevices devices_list =
blink::ToMediaStreamDevicesList(stream_devices_set);
EXPECT_EQ(devices_list.empty(), !ui);
media_stream_devices_ = devices_list;
media_stream_result_ = result;
std::move(quit_closure_).Run();
}
protected:
enum DeviceType { DEVICE_TYPE_AUDIO, DEVICE_TYPE_VIDEO };
enum Access { ACCESS_ALLOWED, ACCESS_DENIED };
const GURL& example_url() const { return example_url_; }
PageSpecificContentSettings* GetContentSettings() {
return PageSpecificContentSettings::GetForFrame(
GetWebContents()->GetPrimaryMainFrame());
}
const std::string& example_audio_id() const { return example_audio_id_; }
const std::string& example_video_id() const { return example_video_id_; }
std::optional<MediaStreamRequestResult> media_stream_result() const {
return media_stream_result_;
}
void RequestPermissions(content::WebContents* web_contents,
const content::MediaStreamRequest& request) {
base::RunLoop run_loop;
ASSERT_TRUE(quit_closure_.is_null());
quit_closure_ = run_loop.QuitClosure();
permission_bubble_media_access_handler_->HandleRequest(
web_contents, request,
base::BindOnce(&MediaStreamDevicesControllerTest::OnMediaStreamResponse,
base::Unretained(this)),
nullptr);
run_loop.Run();
}
// Sets the device policy-controlled |access| for |example_url_| to be for the
// selected |device_type|.
void SetDevicePolicy(DeviceType device_type, Access access) {
PrefService* prefs = Profile::FromBrowserContext(
GetWebContents()->GetBrowserContext())->GetPrefs();
const char* policy_name = nullptr;
switch (device_type) {
case DEVICE_TYPE_AUDIO:
policy_name = prefs::kAudioCaptureAllowed;
break;
case DEVICE_TYPE_VIDEO:
policy_name = prefs::kVideoCaptureAllowed;
break;
}
prefs->SetBoolean(policy_name, access == ACCESS_ALLOWED);
}
// Set the content settings for mic/cam/ptz.
void SetContentSettings(ContentSetting mic_setting,
ContentSetting cam_setting,
ContentSetting ptz_setting) {
HostContentSettingsMap* content_settings =
HostContentSettingsMapFactory::GetForProfile(
Profile::FromBrowserContext(GetWebContents()->GetBrowserContext()));
content_settings->SetContentSettingDefaultScope(
example_url_, GURL(), ContentSettingsType::MEDIASTREAM_MIC,
mic_setting);
content_settings->SetContentSettingDefaultScope(
example_url_, GURL(), ContentSettingsType::MEDIASTREAM_CAMERA,
cam_setting);
content_settings->SetContentSettingDefaultScope(
example_url_, GURL(), ContentSettingsType::CAMERA_PAN_TILT_ZOOM,
ptz_setting);
}
// Checks whether the devices returned in OnMediaStreamResponse contains a
// microphone and/or camera device.
bool CheckDevicesListContains(blink::mojom::MediaStreamType type) {
for (const auto& device : media_stream_devices_) {
if (device.type == type) {
return true;
}
}
return false;
}
content::WebContents* GetWebContents() {
return browser()->tab_strip_model()->GetActiveWebContents();
}
// Creates a MediaStreamRequest, asking for those media types, which have a
// non-empty id string.
content::MediaStreamRequest CreateRequestWithType(
const std::string& audio_id,
const std::string& video_id,
bool request_pan_tilt_zoom_permission,
blink::MediaStreamRequestType request_type) {
blink::mojom::MediaStreamType audio_type =
audio_id.empty() ? blink::mojom::MediaStreamType::NO_SERVICE
: blink::mojom::MediaStreamType::DEVICE_AUDIO_CAPTURE;
blink::mojom::MediaStreamType video_type =
video_id.empty() ? blink::mojom::MediaStreamType::NO_SERVICE
: blink::mojom::MediaStreamType::DEVICE_VIDEO_CAPTURE;
if (!GetWebContents()
->GetPrimaryMainFrame()
->GetLastCommittedOrigin()
.GetURL()
.is_empty()) {
EXPECT_EQ(example_url().DeprecatedGetOriginAsURL(),
GetWebContents()
->GetPrimaryMainFrame()
->GetLastCommittedOrigin()
.GetURL());
}
int render_process_id = GetWebContents()
->GetPrimaryMainFrame()
->GetProcess()
->GetDeprecatedID();
int render_frame_id =
GetWebContents()->GetPrimaryMainFrame()->GetRoutingID();
return content::MediaStreamRequest(
render_process_id, render_frame_id, 0,
url::Origin::Create(example_url()), false, request_type,
/*requested_audio_device_ids=*/{audio_id},
/*requested_video_device_ids=*/{video_id}, audio_type, video_type,
/*disable_local_echo=*/false, request_pan_tilt_zoom_permission,
/*captured_surface_control_active=*/false);
}
content::MediaStreamRequest CreateRequest(
const std::string& audio_id,
const std::string& video_id,
bool request_pan_tilt_zoom_permission) {
return CreateRequestWithType(audio_id, video_id,
request_pan_tilt_zoom_permission,
blink::MEDIA_GENERATE_STREAM);
}
void InitWithUrl(const GURL& url) {
DCHECK(example_url_.is_empty());
example_url_ = url;
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), example_url_));
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().empty());
}
virtual media::VideoCaptureControlSupport GetControlSupport() const {
return media::VideoCaptureControlSupport();
}
permissions::MockPermissionPromptFactory* prompt_factory() {
return prompt_factory_.get();
}
void VerifyResultState(std::optional<MediaStreamRequestResult> result,
bool has_audio,
bool has_video) {
EXPECT_EQ(result, media_stream_result());
EXPECT_EQ(has_audio,
CheckDevicesListContains(
blink::mojom::MediaStreamType::DEVICE_AUDIO_CAPTURE));
EXPECT_EQ(has_video,
CheckDevicesListContains(
blink::mojom::MediaStreamType::DEVICE_VIDEO_CAPTURE));
}
void SetUpOnMainThread() override {
WebRtcTestBase::SetUpOnMainThread();
ASSERT_TRUE(embedded_test_server()->Start());
permission_bubble_media_access_handler_ =
std::make_unique<PermissionBubbleMediaAccessHandler>();
permissions::PermissionRequestManager* manager =
permissions::PermissionRequestManager::FromWebContents(
browser()->tab_strip_model()->GetActiveWebContents());
prompt_factory_ =
std::make_unique<permissions::MockPermissionPromptFactory>(manager);
// Cleanup.
media_stream_devices_.clear();
media_stream_result_.reset();
blink::MediaStreamDevices audio_devices;
blink::MediaStreamDevice fake_audio_device(
blink::mojom::MediaStreamType::DEVICE_AUDIO_CAPTURE, example_audio_id_,
"Fake Audio Device");
audio_devices.push_back(fake_audio_device);
MediaCaptureDevicesDispatcher::GetInstance()->SetTestAudioCaptureDevices(
audio_devices);
blink::MediaStreamDevices video_devices;
blink::MediaStreamDevice fake_video_device(
blink::mojom::MediaStreamType::DEVICE_VIDEO_CAPTURE, example_video_id_,
"Fake Video Device", GetControlSupport(),
media::MEDIA_VIDEO_FACING_NONE, std::nullopt);
video_devices.push_back(fake_video_device);
MediaCaptureDevicesDispatcher::GetInstance()->SetTestVideoCaptureDevices(
video_devices);
}
void TearDownOnMainThread() override {
permission_bubble_media_access_handler_.reset();
prompt_factory_.reset();
WebRtcTestBase::TearDownOnMainThread();
}
GURL example_url_;
const std::string example_audio_id_;
const std::string example_video_id_;
blink::MediaStreamDevices media_stream_devices_;
std::optional<MediaStreamRequestResult> media_stream_result_;
base::OnceClosure quit_closure_;
std::unique_ptr<permissions::MockPermissionPromptFactory> prompt_factory_;
std::unique_ptr<PermissionBubbleMediaAccessHandler>
permission_bubble_media_access_handler_;
base::test::ScopedFeatureList scoped_feature_list_;
};
class MediaStreamDevicesControllerPtzTest
: public MediaStreamDevicesControllerTest,
public ::testing::WithParamInterface<media::VideoCaptureControlSupport> {
protected:
media::VideoCaptureControlSupport GetControlSupport() const override {
return GetParam();
}
};
// Request and allow microphone access.
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest, RequestAndAllowMic) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
SetDevicePolicy(DEVICE_TYPE_AUDIO, ACCESS_ALLOWED);
// Ensure the prompt is accepted if necessary such that tab specific content
// settings are updated.
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(GetWebContents(),
CreateRequest(example_audio_id(), std::string(), false));
EXPECT_TRUE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_FALSE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().Has(
PageSpecificContentSettings::kMicrophoneAccessed));
}
// Request and allow camera access.
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest, RequestAndAllowCam) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
SetDevicePolicy(DEVICE_TYPE_VIDEO, ACCESS_ALLOWED);
// Ensure the prompt is accepted if necessary such that tab specific content
// settings are updated.
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(GetWebContents(),
CreateRequest(std::string(), example_video_id(), false));
EXPECT_TRUE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_FALSE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().Has(
PageSpecificContentSettings::kCameraAccessed));
}
// Request and block microphone access.
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest, RequestAndBlockMic) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
SetDevicePolicy(DEVICE_TYPE_AUDIO, ACCESS_DENIED);
// Ensure the prompt is accepted if necessary such that tab specific content
// settings are updated.
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(GetWebContents(),
CreateRequest(example_audio_id(), std::string(), false));
EXPECT_FALSE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_TRUE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().HasAll(
{PageSpecificContentSettings::kMicrophoneAccessed,
PageSpecificContentSettings::kMicrophoneBlocked}));
}
// Request and block camera access.
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest, RequestAndBlockCam) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
SetDevicePolicy(DEVICE_TYPE_VIDEO, ACCESS_DENIED);
// Ensure the prompt is accepted if necessary such that tab specific content
// settings are updated.
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(GetWebContents(),
CreateRequest(std::string(), example_video_id(), false));
EXPECT_FALSE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_TRUE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().HasAll(
{PageSpecificContentSettings::kCameraAccessed,
PageSpecificContentSettings::kCameraBlocked}));
}
// Request and allow microphone and camera access.
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
RequestAndAllowMicCam) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
SetDevicePolicy(DEVICE_TYPE_AUDIO, ACCESS_ALLOWED);
SetDevicePolicy(DEVICE_TYPE_VIDEO, ACCESS_ALLOWED);
// Ensure the prompt is accepted if necessary such that tab specific content
// settings are updated.
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(
GetWebContents(),
CreateRequest(example_audio_id(), example_video_id(), false));
EXPECT_TRUE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_FALSE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_TRUE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_FALSE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().HasAll(
{PageSpecificContentSettings::kMicrophoneAccessed,
PageSpecificContentSettings::kCameraAccessed}));
}
// Request and block microphone and camera access.
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
RequestAndBlockMicCam) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
SetDevicePolicy(DEVICE_TYPE_AUDIO, ACCESS_DENIED);
SetDevicePolicy(DEVICE_TYPE_VIDEO, ACCESS_DENIED);
// Ensure the prompt is accepted if necessary such that tab specific content
// settings are updated.
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(
GetWebContents(),
CreateRequest(example_audio_id(), example_video_id(), false));
EXPECT_FALSE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_TRUE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_FALSE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_TRUE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().HasAll(
{PageSpecificContentSettings::kMicrophoneAccessed,
PageSpecificContentSettings::kMicrophoneBlocked,
PageSpecificContentSettings::kCameraAccessed,
PageSpecificContentSettings::kCameraBlocked}));
}
// Request microphone and camera access. Camera is denied, thus everything
// must be denied.
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
RequestMicCamBlockCam) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
SetDevicePolicy(DEVICE_TYPE_AUDIO, ACCESS_ALLOWED);
SetDevicePolicy(DEVICE_TYPE_VIDEO, ACCESS_DENIED);
// Ensure the prompt is accepted if necessary such that tab specific content
// settings are updated.
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(
GetWebContents(),
CreateRequest(example_audio_id(), example_video_id(), false));
EXPECT_FALSE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_TRUE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_FALSE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_TRUE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().HasAll(
{PageSpecificContentSettings::kMicrophoneAccessed,
PageSpecificContentSettings::kMicrophoneBlocked,
PageSpecificContentSettings::kCameraAccessed,
PageSpecificContentSettings::kCameraBlocked}));
}
// Request microphone and camera access. Microphone is denied, thus everything
// must be denied.
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
RequestMicCamBlockMic) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
SetDevicePolicy(DEVICE_TYPE_AUDIO, ACCESS_DENIED);
SetDevicePolicy(DEVICE_TYPE_VIDEO, ACCESS_ALLOWED);
// Ensure the prompt is accepted if necessary such that tab specific content
// settings are updated.
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(
GetWebContents(),
CreateRequest(example_audio_id(), example_video_id(), false));
EXPECT_FALSE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_TRUE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_FALSE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_TRUE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().HasAll(
{PageSpecificContentSettings::kMicrophoneAccessed,
PageSpecificContentSettings::kMicrophoneBlocked,
PageSpecificContentSettings::kCameraAccessed,
PageSpecificContentSettings::kCameraBlocked}));
}
// Request microphone access. Requesting camera should not change microphone
// state.
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
RequestCamDoesNotChangeMic) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
// Request mic and deny.
SetDevicePolicy(DEVICE_TYPE_AUDIO, ACCESS_DENIED);
// Ensure the prompt is accepted if necessary such that tab specific content
// settings are updated.
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(GetWebContents(),
CreateRequest(example_audio_id(), std::string(), false));
EXPECT_FALSE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_TRUE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_MIC));
// Request cam and allow
SetDevicePolicy(DEVICE_TYPE_VIDEO, ACCESS_ALLOWED);
RequestPermissions(GetWebContents(),
CreateRequest(std::string(), example_video_id(), false));
EXPECT_TRUE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_FALSE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_CAMERA));
// Mic state should not have changed.
EXPECT_FALSE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_TRUE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_MIC));
}
// Denying mic access after camera access should still show the camera as state.
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
DenyMicDoesNotChangeCam) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
// Request cam and allow
SetDevicePolicy(DEVICE_TYPE_VIDEO, ACCESS_ALLOWED);
// Ensure the prompt is accepted if necessary such that tab specific content
// settings are updated.
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(GetWebContents(),
CreateRequest(std::string(), example_video_id(), false));
EXPECT_TRUE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_FALSE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().Has(
PageSpecificContentSettings::kCameraAccessed));
// Simulate that an a video stream is now being captured.
blink::mojom::StreamDevices devices;
devices.video_device = blink::MediaStreamDevice(
blink::mojom::MediaStreamType::DEVICE_VIDEO_CAPTURE, example_video_id(),
example_video_id());
MediaCaptureDevicesDispatcher* dispatcher =
MediaCaptureDevicesDispatcher::GetInstance();
dispatcher->SetTestVideoCaptureDevices({devices.video_device.value()});
std::unique_ptr<content::MediaStreamUI> video_stream_ui =
dispatcher->GetMediaStreamCaptureIndicator()->RegisterMediaStream(
GetWebContents(), devices);
video_stream_ui->OnStarted(base::RepeatingClosure(),
content::MediaStreamUI::SourceCallback(),
/*label=*/std::string(), /*screen_capture_ids=*/{},
content::MediaStreamUI::StateChangeCallback());
// Request mic and deny.
SetDevicePolicy(DEVICE_TYPE_AUDIO, ACCESS_DENIED);
// Ensure the prompt is accepted if necessary such that tab specific content
// settings are updated.
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(GetWebContents(),
CreateRequest(example_audio_id(), std::string(), false));
EXPECT_FALSE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_MIC));
EXPECT_TRUE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_MIC));
// Cam should still be included in the state.
EXPECT_TRUE(GetContentSettings()->IsContentAllowed(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_FALSE(GetContentSettings()->IsContentBlocked(
ContentSettingsType::MEDIASTREAM_CAMERA));
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().HasAll(
{PageSpecificContentSettings::kMicrophoneAccessed,
PageSpecificContentSettings::kMicrophoneBlocked,
PageSpecificContentSettings::kCameraAccessed}));
// After ending the camera capture, the camera permission is no longer
// relevant, so it should no be included in the mic/cam state.
video_stream_ui.reset();
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().HasAll(
{PageSpecificContentSettings::kMicrophoneAccessed,
PageSpecificContentSettings::kMicrophoneBlocked}));
}
// Stores the ContentSettings inputs for a particular test and has functions
// which return the expected outputs for that test.
struct ContentSettingsTestData {
// The initial value of the mic/cam/ptz content settings.
ContentSetting mic;
ContentSetting cam;
ContentSetting ptz;
// Whether the infobar should be accepted if it's shown.
bool accept_infobar;
// Whether the infobar should be displayed to request mic/cam/ptz for the
// given content settings inputs.
bool ExpectMicInfobar(
const media::VideoCaptureControlSupport& control_support) const {
if (cam == CONTENT_SETTING_BLOCK)
return false;
if (control_support.pan || control_support.tilt || control_support.zoom) {
if (ptz == CONTENT_SETTING_BLOCK)
return false;
}
return mic == CONTENT_SETTING_ASK;
}
bool ExpectCamInfobar(
const media::VideoCaptureControlSupport& control_support) const {
if (mic == CONTENT_SETTING_BLOCK)
return false;
if (control_support.pan || control_support.tilt || control_support.zoom) {
if (ptz == CONTENT_SETTING_BLOCK)
return false;
}
return cam == CONTENT_SETTING_ASK;
}
bool ExpectPtzInfobar(
const media::VideoCaptureControlSupport& control_support) const {
if (mic == CONTENT_SETTING_BLOCK || cam == CONTENT_SETTING_BLOCK)
return false;
if (!(control_support.pan || control_support.tilt || control_support.zoom))
return false;
return ptz == CONTENT_SETTING_ASK;
}
// Whether or not the mic/cam/ptz should be allowed after clicking accept/deny
// for the given inputs.
bool ExpectMicAllowed() const {
return mic == CONTENT_SETTING_ALLOW ||
(mic == CONTENT_SETTING_ASK && accept_infobar);
}
bool ExpectCamAllowed() const {
return cam == CONTENT_SETTING_ALLOW ||
(cam == CONTENT_SETTING_ASK && accept_infobar);
}
bool ExpectPtzAllowed() const {
return ptz == CONTENT_SETTING_ALLOW ||
(ptz == CONTENT_SETTING_ASK && accept_infobar);
}
// The expected media stream result after clicking accept/deny for the given
// inputs.
MediaStreamRequestResult ExpectedMediaStreamResult(
const media::VideoCaptureControlSupport& control_support) const {
if (ExpectMicAllowed() && ExpectCamAllowed()) {
if (!control_support.pan && !control_support.tilt &&
!control_support.zoom) {
return MediaStreamRequestResult::OK;
}
if (ptz != CONTENT_SETTING_BLOCK) {
return MediaStreamRequestResult::OK;
}
}
return MediaStreamRequestResult::PERMISSION_DENIED;
}
};
// Test all combinations of cam/mic content settings. Then tests the result of
// clicking both accept/deny on the infobar. Both cam/mic are requested.
IN_PROC_BROWSER_TEST_P(MediaStreamDevicesControllerPtzTest, ContentSettings) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
static const ContentSettingsTestData tests[] = {
// Settings that won't result in an infobar.
{CONTENT_SETTING_ALLOW, CONTENT_SETTING_ALLOW, CONTENT_SETTING_ALLOW,
false},
{CONTENT_SETTING_ALLOW, CONTENT_SETTING_ALLOW, CONTENT_SETTING_BLOCK,
false},
{CONTENT_SETTING_ALLOW, CONTENT_SETTING_BLOCK, CONTENT_SETTING_ALLOW,
false},
{CONTENT_SETTING_ALLOW, CONTENT_SETTING_BLOCK, CONTENT_SETTING_BLOCK,
false},
{CONTENT_SETTING_BLOCK, CONTENT_SETTING_ALLOW, CONTENT_SETTING_ALLOW,
false},
{CONTENT_SETTING_BLOCK, CONTENT_SETTING_ALLOW, CONTENT_SETTING_BLOCK,
false},
{CONTENT_SETTING_BLOCK, CONTENT_SETTING_BLOCK, CONTENT_SETTING_ALLOW,
false},
{CONTENT_SETTING_BLOCK, CONTENT_SETTING_BLOCK, CONTENT_SETTING_BLOCK,
false},
{CONTENT_SETTING_BLOCK, CONTENT_SETTING_ASK, CONTENT_SETTING_ASK, false},
{CONTENT_SETTING_ASK, CONTENT_SETTING_BLOCK, CONTENT_SETTING_ASK, false},
{CONTENT_SETTING_ASK, CONTENT_SETTING_ASK, CONTENT_SETTING_BLOCK, false},
// Settings that will result in an infobar. Test both accept and deny.
{CONTENT_SETTING_ALLOW, CONTENT_SETTING_ALLOW, CONTENT_SETTING_ASK,
false},
{CONTENT_SETTING_ALLOW, CONTENT_SETTING_ALLOW, CONTENT_SETTING_ASK, true},
{CONTENT_SETTING_ALLOW, CONTENT_SETTING_ASK, CONTENT_SETTING_ALLOW,
false},
{CONTENT_SETTING_ALLOW, CONTENT_SETTING_ASK, CONTENT_SETTING_ALLOW, true},
{CONTENT_SETTING_ASK, CONTENT_SETTING_ALLOW, CONTENT_SETTING_ASK, false},
{CONTENT_SETTING_ASK, CONTENT_SETTING_ALLOW, CONTENT_SETTING_ASK, true},
{CONTENT_SETTING_ALLOW, CONTENT_SETTING_ASK, CONTENT_SETTING_ASK, false},
{CONTENT_SETTING_ALLOW, CONTENT_SETTING_ASK, CONTENT_SETTING_ASK, true},
{CONTENT_SETTING_ASK, CONTENT_SETTING_ALLOW, CONTENT_SETTING_ASK, false},
{CONTENT_SETTING_ASK, CONTENT_SETTING_ALLOW, CONTENT_SETTING_ASK, true},
{CONTENT_SETTING_ASK, CONTENT_SETTING_ASK, CONTENT_SETTING_ALLOW, false},
{CONTENT_SETTING_ASK, CONTENT_SETTING_ASK, CONTENT_SETTING_ALLOW, true},
{CONTENT_SETTING_ASK, CONTENT_SETTING_ASK, CONTENT_SETTING_ASK, false},
{CONTENT_SETTING_ASK, CONTENT_SETTING_ASK, CONTENT_SETTING_ASK, true},
};
// Prevent automatic camera permission change when camera PTZ gets updated.
permissions::CameraPanTiltZoomPermissionContext*
camera_pan_tilt_zoom_permission_context =
static_cast<permissions::CameraPanTiltZoomPermissionContext*>(
PermissionManagerFactory::GetForProfile(
Profile::FromBrowserContext(
GetWebContents()->GetBrowserContext()))
->GetPermissionContextForTesting(
ContentSettingsType::CAMERA_PAN_TILT_ZOOM));
HostContentSettingsMap* content_settings =
HostContentSettingsMapFactory::GetForProfile(
Profile::FromBrowserContext(GetWebContents()->GetBrowserContext()));
content_settings->RemoveObserver(camera_pan_tilt_zoom_permission_context);
const auto& control_support = GetControlSupport();
for (auto& test : tests) {
SetContentSettings(test.mic, test.cam, test.ptz);
prompt_factory()->ResetCounts();
// Accept or deny the infobar if it's showing.
if (test.ExpectMicInfobar(control_support) ||
test.ExpectCamInfobar(control_support) ||
test.ExpectPtzInfobar(control_support)) {
if (test.accept_infobar) {
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
} else {
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::DENY_ALL);
}
} else {
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::NONE);
}
RequestPermissions(
GetWebContents(),
CreateRequest(example_audio_id(), example_video_id(), true));
ASSERT_LE(prompt_factory()->TotalRequestCount(), 3);
EXPECT_EQ(test.ExpectMicInfobar(control_support),
prompt_factory()->RequestTypeSeen(
permissions::RequestType::kMicStream));
EXPECT_EQ(test.ExpectCamInfobar(control_support),
prompt_factory()->RequestTypeSeen(
permissions::RequestType::kCameraStream));
EXPECT_EQ(test.ExpectPtzInfobar(control_support),
prompt_factory()->RequestTypeSeen(
permissions::RequestType::kCameraPanTiltZoom));
// Check the media stream result is expected and the devices returned are
// expected;
VerifyResultState(test.ExpectedMediaStreamResult(control_support),
test.ExpectMicAllowed() && test.ExpectCamAllowed() &&
(!(control_support.pan || control_support.tilt ||
control_support.zoom) ||
test.ptz != CONTENT_SETTING_BLOCK),
test.ExpectMicAllowed() && test.ExpectCamAllowed() &&
(!(control_support.pan || control_support.tilt ||
control_support.zoom) ||
test.ptz != CONTENT_SETTING_BLOCK));
}
}
INSTANTIATE_TEST_SUITE_P(
All,
MediaStreamDevicesControllerPtzTest,
::testing::Values(media::VideoCaptureControlSupport({false, false, false}),
media::VideoCaptureControlSupport({false, false, true}),
media::VideoCaptureControlSupport({true, true, true})));
// Request and allow camera access on WebUI pages without prompting.
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
WebUIRequestAndAllowCam) {
InitWithUrl(GURL(chrome::kChromeUIVersionURL));
RequestPermissions(GetWebContents(),
CreateRequest(std::string(), example_video_id(), false));
ASSERT_EQ(0, prompt_factory()->TotalRequestCount());
VerifyResultState(MediaStreamRequestResult::OK, false, true);
}
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
ExtensionRequestMicCam) {
std::string pdf_extension_page = std::string(extensions::kExtensionScheme) +
"://" + extension_misc::kPdfExtensionId +
"/index.html";
InitWithUrl(GURL(pdf_extension_page));
// Test that a prompt is required.
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(
GetWebContents(),
CreateRequest(example_audio_id(), example_video_id(), false));
ASSERT_EQ(2, prompt_factory()->TotalRequestCount());
ASSERT_TRUE(prompt_factory()->RequestTypeSeen(
permissions::RequestType::kCameraStream));
ASSERT_TRUE(
prompt_factory()->RequestTypeSeen(permissions::RequestType::kMicStream));
VerifyResultState(MediaStreamRequestResult::OK, true, true);
// Check that re-requesting allows without prompting.
prompt_factory()->ResetCounts();
RequestPermissions(
GetWebContents(),
CreateRequest(example_audio_id(), example_video_id(), false));
ASSERT_EQ(0, prompt_factory()->TotalRequestCount());
VerifyResultState(MediaStreamRequestResult::OK, true, true);
}
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
PepperRequestInsecure) {
InitWithUrl(GURL("http://www.example.com"));
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
RequestPermissions(
GetWebContents(),
CreateRequestWithType(example_audio_id(), example_video_id(), false,
blink::MEDIA_OPEN_DEVICE_PEPPER_ONLY));
ASSERT_EQ(0, prompt_factory()->TotalRequestCount());
VerifyResultState(MediaStreamRequestResult::PERMISSION_DENIED, false, false);
}
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest, WebContentsDestroyed) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
content::MediaStreamRequest request =
CreateRequest(example_audio_id(), example_video_id(), false);
// Simulate a destroyed RenderFrameHost.
request.render_frame_id = 0;
request.render_process_id = 0;
RequestPermissions(nullptr, request);
ASSERT_EQ(0, prompt_factory()->TotalRequestCount());
VerifyResultState(MediaStreamRequestResult::FAILED_DUE_TO_SHUTDOWN, false,
false);
}
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
WebContentsDestroyedDuringRequest) {
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
ui_test_utils::NavigateToURLWithDisposition(
browser(), GURL("about:blank"), WindowOpenDisposition::NEW_BACKGROUND_TAB,
ui_test_utils::BROWSER_TEST_WAIT_FOR_TAB);
prompt_factory()->set_response_type(
permissions::PermissionRequestManager::ACCEPT_ALL);
content::WebContents* prompt_contents = GetWebContents();
const int prompt_contents_index =
browser()->tab_strip_model()->GetIndexOfWebContents(prompt_contents);
// Now request permissions, but before the request is handled, destroy the
// tab.
permission_bubble_media_access_handler_->HandleRequest(
prompt_contents,
CreateRequest(example_audio_id(), example_video_id(), false),
base::BindOnce(
[](const blink::mojom::StreamDevicesSet& stream_devices_set,
MediaStreamRequestResult result,
std::unique_ptr<content::MediaStreamUI> ui) {
// The permission may be dismissed before we have a chance to delete
// the request.
EXPECT_EQ(MediaStreamRequestResult::PERMISSION_DISMISSED, result);
}),
nullptr);
// Since the mock prompt factory holds a reference to the
// PermissionRequestManager for the WebContents and uses that reference in its
// destructor, it has to be destroyed before the tab.
prompt_factory_.reset();
int previous_tab_count = browser()->tab_strip_model()->count();
browser()->tab_strip_model()->CloseWebContentsAt(
prompt_contents_index, TabCloseTypes::CLOSE_USER_GESTURE);
EXPECT_EQ(previous_tab_count - 1, browser()->tab_strip_model()->count());
base::RunLoop().RunUntilIdle();
VerifyResultState(std::nullopt, false, false);
}
// Request and block microphone and camera access with kill switch.
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
RequestAndKillSwitchMicCam) {
std::map<std::string, std::string> params;
params[permissions::PermissionUtil::GetPermissionString(
ContentSettingsType::MEDIASTREAM_MIC)] = permissions::
ContentSettingPermissionContextBase::kPermissionsKillSwitchBlockedValue;
params[permissions::PermissionUtil::GetPermissionString(
ContentSettingsType::MEDIASTREAM_CAMERA)] = permissions::
ContentSettingPermissionContextBase::kPermissionsKillSwitchBlockedValue;
base::AssociateFieldTrialParams(
permissions::ContentSettingPermissionContextBase::
kPermissionsKillSwitchFieldStudy,
"TestGroup", params);
base::FieldTrialList::CreateFieldTrial(
permissions::ContentSettingPermissionContextBase::
kPermissionsKillSwitchFieldStudy,
"TestGroup");
InitWithUrl(embedded_test_server()->GetURL("/simple.html"));
SetDevicePolicy(DEVICE_TYPE_AUDIO, ACCESS_ALLOWED);
SetDevicePolicy(DEVICE_TYPE_VIDEO, ACCESS_ALLOWED);
RequestPermissions(
GetWebContents(),
CreateRequest(example_audio_id(), example_video_id(), false));
ASSERT_EQ(0, prompt_factory()->TotalRequestCount());
VerifyResultState(MediaStreamRequestResult::KILL_SWITCH_ON, false, false);
}
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
RequestCamAndMicBlockedByPermissionsPolicy) {
InitWithUrl(embedded_test_server()->GetURL("/iframe_blank.html"));
// Create a cross-origin request by using localhost as the iframe origin.
GURL::Replacements replace_host;
replace_host.SetHostStr("localhost");
GURL cross_origin_url = embedded_test_server()
->GetURL("/simple.html")
.ReplaceComponents(replace_host);
content::NavigateIframeToURL(GetWebContents(), "test",
GURL(cross_origin_url));
content::RenderFrameHost* child_frame =
ChildFrameAt(GetWebContents()->GetPrimaryMainFrame(), 0);
content::MediaStreamRequest request =
CreateRequest(example_audio_id(), example_video_id(), false);
// Make the child frame the source of the request.
request.render_process_id = child_frame->GetProcess()->GetDeprecatedID();
request.render_frame_id = child_frame->GetRoutingID();
request.security_origin = child_frame->GetLastCommittedOrigin().GetURL();
RequestPermissions(GetWebContents(), request);
ASSERT_EQ(0, prompt_factory()->TotalRequestCount());
VerifyResultState(MediaStreamRequestResult::PERMISSION_DENIED, false, false);
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().empty());
}
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
RequestCamBlockedByPermissionsPolicy) {
InitWithUrl(embedded_test_server()->GetURL("/iframe_blank.html"));
// Create a cross-origin request by using localhost as the iframe origin.
GURL::Replacements replace_host;
replace_host.SetHostStr("localhost");
GURL cross_origin_url = embedded_test_server()
->GetURL("/simple.html")
.ReplaceComponents(replace_host);
content::NavigateIframeToURL(GetWebContents(), "test",
GURL(cross_origin_url));
content::RenderFrameHost* child_frame =
ChildFrameAt(GetWebContents()->GetPrimaryMainFrame(), 0);
content::MediaStreamRequest request =
CreateRequest(std::string(), example_video_id(), false);
// Make the child frame the source of the request.
request.render_process_id = child_frame->GetProcess()->GetDeprecatedID();
request.render_frame_id = child_frame->GetRoutingID();
request.security_origin = child_frame->GetLastCommittedOrigin().GetURL();
RequestPermissions(GetWebContents(), request);
ASSERT_EQ(0, prompt_factory()->TotalRequestCount());
VerifyResultState(MediaStreamRequestResult::PERMISSION_DENIED, false, false);
EXPECT_TRUE(GetContentSettings()->GetMicrophoneCameraState().empty());
}
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
PepperAudioRequestNoCamera) {
MediaCaptureDevicesDispatcher::GetInstance()->SetTestVideoCaptureDevices({});
InitWithUrl(GURL(chrome::kChromeUIVersionURL));
RequestPermissions(
GetWebContents(),
CreateRequestWithType(example_audio_id(), std::string(), false,
blink::MEDIA_OPEN_DEVICE_PEPPER_ONLY));
VerifyResultState(MediaStreamRequestResult::OK, true, false);
}
IN_PROC_BROWSER_TEST_F(MediaStreamDevicesControllerTest,
PepperVideoRequestNoMic) {
MediaCaptureDevicesDispatcher::GetInstance()->SetTestAudioCaptureDevices({});
InitWithUrl(GURL(chrome::kChromeUIVersionURL));
RequestPermissions(
GetWebContents(),
CreateRequestWithType(std::string(), example_video_id(), false,
blink::MEDIA_OPEN_DEVICE_PEPPER_ONLY));
VerifyResultState(MediaStreamRequestResult::OK, false, true);
}
|