Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(284)

Unified Diff: device/bluetooth/test/bluetooth_gatt_server_test.h

Issue 1919683002: Adapter changes for implementing local GATT attributes and tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dbus_classes
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_
« no previous file with comments | « device/bluetooth/bluez/bluetooth_local_gatt_service_bluez.cc ('k') | device/bluetooth/test/bluetooth_gatt_server_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698