| 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 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/sequenced_task_runner.h" | 10 #include "base/sequenced_task_runner.h" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 } | 78 } |
| 79 | 79 |
| 80 protected: | 80 protected: |
| 81 std::unique_ptr<BluetoothDeviceWin> device_; | 81 std::unique_ptr<BluetoothDeviceWin> device_; |
| 82 std::unique_ptr<BluetoothTaskManagerWin::DeviceState> device_state_; | 82 std::unique_ptr<BluetoothTaskManagerWin::DeviceState> device_state_; |
| 83 std::unique_ptr<BluetoothDeviceWin> empty_device_; | 83 std::unique_ptr<BluetoothDeviceWin> empty_device_; |
| 84 std::unique_ptr<BluetoothTaskManagerWin::DeviceState> empty_device_state_; | 84 std::unique_ptr<BluetoothTaskManagerWin::DeviceState> empty_device_state_; |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 TEST_F(BluetoothDeviceWinTest, GetUUIDs) { | 87 TEST_F(BluetoothDeviceWinTest, GetUUIDs) { |
| 88 BluetoothDevice::UUIDList uuids = device_->GetUUIDs(); | 88 BluetoothDevice::UUIDSet uuids = device_->GetUUIDs(); |
| 89 | 89 |
| 90 EXPECT_EQ(2u, uuids.size()); | 90 EXPECT_EQ(2u, uuids.size()); |
| 91 EXPECT_EQ(kTestAudioSdpUuid, uuids[0]); | 91 EXPECT_TRUE(base::ContainsKey(uuids, kTestAudioSdpUuid)); |
| 92 EXPECT_EQ(kTestVideoSdpUuid, uuids[1]); | 92 EXPECT_TRUE(base::ContainsKey(uuids, kTestVideoSdpUuid)); |
| 93 | 93 |
| 94 uuids = empty_device_->GetUUIDs(); | 94 uuids = empty_device_->GetUUIDs(); |
| 95 EXPECT_EQ(0u, uuids.size()); | 95 EXPECT_EQ(0u, uuids.size()); |
| 96 } | 96 } |
| 97 | 97 |
| 98 TEST_F(BluetoothDeviceWinTest, IsEqual) { | 98 TEST_F(BluetoothDeviceWinTest, IsEqual) { |
| 99 EXPECT_TRUE(device_->IsEqual(*device_state_)); | 99 EXPECT_TRUE(device_->IsEqual(*device_state_)); |
| 100 EXPECT_FALSE(device_->IsEqual(*empty_device_state_)); | 100 EXPECT_FALSE(device_->IsEqual(*empty_device_state_)); |
| 101 EXPECT_FALSE(empty_device_->IsEqual(*device_state_)); | 101 EXPECT_FALSE(empty_device_->IsEqual(*device_state_)); |
| 102 EXPECT_TRUE(empty_device_->IsEqual(*empty_device_state_)); | 102 EXPECT_TRUE(empty_device_->IsEqual(*empty_device_state_)); |
| 103 } | 103 } |
| 104 | 104 |
| 105 } // namespace device | 105 } // namespace device |
| OLD | NEW |