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

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

Issue 224893002: device/bluetooth: Rename device::bluetooth_utils::UUID to device::BluetoothUUID (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « device/bluetooth/bluetooth_service_record_win.cc ('k') | device/bluetooth/bluetooth_utils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #include "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "base/strings/string_number_conversions.h" 6 #include "base/strings/string_number_conversions.h"
7 #include "device/bluetooth/bluetooth_service_record_win.h" 7 #include "device/bluetooth/bluetooth_service_record_win.h"
8 #include "device/bluetooth/bluetooth_uuid.h"
8 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
9 10
10 namespace { 11 namespace {
11 12
12 const char kTestNoRfcommSdpBytes[] = 13 const char kTestNoRfcommSdpBytes[] =
13 "35510900000a00010001090001350319110a09000435103506190100090019350619001909" 14 "35510900000a00010001090001350319110a09000435103506190100090019350619001909"
14 "010209000535031910020900093508350619110d090102090100250c417564696f20536f75" 15 "010209000535031910020900093508350619110d090102090100250c417564696f20536f75"
15 "726365090311090001"; 16 "726365090311090001";
16 const int kTestNoRfcommSdpBytesSize = sizeof(kTestNoRfcommSdpBytes) / 2; 17 const int kTestNoRfcommSdpBytesSize = sizeof(kTestNoRfcommSdpBytes) / 2;
17 const char kTestNoRfcommSdpUuid[] = "0000110a-0000-1000-8000-00805f9b34fb"; 18 const device::BluetoothUUID kTestNoRfcommSdpUuid("110a");
18 19
19 const char kTestRfcommSdpBytes[] = 20 const char kTestRfcommSdpBytes[] =
20 "354b0900000a000100030900013506191112191203090004350c3503190100350519000308" 21 "354b0900000a000100030900013506191112191203090004350c3503190100350519000308"
21 "0b090005350319100209000935083506191108090100090100250d566f6963652047617465" 22 "0b090005350319100209000935083506191108090100090100250d566f6963652047617465"
22 "776179"; 23 "776179";
23 const int kTestRfcommSdpBytesSize = sizeof(kTestRfcommSdpBytes) / 2; 24 const int kTestRfcommSdpBytesSize = sizeof(kTestRfcommSdpBytes) / 2;
24 const char kTestRfcommSdpUuid[] = "00001112-0000-1000-8000-00805f9b34fb"; 25 const device::BluetoothUUID kTestRfcommSdpUuid("1112");
25 const int kTestRfcommChannel = 11; 26 const int kTestRfcommChannel = 11;
26 27
27 } // namespace 28 } // namespace
28 29
29 namespace device { 30 namespace device {
30 31
31 class BluetoothServiceRecordWinTest : public testing::Test { 32 class BluetoothServiceRecordWinTest : public testing::Test {
32 protected: 33 protected:
33 void ConvertSdpBytes(const char* sdp_hex_char, uint8* sdp_bytes_array) { 34 void ConvertSdpBytes(const char* sdp_hex_char, uint8* sdp_bytes_array) {
34 std::vector<uint8> sdp_bytes_vector; 35 std::vector<uint8> sdp_bytes_vector;
35 base::HexStringToBytes(sdp_hex_char, &sdp_bytes_vector); 36 base::HexStringToBytes(sdp_hex_char, &sdp_bytes_vector);
36 std::copy(sdp_bytes_vector.begin(), 37 std::copy(sdp_bytes_vector.begin(),
37 sdp_bytes_vector.end(), 38 sdp_bytes_vector.end(),
38 sdp_bytes_array); 39 sdp_bytes_array);
39 } 40 }
40 }; 41 };
41 42
42 TEST_F(BluetoothServiceRecordWinTest, NoRfcommSdp) { 43 TEST_F(BluetoothServiceRecordWinTest, NoRfcommSdp) {
43 uint8 sdp_bytes_array[kTestNoRfcommSdpBytesSize]; 44 uint8 sdp_bytes_array[kTestNoRfcommSdpBytesSize];
44 ConvertSdpBytes(kTestNoRfcommSdpBytes, sdp_bytes_array); 45 ConvertSdpBytes(kTestNoRfcommSdpBytes, sdp_bytes_array);
45 BluetoothServiceRecordWin service_record("NoRfcommSdp", 46 BluetoothServiceRecordWin service_record("NoRfcommSdp",
46 "01:02:03:0A:10:A0", 47 "01:02:03:0A:10:A0",
47 kTestNoRfcommSdpBytesSize, 48 kTestNoRfcommSdpBytesSize,
48 sdp_bytes_array); 49 sdp_bytes_array);
49 EXPECT_STREQ(kTestNoRfcommSdpUuid, service_record.uuid().c_str()); 50 EXPECT_EQ(kTestNoRfcommSdpUuid, service_record.uuid());
50 EXPECT_FALSE(service_record.SupportsRfcomm()); 51 EXPECT_FALSE(service_record.SupportsRfcomm());
51 } 52 }
52 53
53 54
54 TEST_F(BluetoothServiceRecordWinTest, RfcommSdp) { 55 TEST_F(BluetoothServiceRecordWinTest, RfcommSdp) {
55 uint8 sdp_bytes_array[kTestRfcommSdpBytesSize]; 56 uint8 sdp_bytes_array[kTestRfcommSdpBytesSize];
56 ConvertSdpBytes(kTestRfcommSdpBytes, sdp_bytes_array); 57 ConvertSdpBytes(kTestRfcommSdpBytes, sdp_bytes_array);
57 BluetoothServiceRecordWin service_record("RfcommSdp", 58 BluetoothServiceRecordWin service_record("RfcommSdp",
58 "01:02:03:0A:10:A0", 59 "01:02:03:0A:10:A0",
59 kTestRfcommSdpBytesSize, 60 kTestRfcommSdpBytesSize,
60 sdp_bytes_array); 61 sdp_bytes_array);
61 EXPECT_STREQ(kTestRfcommSdpUuid, service_record.uuid().c_str()); 62 EXPECT_EQ(kTestRfcommSdpUuid, service_record.uuid());
62 EXPECT_TRUE(service_record.SupportsRfcomm()); 63 EXPECT_TRUE(service_record.SupportsRfcomm());
63 EXPECT_EQ(kTestRfcommChannel, service_record.rfcomm_channel()); 64 EXPECT_EQ(kTestRfcommChannel, service_record.rfcomm_channel());
64 } 65 }
65 66
66 TEST_F(BluetoothServiceRecordWinTest, BthAddr) { 67 TEST_F(BluetoothServiceRecordWinTest, BthAddr) {
67 uint8 sdp_bytes_array[kTestRfcommSdpBytesSize]; 68 uint8 sdp_bytes_array[kTestRfcommSdpBytesSize];
68 ConvertSdpBytes(kTestRfcommSdpBytes, sdp_bytes_array); 69 ConvertSdpBytes(kTestRfcommSdpBytes, sdp_bytes_array);
69 BluetoothServiceRecordWin service_record("Sdp", 70 BluetoothServiceRecordWin service_record("Sdp",
70 "01:02:03:0A:10:A0", 71 "01:02:03:0A:10:A0",
71 kTestRfcommSdpBytesSize, 72 kTestRfcommSdpBytesSize,
72 sdp_bytes_array); 73 sdp_bytes_array);
73 EXPECT_EQ(1108152553632, service_record.bth_addr()); 74 EXPECT_EQ(1108152553632, service_record.bth_addr());
74 } 75 }
75 76
76 } // namespace device 77 } // namespace device
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_service_record_win.cc ('k') | device/bluetooth/bluetooth_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698