blob: 5349fc897d850f7d48ac1abcf2569fb3ac515022 [file] [log] [blame]
Yifan Hongb93f0502016-10-28 10:42:57 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Yifan Hong602b85a2016-10-24 13:40:01 -070017#define LOG_TAG "LibHidlTest"
18
19#include <android-base/logging.h>
20#include <gtest/gtest.h>
21#include <hidl/HidlSupport.h>
Yifan Hong5e2318c2016-10-27 17:19:21 -070022#include <hidl/TaskRunner.h>
Yifan Hong602b85a2016-10-24 13:40:01 -070023#include <vector>
24
25#define EXPECT_ARRAYEQ(__a1__, __a2__, __size__) EXPECT_TRUE(isArrayEqual(__a1__, __a2__, __size__))
Yifan Hong44ab6232016-11-22 16:28:24 -080026#define EXPECT_2DARRAYEQ(__a1__, __a2__, __size1__, __size2__) \
27 EXPECT_TRUE(is2dArrayEqual(__a1__, __a2__, __size1__, __size2__))
Yifan Hong602b85a2016-10-24 13:40:01 -070028
29template<typename T, typename S>
30static inline bool isArrayEqual(const T arr1, const S arr2, size_t size) {
31 for(size_t i = 0; i < size; i++)
32 if(arr1[i] != arr2[i])
33 return false;
34 return true;
35}
36
Yifan Hong44ab6232016-11-22 16:28:24 -080037template<typename T, typename S>
38static inline bool is2dArrayEqual(const T arr1, const S arr2, size_t size1, size_t size2) {
39 for(size_t i = 0; i < size1; i++)
40 for (size_t j = 0; j < size2; j++)
41 if(arr1[i][j] != arr2[i][j])
42 return false;
43 return true;
44}
45
Yifan Hong602b85a2016-10-24 13:40:01 -070046class LibHidlTest : public ::testing::Test {
47public:
48 virtual void SetUp() override {
49 }
50 virtual void TearDown() override {
51 }
52};
53
54TEST_F(LibHidlTest, StringTest) {
55 using android::hardware::hidl_string;
56 hidl_string s; // empty constructor
57 EXPECT_STREQ(s.c_str(), "");
58 hidl_string s1 = "s1"; // copy = from cstr
59 EXPECT_STREQ(s1.c_str(), "s1");
60 hidl_string s2("s2"); // copy constructor from cstr
61 EXPECT_STREQ(s2.c_str(), "s2");
62 hidl_string s3 = hidl_string("s3"); // move =
63 EXPECT_STREQ(s3.c_str(), "s3");
64 hidl_string s4(hidl_string(hidl_string("s4"))); // move constructor
65 EXPECT_STREQ(s4.c_str(), "s4");
66 hidl_string s5(std::string("s5")); // copy constructor from std::string
67 EXPECT_STREQ(s5, "s5");
68 hidl_string s6 = std::string("s6"); // copy = from std::string
69 EXPECT_STREQ(s6, "s6");
70 hidl_string s7(s6); // copy constructor
71 EXPECT_STREQ(s7, "s6");
72 hidl_string s8 = s7; // copy =
73 EXPECT_STREQ(s8, "s6");
74 char myCString[20] = "myCString";
75 s.setToExternal(&myCString[0], strlen(myCString));
76 EXPECT_STREQ(s, "myCString");
77 myCString[2] = 'D';
78 EXPECT_STREQ(s, "myDString");
79 s.clear(); // should not affect myCString
80 EXPECT_STREQ(myCString, "myDString");
Scott Randolphbb840f72016-11-21 14:39:26 -080081
Yifan Hong602b85a2016-10-24 13:40:01 -070082 // casts
83 s = "great";
84 std::string myString = s;
85 const char *anotherCString = s;
86 EXPECT_EQ(myString, "great");
87 EXPECT_STREQ(anotherCString, "great");
Scott Randolphbb840f72016-11-21 14:39:26 -080088
89 // Comparisons
90 const char * cstr1 = "abc";
91 std::string string1(cstr1);
92 hidl_string hs1(cstr1);
93 const char * cstrE = "abc";
94 std::string stringE(cstrE);
95 hidl_string hsE(cstrE);
96 const char * cstrNE = "ABC";
97 std::string stringNE(cstrNE);
98 hidl_string hsNE(cstrNE);
99 EXPECT_TRUE(hs1 == hsE);
100 EXPECT_FALSE(hs1 != hsE);
101 EXPECT_TRUE(hs1 != hsNE);
102 EXPECT_FALSE(hs1 == hsNE);
103 EXPECT_TRUE(hs1 == cstrE);
104 EXPECT_FALSE(hs1 != cstrE);
105 EXPECT_TRUE(hs1 != cstrNE);
106 EXPECT_FALSE(hs1 == cstrNE);
107 EXPECT_TRUE(hs1 == stringE);
108 EXPECT_FALSE(hs1 != stringE);
109 EXPECT_TRUE(hs1 != stringNE);
110 EXPECT_FALSE(hs1 == stringNE);
Yifan Hong602b85a2016-10-24 13:40:01 -0700111}
112
Jeff Tinker0f3461d2017-01-03 10:40:55 -0800113TEST_F(LibHidlTest, MemoryTest) {
114 using android::hardware::hidl_memory;
115
116 hidl_memory mem1 = hidl_memory(); // default constructor
117 hidl_memory mem2 = mem1; // copy constructor (nullptr)
118
119 EXPECT_EQ(nullptr, mem2.handle());
120
121 native_handle_t* testHandle = native_handle_create(0 /* numInts */, 0 /* numFds */);
122
123 hidl_memory mem3 = hidl_memory("foo", testHandle, 42 /* size */); // owns testHandle
124 hidl_memory mem4 = mem3; // copy constructor (regular handle)
125
126 EXPECT_EQ(mem3.name(), mem4.name());
127 EXPECT_EQ(mem3.size(), mem4.size());
128 EXPECT_NE(nullptr, mem4.handle());
129 EXPECT_NE(mem3.handle(), mem4.handle()); // check handle cloned
130
131 hidl_memory mem5 = hidl_memory("foo", nullptr, 0); // hidl memory works with nullptr handle
132 hidl_memory mem6 = mem5;
133 EXPECT_EQ(nullptr, mem5.handle());
134 EXPECT_EQ(nullptr, mem6.handle());
135}
136
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800137TEST_F(LibHidlTest, VecInitTest) {
Yifan Hong602b85a2016-10-24 13:40:01 -0700138 using android::hardware::hidl_vec;
139 using std::vector;
140 int32_t array[] = {5, 6, 7};
141 vector<int32_t> v(array, array + 3);
142
143 hidl_vec<int32_t> hv1 = v; // copy =
144 EXPECT_ARRAYEQ(hv1, array, 3);
145 EXPECT_ARRAYEQ(hv1, v, 3);
146 hidl_vec<int32_t> hv2(v); // copy constructor
147 EXPECT_ARRAYEQ(hv2, v, 3);
148
149 vector<int32_t> v2 = hv1; // cast
150 EXPECT_ARRAYEQ(v2, v, 3);
Steven Moreland9fbfe472016-11-14 16:49:17 -0800151
152 hidl_vec<int32_t> v3 = {5, 6, 7}; // initializer_list
Steven Morelandb69926a2016-11-15 10:02:57 -0800153 EXPECT_EQ(v3.size(), 3ul);
Steven Moreland9fbfe472016-11-14 16:49:17 -0800154 EXPECT_ARRAYEQ(v3, array, v3.size());
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800155}
156
157TEST_F(LibHidlTest, VecIterTest) {
158 int32_t array[] = {5, 6, 7};
159 android::hardware::hidl_vec<int32_t> hv1 = std::vector<int32_t>(array, array + 3);
Scott Randolphbb840f72016-11-21 14:39:26 -0800160
161 auto iter = hv1.begin(); // iterator begin()
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800162 EXPECT_EQ(*iter++, 5);
Scott Randolphbb840f72016-11-21 14:39:26 -0800163 EXPECT_EQ(*iter, 6);
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800164 EXPECT_EQ(*++iter, 7);
165 EXPECT_EQ(*iter--, 7);
166 EXPECT_EQ(*iter, 6);
167 EXPECT_EQ(*--iter, 5);
168
169 iter += 2;
Scott Randolphbb840f72016-11-21 14:39:26 -0800170 EXPECT_EQ(*iter, 7);
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800171 iter -= 2;
172 EXPECT_EQ(*iter, 5);
173
174 iter++;
175 EXPECT_EQ(*(iter + 1), 7);
176 EXPECT_EQ(*(1 + iter), 7);
177 EXPECT_EQ(*(iter - 1), 5);
178 EXPECT_EQ(*iter, 6);
179
180 auto five = iter - 1;
181 auto seven = iter + 1;
182 EXPECT_EQ(seven - five, 2);
183 EXPECT_EQ(five - seven, -2);
184
185 EXPECT_LT(five, seven);
186 EXPECT_LE(five, seven);
187 EXPECT_GT(seven, five);
188 EXPECT_GE(seven, five);
189
190 EXPECT_EQ(seven[0], 7);
191 EXPECT_EQ(five[1], 6);
192}
193
194TEST_F(LibHidlTest, VecIterForTest) {
195 using android::hardware::hidl_vec;
196 int32_t array[] = {5, 6, 7};
197 hidl_vec<int32_t> hv1 = std::vector<int32_t>(array, array + 3);
Scott Randolphbb840f72016-11-21 14:39:26 -0800198
199 int32_t sum = 0; // range based for loop interoperability
200 for (auto &&i: hv1) {
201 sum += i;
202 }
203 EXPECT_EQ(sum, 5+6+7);
Yifan Hong64fdf4d2016-12-09 16:22:45 -0800204
205 for (auto iter = hv1.begin(); iter < hv1.end(); ++iter) {
206 *iter += 10;
207 }
208 const hidl_vec<int32_t> &v4 = hv1;
209 sum = 0;
210 for (const auto &i : v4) {
211 sum += i;
212 }
213 EXPECT_EQ(sum, 15+16+17);
Yifan Hong602b85a2016-10-24 13:40:01 -0700214}
215
Yifan Hong9fcbb362016-12-20 16:46:41 -0800216TEST_F(LibHidlTest, VecEqTest) {
217 android::hardware::hidl_vec<int32_t> hv1{5, 6, 7};
218 android::hardware::hidl_vec<int32_t> hv2{5, 6, 7};
219 android::hardware::hidl_vec<int32_t> hv3{5, 6, 8};
220
221 // use the == and != operator intentionally here
222 EXPECT_TRUE(hv1 == hv2);
223 EXPECT_TRUE(hv1 != hv3);
224}
225
Sasha Levitskiy3da68482016-11-17 16:48:43 -0800226TEST_F(LibHidlTest, ArrayTest) {
227 using android::hardware::hidl_array;
228 int32_t array[] = {5, 6, 7};
229
230 hidl_array<int32_t, 3> ha(array);
231 EXPECT_ARRAYEQ(ha, array, 3);
232}
233
Yifan Hong5e2318c2016-10-27 17:19:21 -0700234TEST_F(LibHidlTest, TaskRunnerTest) {
235 using android::hardware::TaskRunner;
236 TaskRunner tr;
237 bool flag = false;
238 tr.push([&] {
239 usleep(1000);
240 flag = true;
241 });
242 usleep(500);
243 EXPECT_FALSE(flag);
244 usleep(1000);
245 EXPECT_TRUE(flag);
246}
247
Yifan Hong5708fb42016-10-26 17:50:29 -0700248TEST_F(LibHidlTest, StringCmpTest) {
249 using android::hardware::hidl_string;
250 const char * s = "good";
251 hidl_string hs(s);
252 EXPECT_NE(hs.c_str(), s);
253
254 EXPECT_TRUE(hs == s); // operator ==
255 EXPECT_TRUE(s == hs);
256
257 EXPECT_FALSE(hs != s); // operator ==
258 EXPECT_FALSE(s != hs);
259}
260
Yifan Hong602b85a2016-10-24 13:40:01 -0700261template <typename T>
262void great(android::hardware::hidl_vec<T>) {}
263
264TEST_F(LibHidlTest, VecCopyTest) {
265 android::hardware::hidl_vec<int32_t> v;
266 great(v);
267}
268
Yifan Hong44ab6232016-11-22 16:28:24 -0800269TEST_F(LibHidlTest, StdArrayTest) {
270 using android::hardware::hidl_array;
271 hidl_array<int32_t, 5> array{(int32_t[5]){1, 2, 3, 4, 5}};
272 std::array<int32_t, 5> stdArray = array;
273 EXPECT_ARRAYEQ(array.data(), stdArray.data(), 5);
274 hidl_array<int32_t, 5> array2 = stdArray;
275 EXPECT_ARRAYEQ(array.data(), array2.data(), 5);
276}
277
278TEST_F(LibHidlTest, MultiDimStdArrayTest) {
279 using android::hardware::hidl_array;
280 hidl_array<int32_t, 2, 3> array;
281 for (size_t i = 0; i < 2; i++) {
282 for (size_t j = 0; j < 3; j++) {
283 array[i][j] = i + j + i * j;
284 }
285 }
286 std::array<std::array<int32_t, 3>, 2> stdArray = array;
287 EXPECT_2DARRAYEQ(array, stdArray, 2, 3);
288 hidl_array<int32_t, 2, 3> array2 = stdArray;
289 EXPECT_2DARRAYEQ(array, array2, 2, 3);
290}
291
Eino-Ville Talvala19f4db52016-12-14 15:19:28 -0800292TEST_F(LibHidlTest, HidlVersionTest) {
293 using android::hardware::hidl_version;
294 hidl_version v1_0{1, 0};
295 EXPECT_EQ(1, v1_0.get_major());
296 EXPECT_EQ(0, v1_0.get_minor());
297 hidl_version v2_0{2, 0};
298 hidl_version v2_1{2, 1};
299 hidl_version v2_2{2, 2};
300 hidl_version v3_0{3, 0};
301 hidl_version v3_0b{3,0};
302
303 EXPECT_TRUE(v1_0 < v2_0);
304 EXPECT_TRUE(v2_0 < v2_1);
305 EXPECT_TRUE(v2_1 < v3_0);
306 EXPECT_TRUE(v2_0 > v1_0);
307 EXPECT_TRUE(v2_1 > v2_0);
308 EXPECT_TRUE(v3_0 > v2_1);
309 EXPECT_TRUE(v3_0 == v3_0b);
310 EXPECT_TRUE(v3_0 <= v3_0b);
311 EXPECT_TRUE(v2_2 <= v3_0);
312 EXPECT_TRUE(v3_0 >= v3_0b);
313 EXPECT_TRUE(v3_0 >= v2_2);
314}
315
316
Yifan Hong602b85a2016-10-24 13:40:01 -0700317int main(int argc, char **argv) {
318 ::testing::InitGoogleTest(&argc, argv);
319 return RUN_ALL_TESTS();
320}