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
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/proximity_auth/bluetooth_connection.h"
#include "base/message_loop/message_loop.h"
#include "base/numerics/safe_conversions.h"
#include "base/run_loop.h"
#include "components/proximity_auth/remote_device.h"
#include "components/proximity_auth/wire_message.h"
#include "device/bluetooth/bluetooth_adapter_factory.h"
#include "device/bluetooth/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_socket.h"
#include "net/base/io_buffer.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using testing::_;
using testing::AnyNumber;
using testing::NiceMock;
using testing::Ref;
using testing::Return;
using testing::SaveArg;
using testing::StrictMock;
namespace proximity_auth {
namespace {
const char kDeviceName[] = "Device name";
const char kOtherDeviceName[] = "Other device name";
const char kBluetoothAddress[] = "11:22:33:44:55:66";
const char kOtherBluetoothAddress[] = "AA:BB:CC:DD:EE:FF";
const char kSerializedMessage[] = "Yarrr, this be a serialized message. Yarr!";
const int kSerializedMessageLength = strlen(kSerializedMessage);
const char kUuid[] = "DEADBEEF-CAFE-FEED-FOOD-D15EA5EBEEF";
const RemoteDevice kRemoteDevice = {kDeviceName, kBluetoothAddress};
const int kReceiveBufferSize = 6;
const char kReceiveBufferContents[] = "bytes";
// Create a buffer for testing received data.
scoped_refptr<net::IOBuffer> CreateReceiveBuffer() {
scoped_refptr<net::IOBuffer> buffer = new net::IOBuffer(kReceiveBufferSize);
memcpy(buffer->data(), kReceiveBufferContents, kReceiveBufferSize);
return buffer;
}
class MockBluetoothConnection : public BluetoothConnection {
public:
MockBluetoothConnection()
: BluetoothConnection(kRemoteDevice, device::BluetoothUUID(kUuid)) {}
// Bluetooth dependencies.
typedef device::BluetoothDevice::ConnectToServiceCallback
ConnectToServiceCallback;
typedef device::BluetoothDevice::ConnectToServiceErrorCallback
ConnectToServiceErrorCallback;
MOCK_METHOD4(ConnectToService,
void(device::BluetoothDevice* device,
const device::BluetoothUUID& uuid,
const ConnectToServiceCallback& callback,
const ConnectToServiceErrorCallback& error_callback));
// Calls back into the parent Connection class.
MOCK_METHOD1(SetStatusProxy, void(Status status));
MOCK_METHOD1(OnBytesReceived, void(const std::string& bytes));
MOCK_METHOD2(OnDidSendMessage,
void(const WireMessage& message, bool success));
virtual void SetStatus(Status status) override {
SetStatusProxy(status);
BluetoothConnection::SetStatus(status);
}
using BluetoothConnection::status;
using BluetoothConnection::Connect;
using BluetoothConnection::DeviceRemoved;
using BluetoothConnection::Disconnect;
private:
DISALLOW_COPY_AND_ASSIGN(MockBluetoothConnection);
};
class TestWireMessage : public WireMessage {
public:
TestWireMessage() : WireMessage("permit id", "payload") {}
virtual ~TestWireMessage() {}
virtual std::string Serialize() const override { return kSerializedMessage; }
private:
DISALLOW_COPY_AND_ASSIGN(TestWireMessage);
};
} // namespace
class ProximityAuthBluetoothConnectionTest : public testing::Test {
public:
ProximityAuthBluetoothConnectionTest()
: adapter_(new device::MockBluetoothAdapter),
device_(adapter_.get(), 0, kDeviceName, kBluetoothAddress, true, true),
socket_(new StrictMock<device::MockBluetoothSocket>),
uuid_(kUuid) {
device::BluetoothAdapterFactory::SetAdapterForTesting(adapter_);
// Suppress uninteresting Gmock call warnings.
EXPECT_CALL(*adapter_, GetDevice(_)).Times(AnyNumber());
}
// Transition the connection into an in-progress state.
void BeginConnecting(MockBluetoothConnection* connection) {
EXPECT_EQ(Connection::DISCONNECTED, connection->status());
ON_CALL(*adapter_, GetDevice(_)).WillByDefault(Return(&device_));
EXPECT_CALL(*connection, SetStatusProxy(Connection::IN_PROGRESS));
EXPECT_CALL(*adapter_, AddObserver(connection));
EXPECT_CALL(*connection, ConnectToService(&device_, uuid_, _, _));
connection->Connect();
EXPECT_EQ(Connection::IN_PROGRESS, connection->status());
}
// Transition the connection into a connected state.
// Saves the success and error callbacks passed into OnReceive(), which can be
// accessed via receive_callback() and receive_success_callback().
void Connect(MockBluetoothConnection* connection) {
EXPECT_EQ(Connection::DISCONNECTED, connection->status());
device::BluetoothDevice::ConnectToServiceCallback callback;
ON_CALL(*adapter_, GetDevice(_)).WillByDefault(Return(&device_));
EXPECT_CALL(*connection, SetStatusProxy(Connection::IN_PROGRESS));
EXPECT_CALL(*adapter_, AddObserver(connection));
EXPECT_CALL(*connection, ConnectToService(_, _, _, _))
.WillOnce(SaveArg<2>(&callback));
connection->Connect();
ASSERT_FALSE(callback.is_null());
EXPECT_CALL(*connection, SetStatusProxy(Connection::CONNECTED));
EXPECT_CALL(*socket_, Receive(_, _, _))
.WillOnce(DoAll(SaveArg<1>(&receive_callback_),
SaveArg<2>(&receive_error_callback_)));
callback.Run(socket_);
EXPECT_EQ(Connection::CONNECTED, connection->status());
}
device::BluetoothSocket::ReceiveCompletionCallback* receive_callback() {
return &receive_callback_;
}
device::BluetoothSocket::ReceiveErrorCompletionCallback*
receive_error_callback() {
return &receive_error_callback_;
}
protected:
// Mocks used for verifying interactions with the Bluetooth subsystem.
scoped_refptr<device::MockBluetoothAdapter> adapter_;
NiceMock<device::MockBluetoothDevice> device_;
scoped_refptr<StrictMock<device::MockBluetoothSocket>> socket_;
device::BluetoothUUID uuid_;
private:
base::MessageLoop message_loop_;
device::BluetoothSocket::ReceiveCompletionCallback receive_callback_;
device::BluetoothSocket::ReceiveErrorCompletionCallback
receive_error_callback_;
};
TEST_F(ProximityAuthBluetoothConnectionTest, Connect_ConnectionWasInProgress) {
// Create an in-progress connection.
StrictMock<MockBluetoothConnection> connection;
BeginConnecting(&connection);
// A second call to Connect() should be ignored.
EXPECT_CALL(connection, SetStatusProxy(_)).Times(0);
connection.Connect();
// The connection cleans up after itself upon destruction.
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
}
TEST_F(ProximityAuthBluetoothConnectionTest, Connect_ConnectionWasConnected) {
// Create a connected connection.
StrictMock<MockBluetoothConnection> connection;
Connect(&connection);
// A second call to Connect() should be ignored.
EXPECT_CALL(connection, SetStatusProxy(_)).Times(0);
connection.Connect();
// The connection disconnects and unregisters as an observer upon destruction.
EXPECT_CALL(*socket_, Disconnect(_));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
}
TEST_F(ProximityAuthBluetoothConnectionTest, Connect_NoBluetoothAdapter) {
// Some platforms do not support Bluetooth. This test is only meaningful on
// those platforms.
adapter_ = NULL;
if (device::BluetoothAdapterFactory::IsBluetoothAdapterAvailable())
return;
StrictMock<MockBluetoothConnection> connection;
EXPECT_CALL(connection, SetStatusProxy(_)).Times(0);
connection.Connect();
}
TEST_F(ProximityAuthBluetoothConnectionTest, Connect_DeviceMissing) {
StrictMock<MockBluetoothConnection> connection;
ON_CALL(*adapter_, GetDevice(_))
.WillByDefault(Return(static_cast<device::BluetoothDevice*>(NULL)));
EXPECT_CALL(connection, SetStatusProxy(Connection::IN_PROGRESS));
EXPECT_CALL(connection, SetStatusProxy(Connection::DISCONNECTED));
connection.Connect();
}
TEST_F(ProximityAuthBluetoothConnectionTest,
Connect_DeviceRemovedWhileConnecting) {
// Create an in-progress connection.
StrictMock<MockBluetoothConnection> connection;
BeginConnecting(&connection);
// Remove the device while the connection is in-progress. This should cause
// the connection to disconnect.
EXPECT_CALL(connection, SetStatusProxy(Connection::DISCONNECTED));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
connection.DeviceRemoved(adapter_.get(), &device_);
}
TEST_F(ProximityAuthBluetoothConnectionTest,
Connect_OtherDeviceRemovedWhileConnecting) {
// Create an in-progress connection.
StrictMock<MockBluetoothConnection> connection;
BeginConnecting(&connection);
// Remove a device other than the one that is being connected to. This should
// not have any effect on the connection.
NiceMock<device::MockBluetoothDevice> other_device(
adapter_.get(), 0, kOtherDeviceName, kOtherBluetoothAddress, true, true);
EXPECT_CALL(connection, SetStatusProxy(_)).Times(0);
connection.DeviceRemoved(adapter_.get(), &other_device);
// The connection removes itself as an observer when it is destroyed.
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
}
TEST_F(ProximityAuthBluetoothConnectionTest, Connect_ConnectionFails) {
StrictMock<MockBluetoothConnection> connection;
device::BluetoothDevice::ConnectToServiceErrorCallback error_callback;
ON_CALL(*adapter_, GetDevice(_)).WillByDefault(Return(&device_));
EXPECT_CALL(connection, SetStatusProxy(Connection::IN_PROGRESS));
EXPECT_CALL(*adapter_, AddObserver(&connection));
EXPECT_CALL(connection, ConnectToService(&device_, uuid_, _, _))
.WillOnce(SaveArg<3>(&error_callback));
connection.Connect();
ASSERT_FALSE(error_callback.is_null());
EXPECT_CALL(connection, SetStatusProxy(Connection::DISCONNECTED));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
error_callback.Run("super descriptive error message");
}
TEST_F(ProximityAuthBluetoothConnectionTest, Connect_ConnectionSucceeds) {
StrictMock<MockBluetoothConnection> connection;
Connect(&connection);
// The connection disconnects and unregisters as an observer upon destruction.
EXPECT_CALL(*socket_, Disconnect(_));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
}
TEST_F(ProximityAuthBluetoothConnectionTest,
Connect_ConnectionSucceeds_ThenDeviceRemoved) {
StrictMock<MockBluetoothConnection> connection;
Connect(&connection);
EXPECT_CALL(connection, SetStatusProxy(Connection::DISCONNECTED));
EXPECT_CALL(*socket_, Disconnect(_));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
connection.DeviceRemoved(adapter_.get(), &device_);
}
TEST_F(ProximityAuthBluetoothConnectionTest,
Connect_ConnectionSucceeds_ReceiveData) {
StrictMock<MockBluetoothConnection> connection;
Connect(&connection);
ASSERT_TRUE(receive_callback() && !receive_callback()->is_null());
// Receive some data. Once complete, the connection should re-register to be
// ready receive more data.
scoped_refptr<net::IOBuffer> buffer = CreateReceiveBuffer();
EXPECT_CALL(
connection,
OnBytesReceived(std::string(kReceiveBufferContents, kReceiveBufferSize)));
EXPECT_CALL(*socket_, Receive(_, _, _));
receive_callback()->Run(kReceiveBufferSize, buffer);
base::RunLoop run_loop;
run_loop.RunUntilIdle();
// The connection disconnects and unregisters as an observer upon destruction.
EXPECT_CALL(*socket_, Disconnect(_));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
}
TEST_F(ProximityAuthBluetoothConnectionTest,
Connect_ConnectionSucceeds_ReceiveDataAfterReceiveError) {
StrictMock<MockBluetoothConnection> connection;
Connect(&connection);
ASSERT_TRUE(receive_error_callback() && !receive_error_callback()->is_null());
// Simulate an error while receiving data. The connection should re-register
// to be ready receive more data despite the error.
device::BluetoothSocket::ReceiveCompletionCallback receive_callback;
EXPECT_CALL(*socket_, Receive(_, _, _))
.WillOnce(SaveArg<1>(&receive_callback));
receive_error_callback()->Run(device::BluetoothSocket::kSystemError,
"The system is down. They're taking over!");
base::RunLoop run_loop;
run_loop.RunUntilIdle();
ASSERT_FALSE(receive_callback.is_null());
// Receive some data.
scoped_refptr<net::IOBuffer> buffer = CreateReceiveBuffer();
EXPECT_CALL(
connection,
OnBytesReceived(std::string(kReceiveBufferContents, kReceiveBufferSize)));
EXPECT_CALL(*socket_, Receive(_, _, _));
receive_callback.Run(kReceiveBufferSize, buffer);
base::RunLoop run_loop2;
run_loop2.RunUntilIdle();
// The connection disconnects and unregisters as an observer upon destruction.
EXPECT_CALL(*socket_, Disconnect(_));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
}
TEST_F(ProximityAuthBluetoothConnectionTest,
Disconnect_ConnectionWasAlreadyDisconnected) {
StrictMock<MockBluetoothConnection> connection;
EXPECT_CALL(connection, SetStatusProxy(_)).Times(0);
connection.Disconnect();
}
TEST_F(ProximityAuthBluetoothConnectionTest,
Disconnect_ConnectionWasInProgress) {
// Create an in-progress connection.
StrictMock<MockBluetoothConnection> connection;
BeginConnecting(&connection);
EXPECT_CALL(connection, SetStatusProxy(Connection::DISCONNECTED));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
connection.Disconnect();
}
TEST_F(ProximityAuthBluetoothConnectionTest,
Disconnect_ConnectionWasConnected) {
// Create a connected connection.
StrictMock<MockBluetoothConnection> connection;
Connect(&connection);
EXPECT_CALL(connection, SetStatusProxy(Connection::DISCONNECTED));
EXPECT_CALL(*socket_, Disconnect(_));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
connection.Disconnect();
}
TEST_F(ProximityAuthBluetoothConnectionTest,
Connect_ThenDisconnectWhileInProgress_ThenBackingConnectionSucceeds) {
StrictMock<MockBluetoothConnection> connection;
device::BluetoothDevice::ConnectToServiceCallback callback;
ON_CALL(*adapter_, GetDevice(_)).WillByDefault(Return(&device_));
EXPECT_CALL(connection, SetStatusProxy(Connection::IN_PROGRESS));
EXPECT_CALL(*adapter_, AddObserver(&connection));
EXPECT_CALL(connection, ConnectToService(&device_, uuid_, _, _))
.WillOnce(SaveArg<2>(&callback));
connection.Connect();
ASSERT_FALSE(callback.is_null());
EXPECT_CALL(connection, SetStatusProxy(Connection::DISCONNECTED));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
connection.Disconnect();
EXPECT_CALL(connection, SetStatusProxy(_)).Times(0);
EXPECT_CALL(*socket_, Receive(_, _, _)).Times(0);
callback.Run(socket_);
}
TEST_F(ProximityAuthBluetoothConnectionTest,
SendMessage_SendsExpectedDataOverTheWire) {
// Create a connected connection.
StrictMock<MockBluetoothConnection> connection;
Connect(&connection);
scoped_refptr<net::IOBuffer> buffer;
scoped_ptr<TestWireMessage> wire_message(new TestWireMessage);
EXPECT_CALL(*socket_, Send(_, kSerializedMessageLength, _, _))
.WillOnce(SaveArg<0>(&buffer));
connection.SendMessage(wire_message.PassAs<WireMessage>());
ASSERT_TRUE(buffer.get());
EXPECT_EQ(kSerializedMessage,
std::string(buffer->data(), kSerializedMessageLength));
// The connection disconnects and unregisters as an observer upon destruction.
EXPECT_CALL(*socket_, Disconnect(_));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
}
TEST_F(ProximityAuthBluetoothConnectionTest, SendMessage_Success) {
// Create a connected connection.
StrictMock<MockBluetoothConnection> connection;
Connect(&connection);
scoped_ptr<TestWireMessage> wire_message(new TestWireMessage);
// Ownership will be transfered below, so grab a reference here.
TestWireMessage* expected_wire_message = wire_message.get();
device::BluetoothSocket::SendCompletionCallback callback;
EXPECT_CALL(*socket_, Send(_, _, _, _)).WillOnce(SaveArg<2>(&callback));
connection.SendMessage(wire_message.PassAs<WireMessage>());
ASSERT_FALSE(callback.is_null());
EXPECT_CALL(connection, OnDidSendMessage(Ref(*expected_wire_message), true));
callback.Run(kSerializedMessageLength);
// The connection disconnects and unregisters as an observer upon destruction.
EXPECT_CALL(*socket_, Disconnect(_));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
}
TEST_F(ProximityAuthBluetoothConnectionTest, SendMessage_Failure) {
// Create a connected connection.
StrictMock<MockBluetoothConnection> connection;
Connect(&connection);
scoped_ptr<TestWireMessage> wire_message(new TestWireMessage);
// Ownership will be transfered below, so grab a reference here.
TestWireMessage* expected_wire_message = wire_message.get();
device::BluetoothSocket::ErrorCompletionCallback error_callback;
EXPECT_CALL(*socket_, Send(_, _, _, _)).WillOnce(SaveArg<3>(&error_callback));
connection.SendMessage(wire_message.PassAs<WireMessage>());
ASSERT_FALSE(error_callback.is_null());
EXPECT_CALL(connection, OnDidSendMessage(Ref(*expected_wire_message), false));
EXPECT_CALL(connection, SetStatusProxy(Connection::DISCONNECTED));
EXPECT_CALL(*socket_, Disconnect(_));
EXPECT_CALL(*adapter_, RemoveObserver(&connection));
error_callback.Run("The most helpful of error messages");
}
} // namespace proximity_auth
|