| Index: device/bluetooth/test/bluetooth_gatt_server_test.h
|
| diff --git a/device/bluetooth/test/bluetooth_gatt_server_test.h b/device/bluetooth/test/bluetooth_gatt_server_test.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b96a1b979f4806ba49a5a94b15c4851c087bbf4e
|
| --- /dev/null
|
| +++ b/device/bluetooth/test/bluetooth_gatt_server_test.h
|
| @@ -0,0 +1,53 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef DEVICE_BLUETOOTH_TEST_BLUETOOTH_GATT_SERVER_TEST_H_
|
| +#define DEVICE_BLUETOOTH_TEST_BLUETOOTH_GATT_SERVER_TEST_H_
|
| +
|
| +#include <device/bluetooth/test/test_bluetooth_local_gatt_service_delegate.h>
|
| +#include <cstdint>
|
| +#include <vector>
|
| +
|
| +#include "base/memory/weak_ptr.h"
|
| +#include "device/bluetooth/bluetooth_local_gatt_service.h"
|
| +
|
| +#if defined(OS_ANDROID)
|
| +#include "device/bluetooth/test/bluetooth_test_android.h"
|
| +#elif defined(OS_MACOSX)
|
| +#include "device/bluetooth/test/bluetooth_test_mac.h"
|
| +#elif defined(OS_WIN)
|
| +#include "device/bluetooth/test/bluetooth_test_win.h"
|
| +#elif defined(OS_CHROMEOS) || defined(OS_LINUX)
|
| +#include "device/bluetooth/test/bluetooth_test_bluez.h"
|
| +#endif
|
| +
|
| +namespace device {
|
| +
|
| +// Base class for BlueZ GATT server unit tests.
|
| +class BluetoothGattServerTest : public BluetoothTest {
|
| + public:
|
| + BluetoothGattServerTest();
|
| + ~BluetoothGattServerTest() override;
|
| +
|
| + // Start and complete boilerplate setup steps.
|
| + void StartGattSetup();
|
| + void CompleteGattSetup();
|
| +
|
| + // BluetoothTest overrides:
|
| + void SetUp() override;
|
| + void TearDown() override;
|
| +
|
| + // Utility methods to deal with values.
|
| + static uint64_t GetInteger(const std::vector<uint8_t>& value);
|
| + static std::vector<uint8_t> GetValue(uint64_t int_value);
|
| +
|
| + protected:
|
| + base::WeakPtr<BluetoothLocalGattService> service_;
|
| +
|
| + std::unique_ptr<TestBluetoothLocalGattServiceDelegate> delegate_;
|
| +};
|
| +
|
| +} // namespace device
|
| +
|
| +#endif // DEVICE_BLUETOOTH_TEST_BLUETOOTH_GATT_SERVER_TEST_H_
|
|
|