OLD | NEW |
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 "device/bluetooth/bluetooth_device_win.h" | 5 #include "device/bluetooth/bluetooth_device_win.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
| 8 #include <utility> |
8 | 9 |
9 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/memory/ptr_util.h" |
10 #include "base/sequenced_task_runner.h" | 12 #include "base/sequenced_task_runner.h" |
11 #include "base/strings/string_number_conversions.h" | 13 #include "base/strings/string_number_conversions.h" |
12 #include "base/test/test_simple_task_runner.h" | 14 #include "base/test/test_simple_task_runner.h" |
13 #include "device/bluetooth/bluetooth_service_record_win.h" | 15 #include "device/bluetooth/bluetooth_service_record_win.h" |
14 #include "device/bluetooth/bluetooth_socket_thread.h" | 16 #include "device/bluetooth/bluetooth_socket_thread.h" |
15 #include "device/bluetooth/bluetooth_task_manager_win.h" | 17 #include "device/bluetooth/bluetooth_task_manager_win.h" |
16 #include "device/bluetooth/bluetooth_uuid.h" | 18 #include "device/bluetooth/bluetooth_uuid.h" |
17 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
18 | 20 |
19 namespace { | 21 namespace { |
(...skipping 25 matching lines...) Expand all Loading... |
45 scoped_refptr<base::SequencedTaskRunner> ui_task_runner( | 47 scoped_refptr<base::SequencedTaskRunner> ui_task_runner( |
46 new base::TestSimpleTaskRunner()); | 48 new base::TestSimpleTaskRunner()); |
47 scoped_refptr<BluetoothSocketThread> socket_thread( | 49 scoped_refptr<BluetoothSocketThread> socket_thread( |
48 BluetoothSocketThread::Get()); | 50 BluetoothSocketThread::Get()); |
49 | 51 |
50 // Add device with audio/video services. | 52 // Add device with audio/video services. |
51 device_state_.reset(new BluetoothTaskManagerWin::DeviceState()); | 53 device_state_.reset(new BluetoothTaskManagerWin::DeviceState()); |
52 device_state_->name = std::string(kDeviceName); | 54 device_state_->name = std::string(kDeviceName); |
53 device_state_->address = kDeviceAddress; | 55 device_state_->address = kDeviceAddress; |
54 | 56 |
55 BluetoothTaskManagerWin::ServiceRecordState* audio_state = | 57 auto audio_state = |
56 new BluetoothTaskManagerWin::ServiceRecordState(); | 58 base::MakeUnique<BluetoothTaskManagerWin::ServiceRecordState>(); |
57 audio_state->name = kTestAudioSdpName; | 59 audio_state->name = kTestAudioSdpName; |
58 base::HexStringToBytes(kTestAudioSdpBytes, &audio_state->sdp_bytes); | 60 base::HexStringToBytes(kTestAudioSdpBytes, &audio_state->sdp_bytes); |
59 device_state_->service_record_states.push_back(audio_state); | 61 device_state_->service_record_states.push_back(std::move(audio_state)); |
60 | 62 |
61 BluetoothTaskManagerWin::ServiceRecordState* video_state = | 63 auto video_state = |
62 new BluetoothTaskManagerWin::ServiceRecordState(); | 64 base::MakeUnique<BluetoothTaskManagerWin::ServiceRecordState>(); |
63 video_state->name = kTestVideoSdpName; | 65 video_state->name = kTestVideoSdpName; |
64 base::HexStringToBytes(kTestVideoSdpBytes, &video_state->sdp_bytes); | 66 base::HexStringToBytes(kTestVideoSdpBytes, &video_state->sdp_bytes); |
65 device_state_->service_record_states.push_back(video_state); | 67 device_state_->service_record_states.push_back(std::move(video_state)); |
66 | 68 |
67 device_.reset(new BluetoothDeviceWin(NULL, *device_state_, ui_task_runner, | 69 device_.reset(new BluetoothDeviceWin(NULL, *device_state_, ui_task_runner, |
68 socket_thread, NULL, | 70 socket_thread, NULL, |
69 net::NetLogSource())); | 71 net::NetLogSource())); |
70 | 72 |
71 // Add empty device. | 73 // Add empty device. |
72 empty_device_state_.reset(new BluetoothTaskManagerWin::DeviceState()); | 74 empty_device_state_.reset(new BluetoothTaskManagerWin::DeviceState()); |
73 empty_device_state_->name = std::string(kDeviceName); | 75 empty_device_state_->name = std::string(kDeviceName); |
74 empty_device_state_->address = kDeviceAddress; | 76 empty_device_state_->address = kDeviceAddress; |
75 empty_device_.reset(new BluetoothDeviceWin(NULL, *empty_device_state_, | 77 empty_device_.reset(new BluetoothDeviceWin(NULL, *empty_device_state_, |
(...skipping 20 matching lines...) Expand all Loading... |
96 } | 98 } |
97 | 99 |
98 TEST_F(BluetoothDeviceWinTest, IsEqual) { | 100 TEST_F(BluetoothDeviceWinTest, IsEqual) { |
99 EXPECT_TRUE(device_->IsEqual(*device_state_)); | 101 EXPECT_TRUE(device_->IsEqual(*device_state_)); |
100 EXPECT_FALSE(device_->IsEqual(*empty_device_state_)); | 102 EXPECT_FALSE(device_->IsEqual(*empty_device_state_)); |
101 EXPECT_FALSE(empty_device_->IsEqual(*device_state_)); | 103 EXPECT_FALSE(empty_device_->IsEqual(*device_state_)); |
102 EXPECT_TRUE(empty_device_->IsEqual(*empty_device_state_)); | 104 EXPECT_TRUE(empty_device_->IsEqual(*empty_device_state_)); |
103 } | 105 } |
104 | 106 |
105 } // namespace device | 107 } // namespace device |
OLD | NEW |