| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 DEVICE_BLUETOOTH_TEST_BLUETOOTH_TEST_MAC_H_ | 5 #ifndef DEVICE_BLUETOOTH_TEST_BLUETOOTH_TEST_MAC_H_ |
| 6 #define DEVICE_BLUETOOTH_TEST_BLUETOOTH_TEST_MAC_H_ | 6 #define DEVICE_BLUETOOTH_TEST_BLUETOOTH_TEST_MAC_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/test/test_simple_task_runner.h" | 9 #include "base/test/test_simple_task_runner.h" |
| 10 #include "device/bluetooth/test/bluetooth_test.h" | 10 #include "device/bluetooth/test/bluetooth_test.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 // Test overrides: | 25 // Test overrides: |
| 26 void SetUp() override; | 26 void SetUp() override; |
| 27 | 27 |
| 28 // BluetoothTestBase overrides: | 28 // BluetoothTestBase overrides: |
| 29 bool PlatformSupportsLowEnergy() override; | 29 bool PlatformSupportsLowEnergy() override; |
| 30 void InitWithDefaultAdapter() override; | 30 void InitWithDefaultAdapter() override; |
| 31 void InitWithoutDefaultAdapter() override; | 31 void InitWithoutDefaultAdapter() override; |
| 32 void InitWithFakeAdapter() override; | 32 void InitWithFakeAdapter() override; |
| 33 BluetoothDevice* DiscoverLowEnergyDevice(int device_ordinal) override; | 33 BluetoothDevice* DiscoverLowEnergyDevice(int device_ordinal) override; |
| 34 void SimulateGattConnection(BluetoothDevice* device) override; | 34 void SimulateGattConnection(BluetoothDevice* device) override; |
| 35 void SimulateGattDisconnection(BluetoothDevice* device) override; | |
| 36 void SimulateGattConnectionError( | 35 void SimulateGattConnectionError( |
| 37 BluetoothDevice* device, | 36 BluetoothDevice* device, |
| 38 BluetoothDevice::ConnectErrorCode errorCode) override; | 37 BluetoothDevice::ConnectErrorCode errorCode) override; |
| 38 void SimulateGattDisconnection(BluetoothDevice* device) override; |
| 39 | 39 |
| 40 // Callback for the bluetooth central manager mock. | 40 // Callback for the bluetooth central manager mock. |
| 41 void OnFakeBluetoothDeviceConnectGattCalled(); | 41 void OnFakeBluetoothDeviceConnectGattCalled(); |
| 42 void OnFakeBluetoothGattDisconnect(); | 42 void OnFakeBluetoothGattDisconnect(); |
| 43 | 43 |
| 44 protected: | 44 protected: |
| 45 class ScopedMockCentralManager; | 45 class ScopedMockCentralManager; |
| 46 | 46 |
| 47 // Utility function for finding CBUUIDs with relatively nice SHA256 hashes. | 47 // Utility function for finding CBUUIDs with relatively nice SHA256 hashes. |
| 48 std::string FindCBUUIDForHashTarget(); | 48 std::string FindCBUUIDForHashTarget(); |
| 49 | 49 |
| 50 BluetoothAdapterMac* adapter_mac_ = NULL; | 50 BluetoothAdapterMac* adapter_mac_ = NULL; |
| 51 scoped_ptr<ScopedMockCentralManager> mock_central_manager_; | 51 scoped_ptr<ScopedMockCentralManager> mock_central_manager_; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 // Defines common test fixture name. Use TEST_F(BluetoothTest, YourTestName). | 54 // Defines common test fixture name. Use TEST_F(BluetoothTest, YourTestName). |
| 55 typedef BluetoothTestMac BluetoothTest; | 55 typedef BluetoothTestMac BluetoothTest; |
| 56 | 56 |
| 57 } // namespace device | 57 } // namespace device |
| 58 | 58 |
| 59 #endif // DEVICE_BLUETOOTH_TEST_BLUETOOTH_TEST_MAC_H_ | 59 #endif // DEVICE_BLUETOOTH_TEST_BLUETOOTH_TEST_MAC_H_ |
| OLD | NEW |