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

Side by Side Diff: device/bluetooth/bluetooth_device_win_unittest.cc

Issue 1284073002: bluetooth: Add adapter to BluetoothDevice (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bt-drop-callback-
Patch Set: Merge TOT Created 5 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "base/bind.h" 6 #include "base/bind.h"
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/sequenced_task_runner.h" 8 #include "base/sequenced_task_runner.h"
9 #include "base/strings/string_number_conversions.h" 9 #include "base/strings/string_number_conversions.h"
10 #include "base/test/test_simple_task_runner.h" 10 #include "base/test/test_simple_task_runner.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 audio_state->name = kTestAudioSdpName; 56 audio_state->name = kTestAudioSdpName;
57 base::HexStringToBytes(kTestAudioSdpBytes, &audio_state->sdp_bytes); 57 base::HexStringToBytes(kTestAudioSdpBytes, &audio_state->sdp_bytes);
58 device_state_->service_record_states.push_back(audio_state); 58 device_state_->service_record_states.push_back(audio_state);
59 59
60 BluetoothTaskManagerWin::ServiceRecordState* video_state = 60 BluetoothTaskManagerWin::ServiceRecordState* video_state =
61 new BluetoothTaskManagerWin::ServiceRecordState(); 61 new BluetoothTaskManagerWin::ServiceRecordState();
62 video_state->name = kTestVideoSdpName; 62 video_state->name = kTestVideoSdpName;
63 base::HexStringToBytes(kTestVideoSdpBytes, &video_state->sdp_bytes); 63 base::HexStringToBytes(kTestVideoSdpBytes, &video_state->sdp_bytes);
64 device_state_->service_record_states.push_back(video_state); 64 device_state_->service_record_states.push_back(video_state);
65 65
66 device_.reset(new BluetoothDeviceWin(*device_state_, 66 device_.reset(new BluetoothDeviceWin(NULL, *device_state_, ui_task_runner,
67 ui_task_runner, 67 socket_thread, NULL,
68 socket_thread,
69 NULL,
70 net::NetLog::Source())); 68 net::NetLog::Source()));
71 69
72 // Add empty device. 70 // Add empty device.
73 empty_device_state_.reset(new BluetoothTaskManagerWin::DeviceState()); 71 empty_device_state_.reset(new BluetoothTaskManagerWin::DeviceState());
74 empty_device_state_->name = kDeviceName; 72 empty_device_state_->name = kDeviceName;
75 empty_device_state_->address = kDeviceAddress; 73 empty_device_state_->address = kDeviceAddress;
76 empty_device_.reset(new BluetoothDeviceWin(*empty_device_state_, 74 empty_device_.reset(new BluetoothDeviceWin(NULL, *empty_device_state_,
77 ui_task_runner, 75 ui_task_runner, socket_thread,
78 socket_thread, 76 NULL, net::NetLog::Source()));
79 NULL,
80 net::NetLog::Source()));
81 } 77 }
82 78
83 protected: 79 protected:
84 scoped_ptr<BluetoothDeviceWin> device_; 80 scoped_ptr<BluetoothDeviceWin> device_;
85 scoped_ptr<BluetoothTaskManagerWin::DeviceState> device_state_; 81 scoped_ptr<BluetoothTaskManagerWin::DeviceState> device_state_;
86 scoped_ptr<BluetoothDeviceWin> empty_device_; 82 scoped_ptr<BluetoothDeviceWin> empty_device_;
87 scoped_ptr<BluetoothTaskManagerWin::DeviceState> empty_device_state_; 83 scoped_ptr<BluetoothTaskManagerWin::DeviceState> empty_device_state_;
88 }; 84 };
89 85
90 TEST_F(BluetoothDeviceWinTest, GetUUIDs) { 86 TEST_F(BluetoothDeviceWinTest, GetUUIDs) {
91 BluetoothDevice::UUIDList uuids = device_->GetUUIDs(); 87 BluetoothDevice::UUIDList uuids = device_->GetUUIDs();
92 88
93 EXPECT_EQ(2, uuids.size()); 89 EXPECT_EQ(2, uuids.size());
94 EXPECT_EQ(kTestAudioSdpUuid, uuids[0]); 90 EXPECT_EQ(kTestAudioSdpUuid, uuids[0]);
95 EXPECT_EQ(kTestVideoSdpUuid, uuids[1]); 91 EXPECT_EQ(kTestVideoSdpUuid, uuids[1]);
96 92
97 uuids = empty_device_->GetUUIDs(); 93 uuids = empty_device_->GetUUIDs();
98 EXPECT_EQ(0, uuids.size()); 94 EXPECT_EQ(0, uuids.size());
99 } 95 }
100 96
101 TEST_F(BluetoothDeviceWinTest, IsEqual) { 97 TEST_F(BluetoothDeviceWinTest, IsEqual) {
102 EXPECT_TRUE(device_->IsEqual(*device_state_)); 98 EXPECT_TRUE(device_->IsEqual(*device_state_));
103 EXPECT_FALSE(device_->IsEqual(*empty_device_state_)); 99 EXPECT_FALSE(device_->IsEqual(*empty_device_state_));
104 EXPECT_FALSE(empty_device_->IsEqual(*device_state_)); 100 EXPECT_FALSE(empty_device_->IsEqual(*device_state_));
105 EXPECT_TRUE(empty_device_->IsEqual(*empty_device_state_)); 101 EXPECT_TRUE(empty_device_->IsEqual(*empty_device_state_));
106 } 102 }
107 103
108 } // namespace device 104 } // namespace device
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_device_win.cc ('k') | device/bluetooth/bluetooth_low_energy_device_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698