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

Side by Side Diff: device/bluetooth/bluetooth_gatt_service_unittest.cc

Issue 1395783005: bluetooth: android: BluetoothRemoteGattServiceAndroid::GetUUID (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "device/bluetooth/bluetooth_gatt_service.h"
6
7 #include "testing/gtest/include/gtest/gtest.h"
8
9 #if defined(OS_ANDROID)
10 #include "device/bluetooth/test/bluetooth_test_android.h"
11 #elif defined(OS_MACOSX)
12 #include "device/bluetooth/test/bluetooth_test_mac.h"
13 #endif
14
15 namespace device {
16
17 #if defined(OS_ANDROID)
18 TEST_F(BluetoothTest, GetUUID) {
19 InitWithFakeAdapter();
20 StartDiscoverySession();
21 BluetoothDevice* device = DiscoverLowEnergyDevice(3);
22 device->CreateGattConnection(GetGattConnectionCallback(),
23 GetConnectErrorCallback());
24 ResetEventCounts();
25 SimulateGattConnection(device);
26 EXPECT_EQ(1, gatt_discovery_attempts_);
27
28 // Create multiple instances, verifying each can have the same UUID.
29 BluetoothUUID uuid("00000000-0000-1000-8000-00805f9b34fb");
30 std::vector<std::string> services;
31 services.push_back(uuid.canonical_value());
32 services.push_back(uuid.canonical_value());
33 SimulateGattServicesDiscovered(device, services);
34 EXPECT_EQ(uuid, device->GetGattServices()[0]->GetUUID());
Jeffrey Yasskin 2015/10/15 23:48:30 Also assert their instance IDs are distinct?
scheib 2015/10/16 00:23:36 Done.
35 EXPECT_EQ(uuid, device->GetGattServices()[1]->GetUUID());
36 }
37 #endif // defined(OS_ANDROID)
38
39 } // namespace device
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698