OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_CHROMEOS_BLUETOOTH_TEST_MOCK_BLUETOOTH_DEVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_BLUETOOTH_TEST_MOCK_BLUETOOTH_DEVICE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_BLUETOOTH_TEST_MOCK_BLUETOOTH_DEVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_BLUETOOTH_TEST_MOCK_BLUETOOTH_DEVICE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/string16.h" | 10 #include "base/string16.h" |
11 #include "chrome/browser/chromeos/bluetooth/bluetooth_device.h" | 11 #include "chrome/browser/chromeos/bluetooth/bluetooth_device.h" |
| 12 #include "chromeos/dbus/bluetooth_out_of_band_pairing_data.h" |
12 #include "testing/gmock/include/gmock/gmock.h" | 13 #include "testing/gmock/include/gmock/gmock.h" |
13 | 14 |
14 namespace chromeos { | 15 namespace chromeos { |
15 | 16 |
16 class MockBluetoothDevice : public BluetoothDevice { | 17 class MockBluetoothDevice : public BluetoothDevice { |
17 public: | 18 public: |
18 MockBluetoothDevice(MockBluetoothAdapter* adapter, | 19 MockBluetoothDevice(MockBluetoothAdapter* adapter, |
19 const std::string& name, | 20 const std::string& name, |
20 const std::string& address, | 21 const std::string& address, |
21 bool paired, | 22 bool paired, |
22 bool bonded, | 23 bool bonded, |
23 bool connected); | 24 bool connected); |
24 virtual ~MockBluetoothDevice(); | 25 virtual ~MockBluetoothDevice(); |
25 | 26 |
26 MOCK_CONST_METHOD0(address, const std::string&()); | 27 MOCK_CONST_METHOD0(address, const std::string&()); |
27 MOCK_CONST_METHOD0(GetName, string16()); | 28 MOCK_CONST_METHOD0(GetName, string16()); |
| 29 MOCK_CONST_METHOD0(GetDeviceType, BluetoothDevice::DeviceType()); |
28 MOCK_CONST_METHOD0(IsPaired, bool()); | 30 MOCK_CONST_METHOD0(IsPaired, bool()); |
29 MOCK_CONST_METHOD0(IsBonded, bool()); | 31 MOCK_CONST_METHOD0(IsBonded, bool()); |
30 MOCK_CONST_METHOD0(IsConnected, bool()); | 32 MOCK_CONST_METHOD0(IsConnected, bool()); |
| 33 MOCK_CONST_METHOD0(GetServices, const ServiceList&()); |
| 34 MOCK_METHOD2(GetServiceRecords, |
| 35 void(const BluetoothDevice::ServiceRecordsCallback&, |
| 36 const BluetoothDevice::ErrorCallback&)); |
31 MOCK_CONST_METHOD1(ProvidesServiceWithUUID, bool(const std::string&)); | 37 MOCK_CONST_METHOD1(ProvidesServiceWithUUID, bool(const std::string&)); |
| 38 MOCK_METHOD2(ProvidesServiceWithName, |
| 39 void(const std::string&, |
| 40 const BluetoothDevice::ProvidesServiceCallback&)); |
| 41 MOCK_CONST_METHOD0(ExpectingPinCode, bool()); |
| 42 MOCK_CONST_METHOD0(ExpectingPasskey, bool()); |
| 43 MOCK_CONST_METHOD0(ExpectingConfirmation, bool()); |
| 44 MOCK_METHOD3(Connect, |
| 45 void(BluetoothDevice::PairingDelegate* pairnig_delegate, |
| 46 const base::Closure& callback, |
| 47 const BluetoothDevice::ErrorCallback& error_callback)); |
| 48 MOCK_METHOD1(SetPinCode, void(const std::string&)); |
| 49 MOCK_METHOD1(SetPasskey, void(uint32)); |
| 50 MOCK_METHOD0(ConfirmPairing, void()); |
| 51 MOCK_METHOD0(RejectPairing, void()); |
| 52 MOCK_METHOD0(CancelPairing, void()); |
| 53 MOCK_METHOD2(Disconnect, |
| 54 void(const base::Closure& callback, |
| 55 const BluetoothDevice::ErrorCallback& error_callback)); |
| 56 MOCK_METHOD1(Forget, void(const BluetoothDevice::ErrorCallback&)); |
| 57 MOCK_METHOD2(ConnectToService, |
| 58 void(const std::string&, |
| 59 const BluetoothDevice::SocketCallback&)); |
32 | 60 |
33 MOCK_METHOD2(ProvidesServiceWithName, | |
34 void(const std::string&, | |
35 const ProvidesServiceCallback& callback)); | |
36 MOCK_METHOD3(SetOutOfBandPairingData, | 61 MOCK_METHOD3(SetOutOfBandPairingData, |
37 void(const chromeos::BluetoothOutOfBandPairingData& data, | 62 void(const chromeos::BluetoothOutOfBandPairingData& data, |
38 const base::Closure& callback, | 63 const base::Closure& callback, |
39 const BluetoothDevice::ErrorCallback& error_callback)); | 64 const BluetoothDevice::ErrorCallback& error_callback)); |
40 MOCK_METHOD2(ClearOutOfBandPairingData, | 65 MOCK_METHOD2(ClearOutOfBandPairingData, |
41 void(const base::Closure& callback, | 66 void(const base::Closure& callback, |
42 const BluetoothDevice::ErrorCallback& error_callback)); | 67 const BluetoothDevice::ErrorCallback& error_callback)); |
43 | 68 |
44 private: | 69 private: |
45 string16 name_; | 70 string16 name_; |
46 std::string address_; | 71 std::string address_; |
| 72 BluetoothDevice::ServiceList service_list_; |
47 }; | 73 }; |
48 | 74 |
49 } // namespace chromeos | 75 } // namespace chromeos |
50 | 76 |
51 #endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_TEST_MOCK_BLUETOOTH_DEVICE_H_ | 77 #endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_TEST_MOCK_BLUETOOTH_DEVICE_H_ |
OLD | NEW |