Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Unified Diff: content/browser/bluetooth/frame_connected_bluetooth_devices_unittest.cc

Issue 2718583002: Refactor WebBluetoothServiceClient in the web_bluetooth.mojom (Closed)
Patch Set: rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/bluetooth/frame_connected_bluetooth_devices_unittest.cc
diff --git a/content/browser/bluetooth/frame_connected_bluetooth_devices_unittest.cc b/content/browser/bluetooth/frame_connected_bluetooth_devices_unittest.cc
index 21ddd44083dede3ef1c1b4087e534d7d3e474c0b..4c784217ea6ccc3258545d1853565afbadf7689b 100644
--- a/content/browser/bluetooth/frame_connected_bluetooth_devices_unittest.cc
+++ b/content/browser/bluetooth/frame_connected_bluetooth_devices_unittest.cc
@@ -13,6 +13,7 @@
#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 "mojo/public/cpp/bindings/associated_interface_ptr.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -38,6 +39,12 @@ const WebBluetoothDeviceId kDeviceId1("111111111111111111111A==");
constexpr char kDeviceAddress1[] = "1";
constexpr char kDeviceName1[] = "Device1";
+blink::mojom::WebBluetoothServerClientAssociatedPtr CreateServerClient() {
+ blink::mojom::WebBluetoothServerClientAssociatedPtr client;
+ mojo::MakeIsolatedRequest(&client);
+ return client;
+}
+
} // namespace
class FrameConnectedBluetoothDevicesTest
@@ -122,23 +129,28 @@ class FrameConnectedBluetoothDevicesTest
};
TEST_F(FrameConnectedBluetoothDevicesTest, Insert_Once) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
}
TEST_F(FrameConnectedBluetoothDevicesTest, Insert_Twice) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
}
TEST_F(FrameConnectedBluetoothDevicesTest, Insert_TwoDevices) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map0_->Insert(kDeviceId1, GetConnection(kDeviceAddress1));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map0_->Insert(kDeviceId1, GetConnection(kDeviceAddress1),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -146,8 +158,10 @@ TEST_F(FrameConnectedBluetoothDevicesTest, Insert_TwoDevices) {
}
TEST_F(FrameConnectedBluetoothDevicesTest, Insert_TwoMaps) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map1_->Insert(kDeviceId1, GetConnection(kDeviceAddress1));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map1_->Insert(kDeviceId1, GetConnection(kDeviceAddress1),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -156,7 +170,8 @@ TEST_F(FrameConnectedBluetoothDevicesTest, Insert_TwoMaps) {
TEST_F(FrameConnectedBluetoothDevicesTest,
CloseConnectionId_OneDevice_AddOnce_RemoveOnce) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -169,7 +184,8 @@ TEST_F(FrameConnectedBluetoothDevicesTest,
TEST_F(FrameConnectedBluetoothDevicesTest,
CloseConnectionId_OneDevice_AddOnce_RemoveTwice) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -183,8 +199,10 @@ TEST_F(FrameConnectedBluetoothDevicesTest,
TEST_F(FrameConnectedBluetoothDevicesTest,
CloseConnectionId_OneDevice_AddTwice_RemoveOnce) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -197,8 +215,10 @@ TEST_F(FrameConnectedBluetoothDevicesTest,
TEST_F(FrameConnectedBluetoothDevicesTest,
CloseConnectionId_OneDevice_AddTwice_RemoveTwice) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -211,8 +231,10 @@ TEST_F(FrameConnectedBluetoothDevicesTest,
}
TEST_F(FrameConnectedBluetoothDevicesTest, CloseConnectionId_TwoDevices) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map0_->Insert(kDeviceId1, GetConnection(kDeviceAddress1));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map0_->Insert(kDeviceId1, GetConnection(kDeviceAddress1),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -230,8 +252,10 @@ TEST_F(FrameConnectedBluetoothDevicesTest, CloseConnectionId_TwoDevices) {
}
TEST_F(FrameConnectedBluetoothDevicesTest, CloseConnectionId_TwoMaps) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map1_->Insert(kDeviceId1, GetConnection(kDeviceAddress1));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map1_->Insert(kDeviceId1, GetConnection(kDeviceAddress1),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -250,7 +274,8 @@ TEST_F(FrameConnectedBluetoothDevicesTest, CloseConnectionId_TwoMaps) {
TEST_F(FrameConnectedBluetoothDevicesTest,
CloseConnectionAddress_OneDevice_AddOnce_RemoveOnce) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -264,7 +289,8 @@ TEST_F(FrameConnectedBluetoothDevicesTest,
TEST_F(FrameConnectedBluetoothDevicesTest,
CloseConnectionAddress_OneDevice_AddOnce_RemoveTwice) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -279,8 +305,10 @@ TEST_F(FrameConnectedBluetoothDevicesTest,
TEST_F(FrameConnectedBluetoothDevicesTest,
CloseConnectionAddress_OneDevice_AddTwice_RemoveOnce) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -294,8 +322,10 @@ TEST_F(FrameConnectedBluetoothDevicesTest,
TEST_F(FrameConnectedBluetoothDevicesTest,
CloseConnectionAddress_OneDevice_AddTwice_RemoveTwice) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -309,8 +339,10 @@ TEST_F(FrameConnectedBluetoothDevicesTest,
}
TEST_F(FrameConnectedBluetoothDevicesTest, CloseConnectionAddress_TwoDevices) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map0_->Insert(kDeviceId1, GetConnection(kDeviceAddress1));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map0_->Insert(kDeviceId1, GetConnection(kDeviceAddress1),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -331,8 +363,10 @@ TEST_F(FrameConnectedBluetoothDevicesTest, CloseConnectionAddress_TwoDevices) {
}
TEST_F(FrameConnectedBluetoothDevicesTest, CloseConnectionAddress_TwoMaps) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map1_->Insert(kDeviceId1, GetConnection(kDeviceAddress1));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map1_->Insert(kDeviceId1, GetConnection(kDeviceAddress1),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
EXPECT_TRUE(map0_->IsConnectedToDeviceWithId(kDeviceId0));
@@ -353,8 +387,10 @@ TEST_F(FrameConnectedBluetoothDevicesTest, CloseConnectionAddress_TwoMaps) {
}
TEST_F(FrameConnectedBluetoothDevicesTest, Destruction_MultipleDevices) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map0_->Insert(kDeviceId1, GetConnection(kDeviceAddress1));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map0_->Insert(kDeviceId1, GetConnection(kDeviceAddress1),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
@@ -364,11 +400,15 @@ TEST_F(FrameConnectedBluetoothDevicesTest, Destruction_MultipleDevices) {
}
TEST_F(FrameConnectedBluetoothDevicesTest, Destruction_MultipleMaps) {
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map0_->Insert(kDeviceId1, GetConnection(kDeviceAddress1));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map0_->Insert(kDeviceId1, GetConnection(kDeviceAddress1),
+ CreateServerClient());
- map1_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
- map1_->Insert(kDeviceId1, GetConnection(kDeviceAddress1));
+ map1_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
+ map1_->Insert(kDeviceId1, GetConnection(kDeviceAddress1),
+ CreateServerClient());
EXPECT_TRUE(contents()->IsConnectedToBluetoothDevice());
@@ -387,7 +427,8 @@ TEST_F(FrameConnectedBluetoothDevicesTest,
// Tests that we don't crash when FrameConnectedBluetoothDevices contains
// at least one device, and it is destroyed while WebContentsImpl is being
// destroyed.
- map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0));
+ map0_->Insert(kDeviceId0, GetConnection(kDeviceAddress0),
+ CreateServerClient());
DeleteContents();
}
« no previous file with comments | « content/browser/bluetooth/frame_connected_bluetooth_devices.cc ('k') | content/browser/bluetooth/web_bluetooth_service_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698