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 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172
|
// 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.
// This file contains browsertests for Web Bluetooth that depend on behavior
// defined in chrome/, not just in content/.
#include <optional>
#include "base/command_line.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/metrics/field_trial.h"
#include "base/metrics/field_trial_params.h"
#include "base/run_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/with_feature_override.h"
#include "chrome/browser/bluetooth/bluetooth_chooser_context_factory.h"
#include "chrome/browser/bluetooth/chrome_bluetooth_delegate_impl_client.h"
#include "chrome/browser/bluetooth/web_bluetooth_test_utils.h"
#include "chrome/browser/chrome_content_browser_client.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/browser/ui/browser_dialogs.h"
#include "chrome/browser/ui/chooser_bubble_testapi.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/permissions/bluetooth_delegate_impl.h"
#include "components/permissions/content_setting_permission_context_base.h"
#include "components/permissions/contexts/bluetooth_chooser_context.h"
#include "components/variations/variations_associated_data.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_client.h"
#include "content/public/common/content_features.h"
#include "content/public/common/content_switches.h"
#include "content/public/test/bluetooth_test_utils.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_base.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_mock_cert_verifier.h"
#include "content/public/test/prerender_test_util.h"
#include "content/public/test/test_navigation_observer.h"
#include "content/public/test/test_utils.h"
#include "content/public/test/url_loader_interceptor.h"
#include "device/bluetooth/bluetooth_adapter.h"
#include "device/bluetooth/bluetooth_adapter_factory.h"
#include "device/bluetooth/bluetooth_device.h"
#include "device/bluetooth/bluetooth_gatt_characteristic.h"
#include "device/bluetooth/bluetooth_gatt_connection.h"
#include "device/bluetooth/bluetooth_gatt_notify_session.h"
#include "device/bluetooth/bluetooth_remote_gatt_characteristic.h"
#include "device/bluetooth/bluetooth_remote_gatt_service.h"
#include "device/bluetooth/public/cpp/bluetooth_uuid.h"
#include "device/bluetooth/test/mock_bluetooth_adapter.h"
#include "device/bluetooth/test/mock_bluetooth_device.h"
#include "device/bluetooth/test/mock_bluetooth_gatt_connection.h"
#include "device/bluetooth/test/mock_bluetooth_gatt_notify_session.h"
#include "device/bluetooth/test/mock_bluetooth_gatt_service.h"
#include "net/dns/mock_host_resolver.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h"
namespace {
using ::device::BluetoothGattCharacteristic;
constexpr char kDeviceAddress[] = "00:00:00:00:00:00";
constexpr char kDeviceAddress2[] = "00:00:00:00:00:01";
constexpr char kHeartRateUUIDString[] = "0000180d-0000-1000-8000-00805f9b34fb";
constexpr char kHeartRateMeasurementUUIDString[] =
"00001234-0000-1000-8000-00805f9b34fb";
const device::BluetoothUUID kHeartRateUUID(kHeartRateUUIDString);
const device::BluetoothUUID kHeartRateMeasurementUUID(
kHeartRateMeasurementUUIDString);
constexpr char kExampleUrl[] = "https://example.com";
class WebBluetoothTest : public InProcessBrowserTest {
public:
WebBluetoothTest() = default;
~WebBluetoothTest() override = default;
// Move-only class
WebBluetoothTest(const WebBluetoothTest&) = delete;
WebBluetoothTest& operator=(const WebBluetoothTest&) = delete;
protected:
void SetUpCommandLine(base::CommandLine* command_line) override {
// TODO(crbug.com/41229108): Remove this switch once Web Bluetooth is
// supported on Linux.
command_line->AppendSwitch(
switches::kEnableExperimentalWebPlatformFeatures);
mock_cert_verifier_.SetUpCommandLine(command_line);
}
void SetUpInProcessBrowserTestFixture() override {
mock_cert_verifier_.SetUpInProcessBrowserTestFixture();
}
void TearDownInProcessBrowserTestFixture() override {
mock_cert_verifier_.TearDownInProcessBrowserTestFixture();
}
void SetUpOnMainThread() override {
mock_cert_verifier_.mock_cert_verifier()->set_default_result(net::OK);
// Necessary to make content/test/data/cross_site_iframe_factory.html work.
host_resolver()->AddRule("*", "127.0.0.1");
// Web Bluetooth permissions are granted for an origin. The tests for Web
// Bluetooth permissions run code across a browser restart by splitting the
// tests into separate test cases where the test prefixed with PRE_ runs
// first. EmbeddedTestServer is not capable of maintaining a consistent
// origin across the separate tests, so URLLoaderInterceptor is used instead
// to intercept navigation requests and serve the test page. This enables
// the separate test cases to grant and check permissions for the same
// origin.
url_loader_interceptor_ =
std::make_unique<content::URLLoaderInterceptor>(base::BindRepeating(
[](content::URLLoaderInterceptor::RequestParams* params) {
if (params->url_request.url.host() == "example.com") {
content::URLLoaderInterceptor::WriteResponse(
"content/test/data/simple_page.html", params->client.get());
return true;
}
return false;
}));
adapter_ = base::MakeRefCounted<FakeBluetoothAdapter>();
global_values_ =
device::BluetoothAdapterFactory::Get()->InitGlobalOverrideValues();
global_values_->SetLESupported(true);
device::BluetoothAdapterFactory::SetAdapterForTesting(adapter_);
old_browser_client_ = content::SetBrowserClientForTesting(&browser_client_);
}
void TearDownOnMainThread() override {
content::SetBrowserClientForTesting(old_browser_client_);
url_loader_interceptor_.reset();
}
net::EmbeddedTestServer* CreateHttpsServer() {
https_server_ = std::make_unique<net::EmbeddedTestServer>(
net::EmbeddedTestServer::TYPE_HTTPS);
https_server_->ServeFilesFromSourceDirectory("content/test/data");
https_server_->AddDefaultHandlers();
https_server_->SetSSLConfig(net::EmbeddedTestServer::CERT_OK);
return https_server();
}
net::EmbeddedTestServer* https_server() { return https_server_.get(); }
void AddFakeDevice(const std::string& device_address) {
constexpr int kProperties = BluetoothGattCharacteristic::PROPERTY_READ |
BluetoothGattCharacteristic::PROPERTY_NOTIFY;
constexpr int kPermissions = BluetoothGattCharacteristic::PERMISSION_READ;
auto fake_device =
std::make_unique<FakeBluetoothDevice>(adapter_.get(), device_address);
fake_device->AddUUID(kHeartRateUUID);
auto fake_service =
std::make_unique<testing::NiceMock<device::MockBluetoothGattService>>(
fake_device.get(), kHeartRateUUIDString, kHeartRateUUID,
/*is_primary=*/true);
auto fake_characteristic =
std::make_unique<FakeBluetoothGattCharacteristic>(
fake_service.get(), kHeartRateMeasurementUUIDString,
kHeartRateMeasurementUUID, kProperties, kPermissions);
characteristic_ = fake_characteristic.get();
fake_service->AddMockCharacteristic(std::move(fake_characteristic));
fake_device->AddMockService(std::move(fake_service));
adapter_->AddMockDevice(std::move(fake_device));
}
void RemoveFakeDevice(const std::string& device_address) {
adapter_->RemoveMockDevice(device_address);
}
void SimulateDeviceAdvertisement(const std::string& device_address) {
adapter_->SimulateDeviceAdvertisementReceived(device_address);
}
void SetDeviceToSelect(const std::string& device_address) {
browser_client_.bluetooth_delegate()->SetDeviceToSelect(device_address);
}
void UseRealChooser() {
browser_client_.bluetooth_delegate()->UseRealChooser();
}
void CheckLastCommitedOrigin(const std::string& pattern) {
EXPECT_THAT(web_contents_->GetPrimaryMainFrame()
->GetLastCommittedOrigin()
.Serialize(),
testing::StartsWith(pattern));
}
std::unique_ptr<device::BluetoothAdapterFactory::GlobalOverrideValues>
global_values_;
scoped_refptr<FakeBluetoothAdapter> adapter_;
BluetoothTestContentBrowserClient browser_client_;
raw_ptr<content::ContentBrowserClient, AcrossTasksDanglingUntriaged>
old_browser_client_ = nullptr;
raw_ptr<FakeBluetoothGattCharacteristic, AcrossTasksDanglingUntriaged>
characteristic_ = nullptr;
raw_ptr<content::WebContents, AcrossTasksDanglingUntriaged> web_contents_ =
nullptr;
std::unique_ptr<content::URLLoaderInterceptor> url_loader_interceptor_;
// Web Bluetooth needs HTTPS to work (a secure context). Moreover,
// ContentMockCertVerifier is used to avoid HTTPS certificate errors.
std::unique_ptr<net::EmbeddedTestServer> https_server_;
content::ContentMockCertVerifier mock_cert_verifier_;
};
IN_PROC_BROWSER_TEST_F(WebBluetoothTest, WebBluetoothAfterCrash) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
// Make sure we can use Web Bluetooth after the tab crashes.
// Set up adapter with one device.
adapter_->SetIsPresent(false);
EXPECT_EQ(
"NotFoundError: Bluetooth adapter not available.",
content::EvalJs(
web_contents_.get(),
"navigator.bluetooth.requestDevice({filters: [{services: [0x180d]}]})"
" .catch(e => e.toString());"));
// Crash the renderer process.
content::RenderProcessHost* process =
web_contents_->GetPrimaryMainFrame()->GetProcess();
content::RenderProcessHostWatcher crash_observer(
process, content::RenderProcessHostWatcher::WATCH_FOR_PROCESS_EXIT);
process->Shutdown(0);
crash_observer.Wait();
// Reload tab.
chrome::Reload(browser(), WindowOpenDisposition::CURRENT_TAB);
EXPECT_TRUE(content::WaitForLoadStop(
browser()->tab_strip_model()->GetActiveWebContents()));
// Use Web Bluetooth again.
EXPECT_EQ(
"NotFoundError: Bluetooth adapter not available.",
content::EvalJs(
web_contents_.get(),
"navigator.bluetooth.requestDevice({filters: [{services: [0x180d]}]})"
" .catch(e => e.toString());"));
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTest, KillSwitchShouldBlock) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
// Turn on the global kill switch.
std::map<std::string, std::string> params;
params["Bluetooth"] = permissions::ContentSettingPermissionContextBase::
kPermissionsKillSwitchBlockedValue;
base::AssociateFieldTrialParams(
permissions::ContentSettingPermissionContextBase::
kPermissionsKillSwitchFieldStudy,
"TestGroup", params);
base::FieldTrialList::CreateFieldTrial(
permissions::ContentSettingPermissionContextBase::
kPermissionsKillSwitchFieldStudy,
"TestGroup");
std::string rejection =
content::EvalJs(
web_contents_.get(),
"navigator.bluetooth.requestDevice({filters: [{name: 'Hello'}]})"
" .then(() => 'Success',"
" reason => reason.name + ': ' + reason.message"
" );")
.ExtractString();
EXPECT_THAT(rejection,
testing::MatchesRegex("NotFoundError: .*globally disabled.*"));
}
// Tests that using Finch field trial parameters for blocklist additions has
// the effect of rejecting requestDevice calls.
IN_PROC_BROWSER_TEST_F(WebBluetoothTest, BlocklistShouldBlock) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
if (base::FieldTrialList::TrialExists("WebBluetoothBlocklist")) {
LOG(INFO) << "WebBluetoothBlocklist field trial already configured.";
ASSERT_NE(base::GetFieldTrialParamValue("WebBluetoothBlocklist",
"blocklist_additions")
.find("ed5f25a4"),
std::string::npos)
<< "ERROR: WebBluetoothBlocklist field trial being tested in\n"
"testing/variations/fieldtrial_testing_config_*.json must\n"
"include this test's random UUID 'ed5f25a4' in\n"
"blocklist_additions.\n";
} else {
LOG(INFO) << "Creating WebBluetoothBlocklist field trial for test.";
// Create a field trial with test parameter.
std::map<std::string, std::string> params;
params["blocklist_additions"] = "ed5f25a4:e";
base::AssociateFieldTrialParams("WebBluetoothBlocklist", "TestGroup",
params);
base::FieldTrialList::CreateFieldTrial("WebBluetoothBlocklist",
"TestGroup");
}
std::string rejection =
content::EvalJs(web_contents_.get(),
"navigator.bluetooth.requestDevice({filters: [{services: "
"[0xed5f25a4]}]})"
" .then(() => 'Success',"
" reason => reason.name + ': ' + reason.message"
" );")
.ExtractString();
EXPECT_THAT(rejection,
testing::MatchesRegex("SecurityError: .*blocklisted UUID.*"));
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTest, NavigateWithChooserCrossOrigin) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
UseRealChooser();
content::TestNavigationObserver observer(
web_contents_, 1 /* number_of_navigations */,
content::MessageLoopRunner::QuitMode::DEFERRED);
auto waiter = test::ChooserBubbleUiWaiter::Create();
EXPECT_TRUE(content::ExecJs(
web_contents_.get(),
"navigator.bluetooth.requestDevice({filters: [{name: 'Hello'}]})",
content::EXECUTE_SCRIPT_NO_RESOLVE_PROMISES));
// Wait for the chooser to be displayed before navigating to avoid a race
// between the two IPCs.
waiter->WaitForChange();
EXPECT_TRUE(waiter->has_shown());
ASSERT_TRUE(
ui_test_utils::NavigateToURL(browser(), GURL("https://google.com")));
observer.Wait();
waiter->WaitForChange();
EXPECT_TRUE(waiter->has_closed());
EXPECT_EQ(GURL("https://google.com"), web_contents_->GetLastCommittedURL());
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTest, ShowChooserInBackgroundTab) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
UseRealChooser();
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
// Create a new foreground tab that covers |web_contents|.
ui_test_utils::NavigateToURLWithDisposition(
browser(), GURL(kExampleUrl), WindowOpenDisposition::NEW_FOREGROUND_TAB,
ui_test_utils::BROWSER_TEST_WAIT_FOR_LOAD_STOP);
// Try to show the chooser in the background tab.
EXPECT_EQ("NotFoundError: User cancelled the requestDevice() chooser.",
content::EvalJs(web_contents,
R"((async () => {
try {
await navigator.bluetooth.requestDevice({ filters: [{name: 'Hello'}] });
return "Expected error, got success.";
} catch (e) {
return `${e.name}: ${e.message}`;
}
})())"));
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTest, NotificationStartValueChangeRead) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
AddFakeDevice(kDeviceAddress);
ASSERT_TRUE(characteristic_);
characteristic_->DeferReadUntilNotificationStart();
SetDeviceToSelect(kDeviceAddress);
auto js_values = content::EvalJs(web_contents_.get(), R"((async () => {
const kHeartRateMeasurementUUID = '00001234-0000-1000-8000-00805f9b34fb';
const device = await navigator.bluetooth.requestDevice(
{filters: [{name: 'Test Device', services: ['heart_rate']}]});
const gatt = await device.gatt.connect();
const service = await gatt.getPrimaryService('heart_rate');
const characteristic =
await service.getCharacteristic(kHeartRateMeasurementUUID);
const readPromise = (async () => {
const dataview = await characteristic.readValue();
return dataview.getUint8(0);
})();
const notifyCharacteristic = await characteristic.startNotifications();
const notifyPromise = new Promise(resolve => {
notifyCharacteristic.addEventListener(
'characteristicvaluechanged', event => {
resolve(event.target.value.getUint8(0));
});
});
return Promise.all([readPromise, notifyPromise]);
})())");
const base::Value::List promise_values = js_values.ExtractList();
EXPECT_EQ(2U, promise_values.size());
EXPECT_EQ(content::ListValueOf(1, 1), js_values);
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTest, NotificationStartValueChangeNotify) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
AddFakeDevice(kDeviceAddress);
ASSERT_TRUE(characteristic_);
characteristic_->EmitChangeNotificationAtNotificationStart();
SetDeviceToSelect(kDeviceAddress);
EXPECT_EQ(1, content::EvalJs(web_contents_.get(), R"((async () => {
const kHeartRateMeasurementUUID = '00001234-0000-1000-8000-00805f9b34fb';
const device = await navigator.bluetooth.requestDevice(
{filters: [{name: 'Test Device', services: ['heart_rate']}]});
const gatt = await device.gatt.connect();
const service = await gatt.getPrimaryService('heart_rate');
const characteristic =
await service.getCharacteristic(kHeartRateMeasurementUUID);
const notifyCharacteristic = await characteristic.startNotifications();
return new Promise((resolve) => {
notifyCharacteristic.addEventListener(
'characteristicvaluechanged', event => {
const value = event.target.value.getUint8(0);
resolve(value);
});
});
})())"));
}
// The Web Bluetooth Permissions Policy tests should work with the
// WebBluetoothNewPermissionsBackend feature flag being either enabled or
// disabled.
class WebBluetoothPermissionsPolicyTest
: public base::test::WithFeatureOverride,
public WebBluetoothTest {
public:
WebBluetoothPermissionsPolicyTest()
: base::test::WithFeatureOverride(
features::kWebBluetoothNewPermissionsBackend) {}
void SetUpCommandLine(base::CommandLine* command_line) override {
WebBluetoothTest::SetUpCommandLine(command_line);
command_line->AppendSwitchASCII(switches::kEnableBlinkFeatures,
"WebBluetoothGetDevices");
}
content::EvalJsResult InvokeRequestDevice(
const content::ToRenderFrameHost& adapter) {
return content::EvalJs(adapter, R"((async () => {
try {
const device = await navigator.bluetooth.requestDevice(
{filters: [{name: 'Test Device', services: ['heart_rate']}]});
return [ device.id ];
} catch(e) {
return `${e.name}: ${e.message}`;
}
})())");
}
content::EvalJsResult InvokeGetDevices(
const content::ToRenderFrameHost& adapter) {
return content::EvalJs(adapter, R"((async () => {
try {
const devices = await navigator.bluetooth.getDevices(
{filters: [{name: 'Test Device', services: ['heart_rate']}]});
return devices.map(device => device.id);
} catch(e) {
return `${e.name}: ${e.message}`;
}
})())");
}
};
INSTANTIATE_FEATURE_OVERRIDE_TEST_SUITE(WebBluetoothPermissionsPolicyTest);
IN_PROC_BROWSER_TEST_P(WebBluetoothPermissionsPolicyTest,
ThrowSecurityWhenIFrameIsDisallowed) {
ASSERT_TRUE(CreateHttpsServer()->Start());
AddFakeDevice(kDeviceAddress);
SetDeviceToSelect(kDeviceAddress);
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
GURL outer_url = https_server()->GetURL(
"outer.com", "/cross_site_iframe_factory.html?outer(inner())");
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), outer_url));
// Attempting to access bluetooth devices from a disallowed iframe should
// throw a SecurityError.
content::EvalJsResult inner_device_error = InvokeGetDevices(
content::ChildFrameAt(web_contents_->GetPrimaryMainFrame(), 0));
EXPECT_EQ(
"SecurityError: Failed to execute 'getDevices' on 'Bluetooth': Access to "
"the feature \"bluetooth\" is disallowed by permissions policy.",
inner_device_error);
}
IN_PROC_BROWSER_TEST_P(WebBluetoothPermissionsPolicyTest,
AllowedChildFrameShouldHaveAccessToParentDevices) {
ASSERT_TRUE(CreateHttpsServer()->Start());
AddFakeDevice(kDeviceAddress);
SetDeviceToSelect(kDeviceAddress);
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
GURL outer_url = https_server()->GetURL(
"outer.com",
"/cross_site_iframe_factory.html?outer(inner{allow-bluetooth}())");
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), outer_url));
// The inner frame should have access to the same devices that the main page
// has requested.
content::EvalJsResult outer_device_id =
InvokeRequestDevice(web_contents_.get());
content::EvalJsResult inner_device_id = InvokeGetDevices(
content::ChildFrameAt(web_contents_->GetPrimaryMainFrame(), 0));
ASSERT_TRUE(outer_device_id.value.is_list()) << outer_device_id.value;
ASSERT_TRUE(inner_device_id.value.is_list()) << inner_device_id.value;
EXPECT_EQ(outer_device_id.ExtractList(), inner_device_id.ExtractList());
// If we navigate the main frame to inner.com, it should lose access to the
// outer.com devices.
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
GURL inner_url = https_server()->GetURL("inner.com", "/simple_page.html");
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), inner_url));
content::EvalJsResult inner_device_id_after_navigation =
InvokeGetDevices(web_contents_.get());
// Expect an empty list.
EXPECT_EQ(base::Value(base::Value::List()), inner_device_id_after_navigation);
}
IN_PROC_BROWSER_TEST_P(WebBluetoothPermissionsPolicyTest,
ParentShouldHaveAccessToAllowedChildFrameDevices) {
ASSERT_TRUE(CreateHttpsServer()->Start());
AddFakeDevice(kDeviceAddress);
SetDeviceToSelect(kDeviceAddress);
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
GURL outer_url = https_server()->GetURL(
"outer.com",
"/cross_site_iframe_factory.html?outer(inner{allow-bluetooth}())");
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), outer_url));
// The main page should have access to the same devices that the inner frame
// has requested.
content::EvalJsResult inner_device_id = InvokeRequestDevice(
content::ChildFrameAt(web_contents_->GetPrimaryMainFrame(), 0));
content::EvalJsResult outer_device_id = InvokeGetDevices(web_contents_.get());
ASSERT_TRUE(outer_device_id.value.is_list()) << outer_device_id.value;
ASSERT_TRUE(inner_device_id.value.is_list()) << inner_device_id.value;
EXPECT_EQ(outer_device_id.ExtractList(), inner_device_id.ExtractList());
}
// The new Web Bluetooth permissions backend is currently implemented behind a
// feature flag.
// TODO(crbug.com/40458188): Delete this class and convert all the tests
// using it to use WebBluetoothTest instead.
class WebBluetoothTestWithNewPermissionsBackendEnabled
: public WebBluetoothTest {
public:
WebBluetoothTestWithNewPermissionsBackendEnabled() {
feature_list_.InitAndEnableFeature(
features::kWebBluetoothNewPermissionsBackend);
}
// Move-only class
WebBluetoothTestWithNewPermissionsBackendEnabled(
const WebBluetoothTestWithNewPermissionsBackendEnabled&) = delete;
WebBluetoothTestWithNewPermissionsBackendEnabled& operator=(
const WebBluetoothTestWithNewPermissionsBackendEnabled&) = delete;
void SetUp() override {
// Called to prevent flakiness that may arise from changes in the window
// visibility. WebBluetoothServiceImpl may clear up its WatchAdvertisement
// client lists before being able to simulate the device advertisement when
// the window visibility changes or lose focus, resulting in timeouts from
// promises that never resolve. This function prevents this clean up from
// happening.
content::IgnoreBluetoothVisibilityRequirementsForTesting();
WebBluetoothTest::SetUp();
}
protected:
base::test::ScopedFeatureList feature_list_;
};
IN_PROC_BROWSER_TEST_F(WebBluetoothTestWithNewPermissionsBackendEnabled,
PRE_WebBluetoothPersistentIds) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
AddFakeDevice(kDeviceAddress);
SetDeviceToSelect(kDeviceAddress);
// Grant permission for the device with address |kDeviceAddress| and store its
// WebBluetoothDeviceId in localStorage to retrieve it after the browser
// restarts.
auto request_device_result =
content::EvalJs(web_contents_.get(), R"((async() => {
try {
let device = await navigator.bluetooth.requestDevice({
filters: [{name: 'Test Device'}]});
localStorage.setItem('requestDeviceId', device.id);
return device.id;
} catch(e) {
return `${e.name}: ${e.message}`;
}
})())");
const std::string& granted_id = request_device_result.ExtractString();
EXPECT_TRUE(blink::WebBluetoothDeviceId::IsValid(granted_id));
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTestWithNewPermissionsBackendEnabled,
WebBluetoothPersistentIds) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
AddFakeDevice(kDeviceAddress);
SetDeviceToSelect(kDeviceAddress);
// At the moment, there is not a way for Web Bluetooth to return a list of the
// previously granted Bluetooth devices, so use requestDevice here.
// TODO(crbug.com/40452449): Once there is an API that can return the
// permitted Web Bluetooth devices, use that API instead.
auto request_device_result =
content::EvalJs(web_contents_.get(), R"((async() => {
try {
let device = await navigator.bluetooth.requestDevice({
filters: [{name: 'Test Device'}]});
return device.id;
} catch(e) {
return `${e.name}: ${e.message}`;
}
})())");
const std::string& granted_id = request_device_result.ExtractString();
EXPECT_TRUE(blink::WebBluetoothDeviceId::IsValid(granted_id));
auto local_storage_get_item_result = content::EvalJs(web_contents_.get(), R"(
(async() => {
return localStorage.getItem('requestDeviceId');
})())");
const std::string& prev_granted_id =
local_storage_get_item_result.ExtractString();
EXPECT_EQ(granted_id, prev_granted_id);
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTestWithNewPermissionsBackendEnabled,
PRE_WebBluetoothScanningIdsNotPersistent) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
// The request to scan should be automatically accepted. Store the detected
// device's WebBluetoothDeviceId in localStorage to retrieve it after the
// browser restarts.
ASSERT_TRUE(content::ExecJs(web_contents_.get(), R"(
var requestLEScanPromise = navigator.bluetooth.requestLEScan({
acceptAllAdvertisements: true});
)"));
ASSERT_TRUE(content::ExecJs(web_contents_.get(), "requestLEScanPromise"));
ASSERT_TRUE(content::ExecJs(web_contents_.get(), R"(
var advertisementreceivedPromise = new Promise(resolve => {
navigator.bluetooth.addEventListener('advertisementreceived',
event => {
localStorage.setItem('requestLEScanId', event.device.id);
resolve(event.device.id);
});
});
)"));
SimulateDeviceAdvertisement(kDeviceAddress);
auto advertisementreceived_promise_result =
content::EvalJs(web_contents_.get(), "advertisementreceivedPromise ");
const std::string& scan_id =
advertisementreceived_promise_result.ExtractString();
EXPECT_TRUE(blink::WebBluetoothDeviceId::IsValid(scan_id));
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTestWithNewPermissionsBackendEnabled,
WebBluetoothScanningIdsNotPersistent) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
// The request to scan should be automatically accepted. Store the detected
// assigned to the scanned device against the one that was stored previously.
ASSERT_TRUE(content::ExecJs(web_contents_.get(), R"(
var requestLEScanPromise = navigator.bluetooth.requestLEScan({
acceptAllAdvertisements: true});
)"));
ASSERT_TRUE(content::ExecJs(web_contents_.get(), "requestLEScanPromise"));
ASSERT_TRUE(content::ExecJs(web_contents_.get(), R"(
var advertisementreceivedPromise = new Promise(resolve => {
navigator.bluetooth.addEventListener('advertisementreceived',
event => {
resolve(event.device.id);
});
});
)"));
SimulateDeviceAdvertisement(kDeviceAddress);
auto advertisementreceived_promise_result =
content::EvalJs(web_contents_.get(), "advertisementreceivedPromise ");
const std::string& scan_id =
advertisementreceived_promise_result.ExtractString();
EXPECT_TRUE(blink::WebBluetoothDeviceId::IsValid(scan_id));
auto local_storage_get_item_result = content::EvalJs(
web_contents_.get(), "localStorage.getItem('requestLEScanId')");
const std::string& prev_scan_id =
local_storage_get_item_result.ExtractString();
EXPECT_NE(scan_id, prev_scan_id);
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTestWithNewPermissionsBackendEnabled,
PRE_WebBluetoothIdsUsedInWebBluetoothScanning) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
AddFakeDevice(kDeviceAddress);
SetDeviceToSelect(kDeviceAddress);
// Grant permission for the device with address |kDeviceAddress| and store its
// WebBluetoothDeviceId in localStorage to retrieve it after the browser
// restarts.
auto request_device_result =
content::EvalJs(web_contents_.get(), R"((async() => {
try {
let device = await navigator.bluetooth.requestDevice({
filters: [{name: 'Test Device'}]});
localStorage.setItem('requestDeviceId', device.id);
return device.id;
} catch(e) {
return `${e.name}: ${e.message}`;
}
})())");
const std::string& granted_id = request_device_result.ExtractString();
EXPECT_TRUE(blink::WebBluetoothDeviceId::IsValid(granted_id));
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTestWithNewPermissionsBackendEnabled,
WebBluetoothIdsUsedInWebBluetoothScanning) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
// The request to scan should be automatically accepted. Store the detected
// assigned to the scanned device against the one that was stored previously.
ASSERT_TRUE(content::ExecJs(web_contents_.get(), R"(
var requestLEScanPromise = navigator.bluetooth.requestLEScan({
acceptAllAdvertisements: true});
)"));
ASSERT_TRUE(content::ExecJs(web_contents_.get(), "requestLEScanPromise"));
ASSERT_TRUE(content::ExecJs(web_contents_.get(), R"(
var advertisementreceivedPromise = new Promise(resolve => {
navigator.bluetooth.addEventListener('advertisementreceived',
event => {
resolve(event.device.id);
});
});
)"));
SimulateDeviceAdvertisement(kDeviceAddress);
auto advertisementreceived_promise_result =
content::EvalJs(web_contents_.get(), "advertisementreceivedPromise ");
const std::string& scan_id =
advertisementreceived_promise_result.ExtractString();
EXPECT_TRUE(blink::WebBluetoothDeviceId::IsValid(scan_id));
auto local_storage_get_item_result = content::EvalJs(
web_contents_.get(), "localStorage.getItem('requestDeviceId')");
const std::string& granted_id = local_storage_get_item_result.ExtractString();
EXPECT_EQ(scan_id, granted_id);
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTestWithNewPermissionsBackendEnabled,
PRE_WebBluetoothPersistentServices) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
AddFakeDevice(kDeviceAddress);
SetDeviceToSelect(kDeviceAddress);
// Grant permission for the device with address |kDeviceAddress| and store its
// WebBluetoothDeviceId in localStorage to retrieve it after the browser
// restarts.
EXPECT_EQ(kHeartRateUUIDString,
content::EvalJs(web_contents_.get(), R"((async() => {
try {
let device = await navigator.bluetooth.requestDevice({
filters: [{name: 'Test Device', services: ['heart_rate']}]});
let gatt = await device.gatt.connect();
let service = await gatt.getPrimaryService('heart_rate');
return service.uuid;
} catch(e) {
return `${e.name}: ${e.message}`;
}
})())"));
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTestWithNewPermissionsBackendEnabled,
WebBluetoothPersistentServices) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
AddFakeDevice(kDeviceAddress);
SetDeviceToSelect(kDeviceAddress);
// At the moment, there is not a way for Web Bluetooth to return a list of the
// previously granted Bluetooth devices, so use requestDevice here without
// specifying a filter for services. The site should still be able to GATT
// connect and get the primary 'heart_rate' GATT service.
// TODO(crbug.com/40452449): Once there is an API that can return the
// permitted Web Bluetooth devices, use that API instead.
EXPECT_EQ(kHeartRateUUIDString,
content::EvalJs(web_contents_.get(), R"((async() => {
try {
let device = await navigator.bluetooth.requestDevice({
filters: [{name: 'Test Device'}]});
let gatt = await device.gatt.connect();
let service = await gatt.getPrimaryService('heart_rate');
return service.uuid;
} catch(e) {
return `${e.name}: ${e.message}`;
}
})())"));
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTestWithNewPermissionsBackendEnabled,
RevokingPermissionDisconnectsTheDevice) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
AddFakeDevice(kDeviceAddress);
SetDeviceToSelect(kDeviceAddress);
// Connect to heart rate device and ensure the GATT service is connected.
EXPECT_EQ(kHeartRateUUIDString, content::EvalJs(web_contents_.get(), R"(
var gatt;
var gattserverdisconnectedPromise;
(async() => {
try {
let device = await navigator.bluetooth.requestDevice({
filters: [{name: 'Test Device', services: ['heart_rate']}]});
gatt = await device.gatt.connect();
gattserverdisconnectedPromise = new Promise(resolve => {
device.addEventListener('gattserverdisconnected', _ => {
resolve("event fired");
});
});
let service = await gatt.getPrimaryService('heart_rate');
return service.uuid;
} catch(e) {
return `${e.name}: ${e.message}`;
}
})()
)"));
permissions::BluetoothChooserContext* context =
BluetoothChooserContextFactory::GetForProfile(browser()->profile());
url::Origin origin =
web_contents_->GetPrimaryMainFrame()->GetLastCommittedOrigin();
// Revoke the permission.
const auto objects = context->GetGrantedObjects(origin);
EXPECT_EQ(1ul, objects.size());
context->RevokeObjectPermission(origin, objects.at(0)->value);
// Wait for gattserverdisconnect event.
EXPECT_EQ("event fired", content::EvalJs(web_contents_.get(),
"gattserverdisconnectedPromise "));
// Ensure the service is disconnected.
EXPECT_THAT(content::EvalJs(web_contents_.get(), R"((async() => {
try {
let service = await gatt.getPrimaryService('heart_rate');
return service.uuid;
} catch(e) {
return `${e.name}: ${e.message}`;
}
})())")
.ExtractString(),
::testing::HasSubstr("GATT Server is disconnected."));
}
IN_PROC_BROWSER_TEST_F(WebBluetoothTestWithNewPermissionsBackendEnabled,
RevokingPermissionStopsAdvertisements) {
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL(kExampleUrl)));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
CheckLastCommitedOrigin(kExampleUrl);
// Setup the fake device.
AddFakeDevice(kDeviceAddress);
SetDeviceToSelect(kDeviceAddress);
// Request device and watch for advertisements. Record the last seen
// advertisement's name.
EXPECT_EQ("", content::EvalJs(web_contents_.get(), R"(
var events_seen = "";
var first_device_promise;
(async() => {
try {
let device = await navigator.bluetooth.requestDevice({
filters: [{name: 'Test Device', services: ['heart_rate']}]});
device.watchAdvertisements();
first_device_promise = new Promise(resolve => {
device.addEventListener('advertisementreceived', event => {
events_seen += event.name + "|";
resolve(events_seen);
});
});
return "";
} catch(e) {
return `${e.name}: ${e.message}`;
}
})()
)"));
url::Origin origin =
web_contents_->GetPrimaryMainFrame()->GetLastCommittedOrigin();
permissions::BluetoothChooserContext* context =
BluetoothChooserContextFactory::GetForProfile(browser()->profile());
auto objects = context->GetGrantedObjects(origin);
ASSERT_EQ(1u, objects.size());
const auto first_object_key = context->GetKeyForObject(objects.at(0)->value);
// Add a second listener on a different device which is used purely as an
// indicator of how much to wait until we can be reasonably sure that the
// second advertisement will not arrive.
AddFakeDevice(kDeviceAddress2);
SetDeviceToSelect(kDeviceAddress2);
EXPECT_EQ("", content::EvalJs(web_contents_.get(), R"(
var second_device_promise;
(async() => {
try {
let device = await navigator.bluetooth.requestDevice({
filters: [{name: 'Test Device', services: ['heart_rate']}]});
device.watchAdvertisements();
second_device_promise = new Promise(resolve => {
device.addEventListener('advertisementreceived', event => {
events_seen += 'second_device_' + event.name;
resolve(events_seen);
});
});
return "";
} catch(e) {
return `${e.name}: ${e.message}`;
}
})()
)"));
// Number of granted objects should be 2.
objects = context->GetGrantedObjects(origin);
EXPECT_EQ(2u, objects.size());
// Send first advertisement and wait for the event to be resolved.
adapter_->SimulateDeviceAdvertisementReceived(kDeviceAddress,
"advertisement_name1");
EXPECT_EQ("advertisement_name1|",
content::EvalJs(web_contents_.get(), "first_device_promise"));
// Revoke the permission.
context->RevokeObjectPermission(origin, first_object_key);
EXPECT_EQ(1ul, context->GetGrantedObjects(origin).size());
// Send another advertisement after the permission was revoked, this
// advertisement event should not be received. Also send an advertisement
// to the second device which, when received, will indicate that we have
// waited enough.
adapter_->SimulateDeviceAdvertisementReceived(kDeviceAddress,
"advertisement_name2");
adapter_->SimulateDeviceAdvertisementReceived(kDeviceAddress2,
"advertisement_name2");
EXPECT_EQ("advertisement_name1|second_device_advertisement_name2",
content::EvalJs(web_contents_.get(), "second_device_promise"));
}
class WebBluetoothTestWithNewPermissionsBackendEnabledInPrerendering
: public WebBluetoothTestWithNewPermissionsBackendEnabled {
public:
WebBluetoothTestWithNewPermissionsBackendEnabledInPrerendering()
: prerender_helper_(base::BindRepeating(
&WebBluetoothTestWithNewPermissionsBackendEnabledInPrerendering::
GetWebContents,
base::Unretained(this))) {}
~WebBluetoothTestWithNewPermissionsBackendEnabledInPrerendering() override =
default;
void SetUp() override {
prerender_helper_.RegisterServerRequestMonitor(embedded_test_server());
WebBluetoothTestWithNewPermissionsBackendEnabled::SetUp();
}
void SetUpOnMainThread() override {
WebBluetoothTestWithNewPermissionsBackendEnabled::SetUpOnMainThread();
ASSERT_TRUE(test_server_handle_ =
embedded_test_server()->StartAndReturnHandle());
auto url = embedded_test_server()->GetURL("/empty.html");
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url));
web_contents_ = browser()->tab_strip_model()->GetActiveWebContents();
}
content::WebContents* GetWebContents() { return web_contents_; }
content::test::PrerenderTestHelper* prerender_helper() {
return &prerender_helper_;
}
private:
content::test::PrerenderTestHelper prerender_helper_;
net::test_server::EmbeddedTestServerHandle test_server_handle_;
};
class TestWebContentsObserver : public content::WebContentsObserver {
public:
explicit TestWebContentsObserver(content::WebContents* contents)
: WebContentsObserver(contents) {}
TestWebContentsObserver(const TestWebContentsObserver&) = delete;
TestWebContentsObserver& operator=(const TestWebContentsObserver&) = delete;
~TestWebContentsObserver() override = default;
void OnCapabilityTypesChanged(
content::WebContentsCapabilityType capability_type,
bool used) override {
EXPECT_EQ(capability_type,
content::WebContentsCapabilityType::kBluetoothConnected);
++num_capability_types_changed_;
last_device_used_ = used;
if (quit_closure_ &&
expected_updating_count_ == num_capability_types_changed_) {
std::move(quit_closure_).Run();
}
}
int num_capability_types_changed() { return num_capability_types_changed_; }
const std::optional<bool>& last_device_used() { return last_device_used_; }
void clear_last_device_used() { last_device_used_.reset(); }
void WaitUntilConnectionIsUpdated(int expected_count) {
if (num_capability_types_changed_ == expected_count) {
return;
}
expected_updating_count_ = expected_count;
base::RunLoop run_loop;
quit_closure_ = run_loop.QuitClosure();
run_loop.Run();
}
private:
int num_capability_types_changed_ = 0;
std::optional<bool> last_device_used_;
int expected_updating_count_;
base::OnceClosure quit_closure_;
};
// Tests that the connection of Web Bluetooth is deferred in the prerendering.
IN_PROC_BROWSER_TEST_F(
WebBluetoothTestWithNewPermissionsBackendEnabledInPrerendering,
WebBluetoothDeviceConnectInPrerendering) {
TestWebContentsObserver observer(GetWebContents());
AddFakeDevice(kDeviceAddress);
SetDeviceToSelect(kDeviceAddress);
ASSERT_TRUE(content::ExecJs(GetWebContents(), R"((async() => {
try {
let device = await navigator.bluetooth.requestDevice({
filters: [{name: 'Test Device'}]});
let gatt = await device.gatt.connect();
let service = await gatt.getPrimaryService('heart_rate');
return service.uuid;
} catch(e) {
return `${e.name}: ${e.message}`;
}
})())"));
observer.WaitUntilConnectionIsUpdated(1);
// In the active main frame, the connection of Web Bluetooth works.
EXPECT_EQ(observer.num_capability_types_changed(), 1);
EXPECT_TRUE(observer.last_device_used().has_value());
EXPECT_TRUE(observer.last_device_used().value());
observer.clear_last_device_used();
// Loads a page in the prerender.
auto prerender_url = embedded_test_server()->GetURL("/simple.html");
// The prerendering doesn't affect the current scanning.
content::FrameTreeNodeId host_id =
prerender_helper()->AddPrerender(prerender_url);
content::test::PrerenderHostObserver host_observer(*GetWebContents(),
host_id);
content::RenderFrameHost* prerendered_frame_host =
prerender_helper()->GetPrerenderedMainFrameHost(host_id);
constexpr char kUserGestureError[] =
"Must be handling a user gesture to show a permission request.";
auto result =
content::EvalJs(prerendered_frame_host, R"(
navigator.bluetooth.requestDevice({
filters: [{name: 'Test Device', services: ['heart_rate']}]}))",
content::EvalJsOptions::EXECUTE_SCRIPT_NO_USER_GESTURE);
EXPECT_THAT(result.error, ::testing::HasSubstr(kUserGestureError));
// In the prerendering, the connection of Web Bluetooth is deferred and
// `observer` doesn't have any update.
EXPECT_EQ(observer.num_capability_types_changed(), 1);
EXPECT_FALSE(observer.last_device_used().has_value());
content::RenderFrameDeletedObserver rfh_observer(
GetWebContents()->GetPrimaryMainFrame());
// Navigates the primary page to the URL.
prerender_helper()->NavigatePrimaryPage(prerender_url);
// The page should be activated from the prerendering.
EXPECT_TRUE(host_observer.was_activated());
// Wait until the previous RFH to be disposed of.
rfh_observer.WaitUntilDeleted();
// During prerendering activation, the connection from the previous
// RenderFrameHost to Web Bluetooth is closed, while the connection attempt
// from the prerendering RenderFrameHost was refused.
EXPECT_EQ(observer.num_capability_types_changed(), 2);
EXPECT_TRUE(observer.last_device_used().has_value());
EXPECT_FALSE(observer.last_device_used().value());
}
} // namespace
|