Line data Source code
1 : ///////////////////////////////////////////////////////////////////////////////
2 : //
3 : // Project: C++ Test Suite for GDAL/OGR
4 : // Purpose: Test general CPL features.
5 : // Author: Mateusz Loskot <mateusz@loskot.net>
6 : //
7 : ///////////////////////////////////////////////////////////////////////////////
8 : // Copyright (c) 2006, Mateusz Loskot <mateusz@loskot.net>
9 : // Copyright (c) 2008-2012, Even Rouault <even dot rouault at spatialys.com>
10 : // Copyright (c) 2017, Dmitry Baryshnikov <polimax@mail.ru>
11 : // Copyright (c) 2017, NextGIS <info@nextgis.com>
12 : /*
13 : * SPDX-License-Identifier: MIT
14 : ****************************************************************************/
15 :
16 : #ifndef GDAL_COMPILATION
17 : #define GDAL_COMPILATION
18 : #endif
19 :
20 : #include "gdal_unit_test.h"
21 :
22 : #include "cpl_compressor.h"
23 : #include "cpl_error.h"
24 : #include "cpl_hash_set.h"
25 : #include "cpl_list.h"
26 : #include "cpl_mask.h"
27 : #include "cpl_sha256.h"
28 : #include "cpl_string.h"
29 : #include "cpl_safemaths.hpp"
30 : #include "cpl_time.h"
31 : #include "cpl_json.h"
32 : #include "cpl_json_streaming_parser.h"
33 : #include "cpl_json_streaming_writer.h"
34 : #include "cpl_mem_cache.h"
35 : #include "cpl_http.h"
36 : #include "cpl_auto_close.h"
37 : #include "cpl_minixml.h"
38 : #include "cpl_quad_tree.h"
39 : #include "cpl_spawn.h"
40 : #include "cpl_worker_thread_pool.h"
41 : #include "cpl_vsi_virtual.h"
42 : #include "cpl_threadsafe_queue.hpp"
43 :
44 : #include <atomic>
45 : #include <cmath>
46 : #include <limits>
47 : #include <fstream>
48 : #include <string>
49 :
50 : #include "gtest_include.h"
51 :
52 : static bool gbGotError = false;
53 :
54 2 : static void CPL_STDCALL myErrorHandler(CPLErr, CPLErrorNum, const char *)
55 : {
56 2 : gbGotError = true;
57 2 : }
58 :
59 : namespace
60 : {
61 :
62 : // Common fixture with test data
63 : struct test_cpl : public ::testing::Test
64 : {
65 : std::string data_;
66 :
67 85 : test_cpl()
68 85 : {
69 : // Compose data path for test group
70 85 : data_ = tut::common::data_basedir;
71 85 : }
72 :
73 85 : void SetUp() override
74 : {
75 85 : CPLSetConfigOptions(nullptr);
76 85 : CPLSetThreadLocalConfigOptions(nullptr);
77 85 : }
78 : };
79 :
80 : // Test cpl_list API
81 4 : TEST_F(test_cpl, CPLList)
82 : {
83 : CPLList *list;
84 :
85 1 : list = CPLListInsert(nullptr, (void *)nullptr, 0);
86 1 : EXPECT_TRUE(CPLListCount(list) == 1);
87 1 : list = CPLListRemove(list, 2);
88 1 : EXPECT_TRUE(CPLListCount(list) == 1);
89 1 : list = CPLListRemove(list, 1);
90 1 : EXPECT_TRUE(CPLListCount(list) == 1);
91 1 : list = CPLListRemove(list, 0);
92 1 : EXPECT_TRUE(CPLListCount(list) == 0);
93 1 : list = nullptr;
94 :
95 1 : list = CPLListInsert(nullptr, (void *)nullptr, 2);
96 1 : EXPECT_TRUE(CPLListCount(list) == 3);
97 1 : list = CPLListRemove(list, 2);
98 1 : EXPECT_TRUE(CPLListCount(list) == 2);
99 1 : list = CPLListRemove(list, 1);
100 1 : EXPECT_TRUE(CPLListCount(list) == 1);
101 1 : list = CPLListRemove(list, 0);
102 1 : EXPECT_TRUE(CPLListCount(list) == 0);
103 1 : list = nullptr;
104 :
105 1 : list = CPLListAppend(list, (void *)1);
106 1 : EXPECT_TRUE(CPLListGet(list, 0) == list);
107 1 : EXPECT_TRUE(CPLListGet(list, 1) == nullptr);
108 1 : list = CPLListAppend(list, (void *)2);
109 1 : list = CPLListInsert(list, (void *)3, 2);
110 1 : EXPECT_TRUE(CPLListCount(list) == 3);
111 1 : CPLListDestroy(list);
112 1 : list = nullptr;
113 :
114 1 : list = CPLListAppend(list, (void *)1);
115 1 : list = CPLListAppend(list, (void *)2);
116 1 : list = CPLListInsert(list, (void *)4, 3);
117 1 : CPLListGet(list, 2)->pData = (void *)3;
118 1 : EXPECT_TRUE(CPLListCount(list) == 4);
119 1 : EXPECT_TRUE(CPLListGet(list, 0)->pData == (void *)1);
120 1 : EXPECT_TRUE(CPLListGet(list, 1)->pData == (void *)2);
121 1 : EXPECT_TRUE(CPLListGet(list, 2)->pData == (void *)3);
122 1 : EXPECT_TRUE(CPLListGet(list, 3)->pData == (void *)4);
123 1 : CPLListDestroy(list);
124 1 : list = nullptr;
125 :
126 1 : list = CPLListInsert(list, (void *)4, 1);
127 1 : CPLListGet(list, 0)->pData = (void *)2;
128 1 : list = CPLListInsert(list, (void *)1, 0);
129 1 : list = CPLListInsert(list, (void *)3, 2);
130 1 : EXPECT_TRUE(CPLListCount(list) == 4);
131 1 : EXPECT_TRUE(CPLListGet(list, 0)->pData == (void *)1);
132 1 : EXPECT_TRUE(CPLListGet(list, 1)->pData == (void *)2);
133 1 : EXPECT_TRUE(CPLListGet(list, 2)->pData == (void *)3);
134 1 : EXPECT_TRUE(CPLListGet(list, 3)->pData == (void *)4);
135 1 : list = CPLListRemove(list, 1);
136 1 : list = CPLListRemove(list, 1);
137 1 : list = CPLListRemove(list, 0);
138 1 : list = CPLListRemove(list, 0);
139 1 : EXPECT_TRUE(list == nullptr);
140 1 : }
141 :
142 : typedef struct
143 : {
144 : const char *testString;
145 : CPLValueType expectedResult;
146 : } TestStringStruct;
147 :
148 : // Test CPLGetValueType
149 4 : TEST_F(test_cpl, CPLGetValueType)
150 : {
151 1 : TestStringStruct asTestStrings[] = {
152 : {"+25.e+3", CPL_VALUE_REAL}, {"-25.e-3", CPL_VALUE_REAL},
153 : {"25.e3", CPL_VALUE_REAL}, {"25e3", CPL_VALUE_REAL},
154 : {" 25e3 ", CPL_VALUE_REAL}, {".1e3", CPL_VALUE_REAL},
155 :
156 : {"25", CPL_VALUE_INTEGER}, {"-25", CPL_VALUE_INTEGER},
157 : {"+25", CPL_VALUE_INTEGER},
158 :
159 : {"25e 3", CPL_VALUE_STRING}, {"25e.3", CPL_VALUE_STRING},
160 : {"-2-5e3", CPL_VALUE_STRING}, {"2-5e3", CPL_VALUE_STRING},
161 : {"25.25.3", CPL_VALUE_STRING}, {"25e25e3", CPL_VALUE_STRING},
162 : {"25e2500", CPL_VALUE_STRING}, /* #6128 */
163 :
164 : {"d1", CPL_VALUE_STRING}, /* #6305 */
165 :
166 : {"01", CPL_VALUE_STRING}, {"0.1", CPL_VALUE_REAL},
167 : {"0", CPL_VALUE_INTEGER},
168 : };
169 :
170 21 : for (const auto &sText : asTestStrings)
171 : {
172 20 : EXPECT_EQ(CPLGetValueType(sText.testString), sText.expectedResult)
173 0 : << sText.testString;
174 : }
175 1 : }
176 :
177 : // Test cpl_hash_set API
178 4 : TEST_F(test_cpl, CPLHashSet)
179 : {
180 : CPLHashSet *set =
181 1 : CPLHashSetNew(CPLHashSetHashStr, CPLHashSetEqualStr, CPLFree);
182 1 : EXPECT_TRUE(CPLHashSetInsert(set, CPLStrdup("hello")) == TRUE);
183 1 : EXPECT_TRUE(CPLHashSetInsert(set, CPLStrdup("good morning")) == TRUE);
184 1 : EXPECT_TRUE(CPLHashSetInsert(set, CPLStrdup("bye bye")) == TRUE);
185 1 : EXPECT_TRUE(CPLHashSetSize(set) == 3);
186 1 : EXPECT_TRUE(CPLHashSetInsert(set, CPLStrdup("bye bye")) == FALSE);
187 1 : EXPECT_TRUE(CPLHashSetSize(set) == 3);
188 1 : EXPECT_TRUE(CPLHashSetRemove(set, "bye bye") == TRUE);
189 1 : EXPECT_TRUE(CPLHashSetSize(set) == 2);
190 1 : EXPECT_TRUE(CPLHashSetRemove(set, "good afternoon") == FALSE);
191 1 : EXPECT_TRUE(CPLHashSetSize(set) == 2);
192 1 : CPLHashSetDestroy(set);
193 1 : }
194 :
195 1000 : static int sumValues(void *elt, void *user_data)
196 : {
197 1000 : int *pnSum = (int *)user_data;
198 1000 : *pnSum += *(int *)elt;
199 1000 : return TRUE;
200 : }
201 :
202 : // Test cpl_hash_set API
203 4 : TEST_F(test_cpl, CPLHashSet2)
204 : {
205 1 : const int HASH_SET_SIZE = 1000;
206 :
207 : int data[HASH_SET_SIZE];
208 1001 : for (int i = 0; i < HASH_SET_SIZE; ++i)
209 : {
210 1000 : data[i] = i;
211 : }
212 :
213 1 : CPLHashSet *set = CPLHashSetNew(nullptr, nullptr, nullptr);
214 1001 : for (int i = 0; i < HASH_SET_SIZE; i++)
215 : {
216 1000 : EXPECT_TRUE(CPLHashSetInsert(set, (void *)&data[i]) == TRUE);
217 : }
218 1 : EXPECT_EQ(CPLHashSetSize(set), HASH_SET_SIZE);
219 :
220 1001 : for (int i = 0; i < HASH_SET_SIZE; i++)
221 : {
222 1000 : EXPECT_TRUE(CPLHashSetInsert(set, (void *)&data[i]) == FALSE);
223 : }
224 1 : EXPECT_EQ(CPLHashSetSize(set), HASH_SET_SIZE);
225 :
226 1001 : for (int i = 0; i < HASH_SET_SIZE; i++)
227 : {
228 1000 : EXPECT_TRUE(CPLHashSetLookup(set, (const void *)&data[i]) ==
229 : (const void *)&data[i]);
230 : }
231 :
232 1 : int sum = 0;
233 1 : CPLHashSetForeach(set, sumValues, &sum);
234 1 : EXPECT_EQ(sum, (HASH_SET_SIZE - 1) * HASH_SET_SIZE / 2);
235 :
236 1001 : for (int i = 0; i < HASH_SET_SIZE; i++)
237 : {
238 1000 : EXPECT_TRUE(CPLHashSetRemove(set, (void *)&data[i]) == TRUE);
239 : }
240 1 : EXPECT_EQ(CPLHashSetSize(set), 0);
241 :
242 1 : CPLHashSetDestroy(set);
243 1 : }
244 :
245 : // Test cpl_string API
246 4 : TEST_F(test_cpl, CSLTokenizeString2)
247 : {
248 : {
249 : CPLStringList aosStringList(
250 1 : CSLTokenizeString2("one two three", " ", 0));
251 1 : ASSERT_EQ(aosStringList.size(), 3);
252 1 : EXPECT_STREQ(aosStringList[0], "one");
253 1 : EXPECT_STREQ(aosStringList[1], "two");
254 1 : EXPECT_STREQ(aosStringList[2], "three");
255 :
256 : // Test range-based for loop
257 1 : int i = 0;
258 4 : for (const char *pszVal : aosStringList)
259 : {
260 3 : EXPECT_STREQ(pszVal, aosStringList[i]);
261 3 : ++i;
262 : }
263 1 : EXPECT_EQ(i, 3);
264 : }
265 : {
266 2 : CPLStringList aosStringList;
267 : // Test range-based for loop on empty list
268 1 : int i = 0;
269 1 : for (const char *pszVal : aosStringList)
270 : {
271 0 : EXPECT_EQ(pszVal, nullptr); // should not reach that point...
272 0 : ++i;
273 : }
274 1 : EXPECT_EQ(i, 0);
275 : }
276 : {
277 : CPLStringList aosStringList(
278 1 : CSLTokenizeString2("one two, three;four,five; six", " ;,", 0));
279 1 : ASSERT_EQ(aosStringList.size(), 6);
280 1 : EXPECT_STREQ(aosStringList[0], "one");
281 1 : EXPECT_STREQ(aosStringList[1], "two");
282 1 : EXPECT_STREQ(aosStringList[2], "three");
283 1 : EXPECT_STREQ(aosStringList[3], "four");
284 1 : EXPECT_STREQ(aosStringList[4], "five");
285 1 : EXPECT_STREQ(aosStringList[5], "six");
286 : }
287 :
288 : {
289 : CPLStringList aosStringList(CSLTokenizeString2(
290 1 : "one two,,,five,six", " ,", CSLT_ALLOWEMPTYTOKENS));
291 1 : ASSERT_EQ(aosStringList.size(), 6);
292 1 : EXPECT_STREQ(aosStringList[0], "one");
293 1 : EXPECT_STREQ(aosStringList[1], "two");
294 1 : EXPECT_STREQ(aosStringList[2], "");
295 1 : EXPECT_STREQ(aosStringList[3], "");
296 1 : EXPECT_STREQ(aosStringList[4], "five");
297 1 : EXPECT_STREQ(aosStringList[5], "six");
298 : }
299 :
300 : {
301 : CPLStringList aosStringList(CSLTokenizeString2(
302 1 : "one two,\"three,four ,\",five,six", " ,", CSLT_HONOURSTRINGS));
303 1 : ASSERT_EQ(aosStringList.size(), 5);
304 1 : EXPECT_STREQ(aosStringList[0], "one");
305 1 : EXPECT_STREQ(aosStringList[1], "two");
306 1 : EXPECT_STREQ(aosStringList[2], "three,four ,");
307 1 : EXPECT_STREQ(aosStringList[3], "five");
308 1 : EXPECT_STREQ(aosStringList[4], "six");
309 : }
310 :
311 : {
312 : CPLStringList aosStringList(CSLTokenizeString2(
313 1 : "one two,\"three,four ,\",five,six", " ,", CSLT_PRESERVEQUOTES));
314 1 : ASSERT_EQ(aosStringList.size(), 7);
315 1 : EXPECT_STREQ(aosStringList[0], "one");
316 1 : EXPECT_STREQ(aosStringList[1], "two");
317 1 : EXPECT_STREQ(aosStringList[2], "\"three");
318 1 : EXPECT_STREQ(aosStringList[3], "four");
319 1 : EXPECT_STREQ(aosStringList[4], "\"");
320 1 : EXPECT_STREQ(aosStringList[5], "five");
321 1 : EXPECT_STREQ(aosStringList[6], "six");
322 : }
323 :
324 : {
325 : CPLStringList aosStringList(
326 : CSLTokenizeString2("one two,\"three,four ,\",five,six", " ,",
327 1 : CSLT_HONOURSTRINGS | CSLT_PRESERVEQUOTES));
328 1 : ASSERT_EQ(aosStringList.size(), 5);
329 1 : EXPECT_STREQ(aosStringList[0], "one");
330 1 : EXPECT_STREQ(aosStringList[1], "two");
331 1 : EXPECT_STREQ(aosStringList[2], "\"three,four ,\"");
332 1 : EXPECT_STREQ(aosStringList[3], "five");
333 1 : EXPECT_STREQ(aosStringList[4], "six");
334 : }
335 :
336 : {
337 : CPLStringList aosStringList(
338 : CSLTokenizeString2("one \\two,\"three,\\four ,\",five,six", " ,",
339 1 : CSLT_PRESERVEESCAPES));
340 1 : ASSERT_EQ(aosStringList.size(), 7);
341 1 : EXPECT_STREQ(aosStringList[0], "one");
342 1 : EXPECT_STREQ(aosStringList[1], "\\two");
343 1 : EXPECT_STREQ(aosStringList[2], "\"three");
344 1 : EXPECT_STREQ(aosStringList[3], "\\four");
345 1 : EXPECT_STREQ(aosStringList[4], "\"");
346 1 : EXPECT_STREQ(aosStringList[5], "five");
347 1 : EXPECT_STREQ(aosStringList[6], "six");
348 : }
349 :
350 : {
351 : CPLStringList aosStringList(
352 : CSLTokenizeString2("one \\two,\"three,\\four ,\",five,six", " ,",
353 1 : CSLT_PRESERVEQUOTES | CSLT_PRESERVEESCAPES));
354 1 : ASSERT_EQ(aosStringList.size(), 7);
355 1 : EXPECT_STREQ(aosStringList[0], "one");
356 1 : EXPECT_STREQ(aosStringList[1], "\\two");
357 1 : EXPECT_STREQ(aosStringList[2], "\"three");
358 1 : EXPECT_STREQ(aosStringList[3], "\\four");
359 1 : EXPECT_STREQ(aosStringList[4], "\"");
360 1 : EXPECT_STREQ(aosStringList[5], "five");
361 1 : EXPECT_STREQ(aosStringList[6], "six");
362 : }
363 :
364 : {
365 : CPLStringList aosStringList(
366 1 : CSLTokenizeString2("one ,two, three, four ,five ", ",", 0));
367 1 : ASSERT_EQ(aosStringList.size(), 5);
368 1 : EXPECT_STREQ(aosStringList[0], "one ");
369 1 : EXPECT_STREQ(aosStringList[1], "two");
370 1 : EXPECT_STREQ(aosStringList[2], " three");
371 1 : EXPECT_STREQ(aosStringList[3], " four ");
372 1 : EXPECT_STREQ(aosStringList[4], "five ");
373 : }
374 :
375 : {
376 : CPLStringList aosStringList(CSLTokenizeString2(
377 1 : "one ,two, three, four ,five ", ",", CSLT_STRIPLEADSPACES));
378 1 : ASSERT_EQ(aosStringList.size(), 5);
379 1 : EXPECT_STREQ(aosStringList[0], "one ");
380 1 : EXPECT_STREQ(aosStringList[1], "two");
381 1 : EXPECT_STREQ(aosStringList[2], "three");
382 1 : EXPECT_STREQ(aosStringList[3], "four ");
383 1 : EXPECT_STREQ(aosStringList[4], "five ");
384 : }
385 :
386 : {
387 : CPLStringList aosStringList(CSLTokenizeString2(
388 1 : "one ,two, three, four ,five ", ",", CSLT_STRIPENDSPACES));
389 1 : ASSERT_EQ(aosStringList.size(), 5);
390 1 : EXPECT_STREQ(aosStringList[0], "one");
391 1 : EXPECT_STREQ(aosStringList[1], "two");
392 1 : EXPECT_STREQ(aosStringList[2], " three");
393 1 : EXPECT_STREQ(aosStringList[3], " four");
394 1 : EXPECT_STREQ(aosStringList[4], "five");
395 : }
396 :
397 : {
398 : CPLStringList aosStringList(
399 : CSLTokenizeString2("one ,two, three, four ,five ", ",",
400 1 : CSLT_STRIPLEADSPACES | CSLT_STRIPENDSPACES));
401 1 : ASSERT_EQ(aosStringList.size(), 5);
402 1 : EXPECT_STREQ(aosStringList[0], "one");
403 1 : EXPECT_STREQ(aosStringList[1], "two");
404 1 : EXPECT_STREQ(aosStringList[2], "three");
405 1 : EXPECT_STREQ(aosStringList[3], "four");
406 1 : EXPECT_STREQ(aosStringList[4], "five");
407 : }
408 :
409 : {
410 5 : const std::vector<std::string> oVector{"a", "bc"};
411 : // Test CPLStringList(const std::vector<std::string>&) constructor
412 1 : const CPLStringList aosList(oVector);
413 1 : ASSERT_EQ(aosList.size(), 2);
414 1 : EXPECT_STREQ(aosList[0], "a");
415 1 : EXPECT_STREQ(aosList[1], "bc");
416 1 : EXPECT_EQ(aosList[2], nullptr);
417 :
418 : // Test CPLStringList::operator std::vector<std::string>(void) const
419 2 : const std::vector<std::string> oVector2(aosList);
420 1 : EXPECT_EQ(oVector, oVector2);
421 :
422 2 : EXPECT_EQ(oVector, cpl::ToVector(aosList.List()));
423 : }
424 :
425 : {
426 2 : const CPLStringList aosList(std::vector<std::string>{});
427 1 : EXPECT_EQ(aosList.List(), nullptr);
428 : }
429 :
430 : {
431 : // Test CPLStringList(std::initializer_list<const char*>) constructor
432 1 : const CPLStringList aosList{"a", "bc"};
433 1 : ASSERT_EQ(aosList.size(), 2);
434 1 : EXPECT_STREQ(aosList[0], "a");
435 1 : EXPECT_STREQ(aosList[1], "bc");
436 1 : EXPECT_EQ(aosList[2], nullptr);
437 :
438 : // Test cpl::Iterate(CSLConstList)
439 1 : CSLConstList papszList = aosList.List();
440 1 : CPLStringList aosList2;
441 3 : for (const char *pszStr : cpl::Iterate(papszList))
442 : {
443 2 : aosList2.AddString(pszStr);
444 : }
445 1 : ASSERT_EQ(aosList2.size(), 2);
446 1 : EXPECT_STREQ(aosList2[0], "a");
447 1 : EXPECT_STREQ(aosList2[1], "bc");
448 1 : EXPECT_EQ(aosList2[2], nullptr);
449 : }
450 :
451 : {
452 : // Test cpl::Iterate() on a null list
453 1 : CSLConstList papszList = nullptr;
454 1 : auto oIteratorWrapper = cpl::Iterate(papszList);
455 1 : EXPECT_TRUE(oIteratorWrapper.begin() == oIteratorWrapper.end());
456 : }
457 :
458 : {
459 : // Test cpl::IterateNameValue()
460 1 : const CPLStringList aosList{"foo=bar", "illegal", "bar=baz"};
461 1 : CSLConstList papszList = aosList.List();
462 1 : std::map<std::string, std::string> oMap;
463 3 : for (const auto &[name, value] : cpl::IterateNameValue(papszList))
464 : {
465 2 : oMap[name] = value;
466 : }
467 1 : ASSERT_EQ(oMap.size(), 2);
468 2 : EXPECT_EQ(oMap["foo"], "bar");
469 2 : EXPECT_EQ(oMap["bar"], "baz");
470 : }
471 :
472 : {
473 : // Test cpl::IterateNameValue() on a list with only invalid values
474 2 : const CPLStringList aosList{"illegal"};
475 1 : CSLConstList papszList = aosList.List();
476 1 : auto oIteratorWrapper = cpl::IterateNameValue(papszList);
477 1 : EXPECT_TRUE(oIteratorWrapper.begin() == oIteratorWrapper.end());
478 : }
479 :
480 : {
481 : // Test cpl::IterateNameValue() on a null list
482 1 : CSLConstList papszList = nullptr;
483 1 : auto oIteratorWrapper = cpl::IterateNameValue(papszList);
484 1 : EXPECT_TRUE(oIteratorWrapper.begin() == oIteratorWrapper.end());
485 : }
486 : }
487 :
488 : typedef struct
489 : {
490 : char szEncoding[24];
491 : char szString[1024 - 24];
492 : } TestRecodeStruct;
493 :
494 : // Test cpl_recode API
495 4 : TEST_F(test_cpl, CPLRecode)
496 : {
497 : /*
498 : * NOTE: This test will generally fail if iconv() is not
499 : * linked in.
500 : *
501 : * CPLRecode() will be tested using the test file containing
502 : * a list of strings of the same text in different encoding. The
503 : * string is non-ASCII to avoid trivial transformations. Test file
504 : * has a simple binary format: a table of records, each record
505 : * is 1024 bytes long. The first 24 bytes of each record contain
506 : * encoding name (ASCII, zero padded), the last 1000 bytes contain
507 : * encoded string, zero padded.
508 : *
509 : * NOTE 1: We can't use a test file in human readable text format
510 : * here because of multiple different encodings including
511 : * multibyte ones.
512 : *
513 : * The test file could be generated with the following simple shell
514 : * script:
515 : *
516 : * #!/bin/sh
517 : *
518 : * # List of encodings to convert the test string into
519 : * ENCODINGS="UTF-8 CP1251 KOI8-R UCS-2 UCS-2BE UCS-2LE UCS-4 UCS-4BE
520 : * UCS-4LE UTF-16 UTF-32" # The test string itself in UTF-8 encoding. # This
521 : * means "Improving GDAL internationalization." in Russian.
522 : * TESTSTRING="\u0423\u043b\u0443\u0447\u0448\u0430\u0435\u043c
523 : * \u0438\u043d\u0442\u0435\u0440\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044e
524 : * GDAL."
525 : *
526 : * RECORDSIZE=1024
527 : * ENCSIZE=24
528 : *
529 : * i=0
530 : * for enc in ${ENCODINGS}; do
531 : * env printf "${enc}" | dd ibs=${RECORDSIZE} conv=sync obs=1
532 : * seek=$((${RECORDSIZE}*${i})) of="recode-rus.dat" status=noxfer env printf
533 : * "${TESTSTRING}" | iconv -t ${enc} | dd ibs=${RECORDSIZE} conv=sync obs=1
534 : * seek=$((${RECORDSIZE}*${i}+${ENCSIZE})) of="recode-rus.dat" status=noxfer
535 : * i=$((i+1))
536 : * done
537 : *
538 : * NOTE 2: The test string is encoded with the special format
539 : * "\uXXXX" sequences, so we able to paste it here.
540 : *
541 : * NOTE 3: We need a printf utility from the coreutils because of
542 : * that. "env printf" should work avoiding the shell
543 : * built-in.
544 : *
545 : * NOTE 4: "iconv" utility without the "-f" option will work with
546 : * encoding read from the current locale.
547 : *
548 : * TODO: 1. Add more encodings maybe more test files.
549 : * 2. Add test for CPLRecodeFromWChar()/CPLRecodeToWChar().
550 : * 3. Test translation between each possible pair of
551 : * encodings in file, not only into the UTF-8.
552 : */
553 :
554 2 : std::ifstream fin((data_ + SEP + "recode-rus.dat").c_str(),
555 2 : std::ifstream::binary);
556 : TestRecodeStruct oReferenceString;
557 :
558 : // Read reference string (which is the first one in the file)
559 1 : fin.read(oReferenceString.szEncoding, sizeof(oReferenceString.szEncoding));
560 1 : oReferenceString.szEncoding[sizeof(oReferenceString.szEncoding) - 1] = '\0';
561 1 : fin.read(oReferenceString.szString, sizeof(oReferenceString.szString));
562 1 : oReferenceString.szString[sizeof(oReferenceString.szString) - 1] = '\0';
563 :
564 : while (true)
565 : {
566 : TestRecodeStruct oTestString;
567 :
568 11 : fin.read(oTestString.szEncoding, sizeof(oTestString.szEncoding));
569 11 : oTestString.szEncoding[sizeof(oTestString.szEncoding) - 1] = '\0';
570 11 : if (fin.eof())
571 1 : break;
572 10 : fin.read(oTestString.szString, sizeof(oTestString.szString));
573 10 : oTestString.szString[sizeof(oTestString.szString) - 1] = '\0';
574 :
575 : // Compare each string with the reference one
576 10 : CPLErrorReset();
577 : char *pszDecodedString =
578 10 : CPLRecode(oTestString.szString, oTestString.szEncoding,
579 : oReferenceString.szEncoding);
580 10 : if (strstr(CPLGetLastErrorMsg(),
581 20 : "Recode from CP1251 to UTF-8 not supported") != nullptr ||
582 10 : strstr(CPLGetLastErrorMsg(),
583 : "Recode from KOI8-R to UTF-8 not supported") != nullptr)
584 : {
585 0 : CPLFree(pszDecodedString);
586 0 : break;
587 : }
588 :
589 10 : size_t nLength =
590 10 : MIN(strlen(pszDecodedString), sizeof(oReferenceString.szEncoding));
591 10 : bool bOK =
592 10 : (memcmp(pszDecodedString, oReferenceString.szString, nLength) == 0);
593 : // FIXME Some tests fail on Mac. Not sure why, but do not error out just
594 : // for that
595 10 : if (!bOK &&
596 0 : (strstr(CPLGetConfigOption("TRAVIS_OS_NAME", ""), "osx") !=
597 0 : nullptr ||
598 0 : strstr(CPLGetConfigOption("BUILD_NAME", ""), "osx") != nullptr ||
599 0 : getenv("DO_NOT_FAIL_ON_RECODE_ERRORS") != nullptr))
600 : {
601 0 : fprintf(stderr, "Recode from %s failed\n", oTestString.szEncoding);
602 : }
603 : else
604 : {
605 : #ifdef CPL_MSB
606 : if (!bOK && strcmp(oTestString.szEncoding, "UCS-2") == 0)
607 : {
608 : // Presumably the content in the test file is UCS-2LE, but
609 : // there's no way to know the byte order without a BOM
610 : fprintf(stderr, "Recode from %s failed\n",
611 : oTestString.szEncoding);
612 : }
613 : else
614 : #endif
615 : {
616 10 : EXPECT_TRUE(bOK) << "Recode from " << oTestString.szEncoding;
617 : }
618 : }
619 10 : CPLFree(pszDecodedString);
620 10 : }
621 :
622 1 : fin.close();
623 1 : }
624 :
625 : /************************************************************************/
626 : /* CPLStringList tests */
627 : /************************************************************************/
628 4 : TEST_F(test_cpl, CPLStringList_Base)
629 : {
630 1 : CPLStringList oCSL;
631 :
632 1 : ASSERT_TRUE(oCSL.List() == nullptr);
633 :
634 1 : oCSL.AddString("def");
635 1 : oCSL.AddString("abc");
636 :
637 1 : ASSERT_EQ(oCSL.Count(), 2);
638 1 : ASSERT_TRUE(EQUAL(oCSL[0], "def"));
639 1 : ASSERT_TRUE(EQUAL(oCSL[1], "abc"));
640 1 : ASSERT_TRUE(oCSL[17] == nullptr);
641 1 : ASSERT_TRUE(oCSL[-1] == nullptr);
642 1 : ASSERT_EQ(oCSL.FindString("abc"), 1);
643 :
644 1 : CSLDestroy(oCSL.StealList());
645 1 : ASSERT_EQ(oCSL.Count(), 0);
646 1 : ASSERT_TRUE(oCSL.List() == nullptr);
647 :
648 : // Test that the list will make an internal copy when needed to
649 : // modify a read-only list.
650 :
651 1 : oCSL.AddString("def");
652 1 : oCSL.AddString("abc");
653 :
654 1 : CPLStringList oCopy(oCSL.List(), FALSE);
655 :
656 1 : ASSERT_EQ(oCSL.List(), oCopy.List());
657 1 : ASSERT_EQ(oCSL.Count(), oCopy.Count());
658 :
659 1 : oCopy.AddString("xyz");
660 1 : ASSERT_TRUE(oCSL.List() != oCopy.List());
661 1 : ASSERT_EQ(oCopy.Count(), 3);
662 1 : ASSERT_EQ(oCSL.Count(), 2);
663 1 : ASSERT_TRUE(EQUAL(oCopy[2], "xyz"));
664 : }
665 :
666 4 : TEST_F(test_cpl, CPLStringList_NameValue)
667 : {
668 : // Test some name=value handling stuff.
669 1 : CPLStringList oNVL;
670 :
671 1 : oNVL.AddNameValue("KEY1", "VALUE1");
672 1 : oNVL.AddNameValue("2KEY", "VALUE2");
673 1 : ASSERT_EQ(oNVL.Count(), 2);
674 1 : ASSERT_TRUE(EQUAL(oNVL.FetchNameValue("2KEY"), "VALUE2"));
675 1 : ASSERT_TRUE(oNVL.FetchNameValue("MISSING") == nullptr);
676 :
677 1 : oNVL.AddNameValue("KEY1", "VALUE3");
678 1 : ASSERT_TRUE(EQUAL(oNVL.FetchNameValue("KEY1"), "VALUE1"));
679 1 : ASSERT_TRUE(EQUAL(oNVL[2], "KEY1=VALUE3"));
680 1 : ASSERT_TRUE(EQUAL(oNVL.FetchNameValueDef("MISSING", "X"), "X"));
681 :
682 1 : oNVL.SetNameValue("2KEY", "VALUE4");
683 1 : ASSERT_TRUE(EQUAL(oNVL.FetchNameValue("2KEY"), "VALUE4"));
684 1 : ASSERT_EQ(oNVL.Count(), 3);
685 :
686 : // make sure deletion works.
687 1 : oNVL.SetNameValue("2KEY", nullptr);
688 1 : ASSERT_TRUE(oNVL.FetchNameValue("2KEY") == nullptr);
689 1 : ASSERT_EQ(oNVL.Count(), 2);
690 :
691 : // Test boolean support.
692 1 : ASSERT_EQ(oNVL.FetchBoolean("BOOL", TRUE), TRUE);
693 1 : ASSERT_EQ(oNVL.FetchBoolean("BOOL", FALSE), FALSE);
694 :
695 1 : oNVL.SetNameValue("BOOL", "YES");
696 1 : ASSERT_EQ(oNVL.FetchBoolean("BOOL", TRUE), TRUE);
697 1 : ASSERT_EQ(oNVL.FetchBoolean("BOOL", FALSE), TRUE);
698 :
699 1 : oNVL.SetNameValue("BOOL", "1");
700 1 : ASSERT_EQ(oNVL.FetchBoolean("BOOL", FALSE), TRUE);
701 :
702 1 : oNVL.SetNameValue("BOOL", "0");
703 1 : ASSERT_EQ(oNVL.FetchBoolean("BOOL", TRUE), FALSE);
704 :
705 1 : oNVL.SetNameValue("BOOL", "FALSE");
706 1 : ASSERT_EQ(oNVL.FetchBoolean("BOOL", TRUE), FALSE);
707 :
708 1 : oNVL.SetNameValue("BOOL", "ON");
709 1 : ASSERT_EQ(oNVL.FetchBoolean("BOOL", FALSE), TRUE);
710 :
711 : // Test assignment operator.
712 1 : CPLStringList oCopy;
713 :
714 : {
715 2 : CPLStringList oTemp;
716 1 : oTemp.AddString("test");
717 : // coverity[copy_assignment_call]
718 1 : oCopy = oTemp;
719 : }
720 1 : EXPECT_STREQ(oCopy[0], "test");
721 :
722 1 : auto &oCopyRef(oCopy);
723 1 : oCopy = oCopyRef;
724 1 : EXPECT_STREQ(oCopy[0], "test");
725 :
726 : // Test copy constructor.
727 1 : CPLStringList oCopy2(oCopy);
728 1 : EXPECT_EQ(oCopy2.Count(), oCopy.Count());
729 1 : oCopy.Clear();
730 1 : EXPECT_STREQ(oCopy2[0], "test");
731 :
732 : // Test move constructor
733 1 : CPLStringList oMoved(std::move(oCopy2));
734 1 : EXPECT_STREQ(oMoved[0], "test");
735 :
736 : // Test move assignment operator
737 1 : CPLStringList oMoved2;
738 1 : oMoved2 = std::move(oMoved);
739 1 : EXPECT_STREQ(oMoved2[0], "test");
740 :
741 : // Test sorting
742 1 : CPLStringList oTestSort;
743 1 : oTestSort.AddNameValue("Z", "1");
744 1 : oTestSort.AddNameValue("L", "2");
745 1 : oTestSort.AddNameValue("T", "3");
746 1 : oTestSort.AddNameValue("A", "4");
747 1 : oTestSort.Sort();
748 1 : EXPECT_STREQ(oTestSort[0], "A=4");
749 1 : EXPECT_STREQ(oTestSort[1], "L=2");
750 1 : EXPECT_STREQ(oTestSort[2], "T=3");
751 1 : EXPECT_STREQ(oTestSort[3], "Z=1");
752 1 : ASSERT_EQ(oTestSort[4], (const char *)nullptr);
753 :
754 : // Test FetchNameValue() in a sorted list
755 1 : EXPECT_STREQ(oTestSort.FetchNameValue("A"), "4");
756 1 : EXPECT_STREQ(oTestSort.FetchNameValue("L"), "2");
757 1 : EXPECT_STREQ(oTestSort.FetchNameValue("T"), "3");
758 1 : EXPECT_STREQ(oTestSort.FetchNameValue("Z"), "1");
759 :
760 : // Test AddNameValue() in a sorted list
761 1 : oTestSort.AddNameValue("B", "5");
762 1 : EXPECT_STREQ(oTestSort[0], "A=4");
763 1 : EXPECT_STREQ(oTestSort[1], "B=5");
764 1 : EXPECT_STREQ(oTestSort[2], "L=2");
765 1 : EXPECT_STREQ(oTestSort[3], "T=3");
766 1 : EXPECT_STREQ(oTestSort[4], "Z=1");
767 1 : ASSERT_EQ(oTestSort[5], (const char *)nullptr);
768 :
769 : // Test SetNameValue() of an existing item in a sorted list
770 1 : oTestSort.SetNameValue("Z", "6");
771 1 : EXPECT_STREQ(oTestSort[4], "Z=6");
772 :
773 : // Test SetNameValue() of a non-existing item in a sorted list
774 1 : oTestSort.SetNameValue("W", "7");
775 1 : EXPECT_STREQ(oTestSort[0], "A=4");
776 1 : EXPECT_STREQ(oTestSort[1], "B=5");
777 1 : EXPECT_STREQ(oTestSort[2], "L=2");
778 1 : EXPECT_STREQ(oTestSort[3], "T=3");
779 1 : EXPECT_STREQ(oTestSort[4], "W=7");
780 1 : EXPECT_STREQ(oTestSort[5], "Z=6");
781 1 : ASSERT_EQ(oTestSort[6], (const char *)nullptr);
782 : }
783 :
784 4 : TEST_F(test_cpl, CPLStringList_Sort)
785 : {
786 : // Test some name=value handling stuff *with* sorting active.
787 1 : CPLStringList oNVL;
788 :
789 1 : oNVL.Sort();
790 :
791 1 : oNVL.AddNameValue("KEY1", "VALUE1");
792 1 : oNVL.AddNameValue("2KEY", "VALUE2");
793 1 : ASSERT_EQ(oNVL.Count(), 2);
794 1 : EXPECT_STREQ(oNVL.FetchNameValue("KEY1"), "VALUE1");
795 1 : EXPECT_STREQ(oNVL.FetchNameValue("2KEY"), "VALUE2");
796 1 : ASSERT_TRUE(oNVL.FetchNameValue("MISSING") == nullptr);
797 :
798 1 : oNVL.AddNameValue("KEY1", "VALUE3");
799 1 : ASSERT_EQ(oNVL.Count(), 3);
800 1 : EXPECT_STREQ(oNVL.FetchNameValue("KEY1"), "VALUE1");
801 1 : EXPECT_STREQ(oNVL.FetchNameValueDef("MISSING", "X"), "X");
802 :
803 1 : oNVL.SetNameValue("2KEY", "VALUE4");
804 1 : EXPECT_STREQ(oNVL.FetchNameValue("2KEY"), "VALUE4");
805 1 : ASSERT_EQ(oNVL.Count(), 3);
806 :
807 : // make sure deletion works.
808 1 : oNVL.SetNameValue("2KEY", nullptr);
809 1 : ASSERT_TRUE(oNVL.FetchNameValue("2KEY") == nullptr);
810 1 : ASSERT_EQ(oNVL.Count(), 2);
811 :
812 : // Test insertion logic pretty carefully.
813 1 : oNVL.Clear();
814 1 : ASSERT_TRUE(oNVL.IsSorted() == TRUE);
815 :
816 1 : oNVL.SetNameValue("B", "BB");
817 1 : oNVL.SetNameValue("A", "AA");
818 1 : oNVL.SetNameValue("D", "DD");
819 1 : oNVL.SetNameValue("C", "CC");
820 :
821 : // items should be in sorted order.
822 1 : EXPECT_STREQ(oNVL[0], "A=AA");
823 1 : EXPECT_STREQ(oNVL[1], "B=BB");
824 1 : EXPECT_STREQ(oNVL[2], "C=CC");
825 1 : EXPECT_STREQ(oNVL[3], "D=DD");
826 :
827 1 : EXPECT_STREQ(oNVL.FetchNameValue("A"), "AA");
828 1 : EXPECT_STREQ(oNVL.FetchNameValue("B"), "BB");
829 1 : EXPECT_STREQ(oNVL.FetchNameValue("C"), "CC");
830 1 : EXPECT_STREQ(oNVL.FetchNameValue("D"), "DD");
831 : }
832 :
833 4 : TEST_F(test_cpl, CPL_HMAC_SHA256)
834 : {
835 : GByte abyDigest[CPL_SHA256_HASH_SIZE];
836 : char szDigest[2 * CPL_SHA256_HASH_SIZE + 1];
837 :
838 1 : CPL_HMAC_SHA256("key", 3, "The quick brown fox jumps over the lazy dog",
839 : strlen("The quick brown fox jumps over the lazy dog"),
840 : abyDigest);
841 33 : for (int i = 0; i < CPL_SHA256_HASH_SIZE; i++)
842 32 : snprintf(szDigest + 2 * i, sizeof(szDigest) - 2 * i, "%02x",
843 32 : abyDigest[i]);
844 : // fprintf(stderr, "%s\n", szDigest);
845 1 : EXPECT_STREQ(
846 : szDigest,
847 : "f7bc83f430538424b13298e6aa6fb143ef4d59a14946175997479dbc2d1a3cd8");
848 :
849 1 : CPL_HMAC_SHA256(
850 : "mysupersupersupersupersupersupersupersupersupersupersupersupersupersup"
851 : "ersupersupersupersupersupersuperlongkey",
852 : strlen("mysupersupersupersupersupersupersupersupersupersupersupersupers"
853 : "upersupersupersupersupersupersupersuperlongkey"),
854 : "msg", 3, abyDigest);
855 33 : for (int i = 0; i < CPL_SHA256_HASH_SIZE; i++)
856 32 : snprintf(szDigest + 2 * i, sizeof(szDigest) - 2 * i, "%02x",
857 32 : abyDigest[i]);
858 : // fprintf(stderr, "%s\n", szDigest);
859 1 : EXPECT_STREQ(
860 : szDigest,
861 : "a3051520761ed3cb43876b35ce2dd93ac5b332dc3bad898bb32086f7ac71ffc1");
862 1 : }
863 :
864 4 : TEST_F(test_cpl, VSIMalloc)
865 : {
866 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
867 :
868 : // The following tests will fail because of overflows
869 :
870 : {
871 1 : CPLErrorReset();
872 1 : void *ptr = VSIMalloc2(~(size_t)0, ~(size_t)0);
873 1 : EXPECT_EQ(ptr, nullptr);
874 1 : VSIFree(ptr);
875 1 : EXPECT_NE(CPLGetLastErrorType(), CE_None);
876 : }
877 :
878 : {
879 1 : CPLErrorReset();
880 1 : void *ptr = VSIMalloc3(1, ~(size_t)0, ~(size_t)0);
881 1 : EXPECT_EQ(ptr, nullptr);
882 1 : VSIFree(ptr);
883 1 : EXPECT_NE(CPLGetLastErrorType(), CE_None);
884 : }
885 :
886 : {
887 1 : CPLErrorReset();
888 1 : void *ptr = VSIMalloc3(~(size_t)0, 1, ~(size_t)0);
889 1 : EXPECT_EQ(ptr, nullptr);
890 1 : VSIFree(ptr);
891 1 : EXPECT_NE(CPLGetLastErrorType(), CE_None);
892 : }
893 :
894 : {
895 1 : CPLErrorReset();
896 1 : void *ptr = VSIMalloc3(~(size_t)0, ~(size_t)0, 1);
897 1 : EXPECT_EQ(ptr, nullptr);
898 1 : VSIFree(ptr);
899 1 : EXPECT_NE(CPLGetLastErrorType(), CE_None);
900 : }
901 :
902 1 : if (!CSLTestBoolean(CPLGetConfigOption("SKIP_MEM_INTENSIVE_TEST", "NO")))
903 : {
904 : // The following tests will fail because such allocations cannot succeed
905 : #if SIZEOF_VOIDP == 8
906 : {
907 1 : CPLErrorReset();
908 1 : void *ptr = VSIMalloc(~(size_t)0);
909 1 : EXPECT_EQ(ptr, nullptr);
910 1 : VSIFree(ptr);
911 1 : EXPECT_EQ(CPLGetLastErrorType(), CE_None); /* no error reported */
912 : }
913 :
914 : {
915 1 : CPLErrorReset();
916 1 : void *ptr = VSIMalloc2(~(size_t)0, 1);
917 1 : EXPECT_EQ(ptr, nullptr);
918 1 : VSIFree(ptr);
919 1 : EXPECT_NE(CPLGetLastErrorType(), CE_None);
920 : }
921 :
922 : {
923 1 : CPLErrorReset();
924 1 : void *ptr = VSIMalloc3(~(size_t)0, 1, 1);
925 1 : EXPECT_EQ(ptr, nullptr);
926 1 : VSIFree(ptr);
927 1 : EXPECT_NE(CPLGetLastErrorType(), CE_None);
928 : }
929 :
930 : {
931 1 : CPLErrorReset();
932 1 : void *ptr = VSICalloc(~(size_t)0, 1);
933 1 : EXPECT_EQ(ptr, nullptr);
934 1 : VSIFree(ptr);
935 1 : EXPECT_EQ(CPLGetLastErrorType(), CE_None); /* no error reported */
936 : }
937 :
938 : {
939 1 : CPLErrorReset();
940 1 : void *ptr = VSIRealloc(nullptr, ~(size_t)0);
941 1 : EXPECT_EQ(ptr, nullptr);
942 1 : VSIFree(ptr);
943 1 : EXPECT_EQ(CPLGetLastErrorType(), CE_None); /* no error reported */
944 : }
945 :
946 : {
947 1 : CPLErrorReset();
948 1 : void *ptr = VSI_MALLOC_VERBOSE(~(size_t)0);
949 1 : EXPECT_EQ(ptr, nullptr);
950 1 : VSIFree(ptr);
951 1 : EXPECT_NE(CPLGetLastErrorType(), CE_None);
952 : }
953 :
954 : {
955 1 : CPLErrorReset();
956 1 : void *ptr = VSI_MALLOC2_VERBOSE(~(size_t)0, 1);
957 1 : EXPECT_EQ(ptr, nullptr);
958 1 : VSIFree(ptr);
959 1 : EXPECT_NE(CPLGetLastErrorType(), CE_None);
960 : }
961 :
962 : {
963 1 : CPLErrorReset();
964 1 : void *ptr = VSI_MALLOC3_VERBOSE(~(size_t)0, 1, 1);
965 1 : EXPECT_EQ(ptr, nullptr);
966 1 : VSIFree(ptr);
967 1 : EXPECT_NE(CPLGetLastErrorType(), CE_None);
968 : }
969 :
970 : {
971 1 : CPLErrorReset();
972 1 : void *ptr = VSI_CALLOC_VERBOSE(~(size_t)0, 1);
973 1 : EXPECT_EQ(ptr, nullptr);
974 1 : VSIFree(ptr);
975 1 : EXPECT_NE(CPLGetLastErrorType(), CE_None);
976 : }
977 :
978 : {
979 1 : CPLErrorReset();
980 1 : void *ptr = VSI_REALLOC_VERBOSE(nullptr, ~(size_t)0);
981 1 : EXPECT_EQ(ptr, nullptr);
982 1 : VSIFree(ptr);
983 1 : EXPECT_NE(CPLGetLastErrorType(), CE_None);
984 : }
985 : #endif
986 : }
987 :
988 1 : CPLPopErrorHandler();
989 :
990 : // The following allocs will return NULL because of 0 byte alloc
991 : {
992 1 : CPLErrorReset();
993 1 : void *ptr = VSIMalloc2(0, 1);
994 1 : EXPECT_EQ(ptr, nullptr);
995 1 : VSIFree(ptr);
996 1 : EXPECT_EQ(CPLGetLastErrorType(), CE_None);
997 : }
998 :
999 : {
1000 1 : void *ptr = VSIMalloc2(1, 0);
1001 1 : EXPECT_EQ(ptr, nullptr);
1002 1 : VSIFree(ptr);
1003 : }
1004 :
1005 : {
1006 1 : CPLErrorReset();
1007 1 : void *ptr = VSIMalloc3(0, 1, 1);
1008 1 : EXPECT_EQ(ptr, nullptr);
1009 1 : VSIFree(ptr);
1010 1 : EXPECT_EQ(CPLGetLastErrorType(), CE_None);
1011 : }
1012 :
1013 : {
1014 1 : void *ptr = VSIMalloc3(1, 0, 1);
1015 1 : EXPECT_EQ(ptr, nullptr);
1016 1 : VSIFree(ptr);
1017 : }
1018 :
1019 : {
1020 1 : void *ptr = VSIMalloc3(1, 1, 0);
1021 1 : EXPECT_EQ(ptr, nullptr);
1022 1 : VSIFree(ptr);
1023 : }
1024 1 : }
1025 :
1026 4 : TEST_F(test_cpl, CPLFormFilename)
1027 : {
1028 1 : EXPECT_TRUE(strcmp(CPLFormFilename("a", "b", nullptr), "a/b") == 0 ||
1029 : strcmp(CPLFormFilename("a", "b", nullptr), "a\\b") == 0);
1030 1 : EXPECT_TRUE(strcmp(CPLFormFilename("a/", "b", nullptr), "a/b") == 0 ||
1031 : strcmp(CPLFormFilename("a/", "b", nullptr), "a\\b") == 0);
1032 1 : EXPECT_TRUE(strcmp(CPLFormFilename("a\\", "b", nullptr), "a/b") == 0 ||
1033 : strcmp(CPLFormFilename("a\\", "b", nullptr), "a\\b") == 0);
1034 1 : EXPECT_STREQ(CPLFormFilename(nullptr, "a", "b"), "a.b");
1035 1 : EXPECT_STREQ(CPLFormFilename(nullptr, "a", ".b"), "a.b");
1036 1 : EXPECT_STREQ(CPLFormFilename("/a", "..", nullptr), "/");
1037 1 : EXPECT_STREQ(CPLFormFilename("/a/", "..", nullptr), "/");
1038 1 : EXPECT_STREQ(CPLFormFilename("/a/b", "..", nullptr), "/a");
1039 1 : EXPECT_STREQ(CPLFormFilename("/a/b/", "..", nullptr), "/a");
1040 1 : EXPECT_TRUE(EQUAL(CPLFormFilename("c:", "..", nullptr), "c:/..") ||
1041 : EQUAL(CPLFormFilename("c:", "..", nullptr), "c:\\.."));
1042 1 : EXPECT_TRUE(EQUAL(CPLFormFilename("c:\\", "..", nullptr), "c:/..") ||
1043 : EQUAL(CPLFormFilename("c:\\", "..", nullptr), "c:\\.."));
1044 1 : EXPECT_STREQ(CPLFormFilename("c:\\a", "..", nullptr), "c:");
1045 1 : EXPECT_STREQ(CPLFormFilename("c:\\a\\", "..", nullptr), "c:");
1046 1 : EXPECT_STREQ(CPLFormFilename("c:\\a\\b", "..", nullptr), "c:\\a");
1047 1 : EXPECT_STREQ(CPLFormFilename("\\\\$\\c:\\a", "..", nullptr), "\\\\$\\c:");
1048 1 : EXPECT_TRUE(
1049 : EQUAL(CPLFormFilename("\\\\$\\c:", "..", nullptr), "\\\\$\\c:/..") ||
1050 : EQUAL(CPLFormFilename("\\\\$\\c:", "..", nullptr), "\\\\$\\c:\\.."));
1051 1 : EXPECT_STREQ(
1052 : CPLFormFilename("/vsicurl/http://example.com?foo", "bar", nullptr),
1053 : "/vsicurl/http://example.com/bar?foo");
1054 1 : }
1055 :
1056 4 : TEST_F(test_cpl, CPLGetPath)
1057 : {
1058 1 : EXPECT_STREQ(CPLGetPath("/foo/bar/"), "/foo/bar");
1059 1 : EXPECT_STREQ(CPLGetPath("/foo/bar"), "/foo");
1060 1 : EXPECT_STREQ(CPLGetPath("/vsicurl/http://example.com/foo/bar?suffix"),
1061 : "/vsicurl/http://example.com/foo?suffix");
1062 1 : }
1063 :
1064 4 : TEST_F(test_cpl, CPLGetDirname)
1065 : {
1066 1 : EXPECT_STREQ(CPLGetDirname("/foo/bar/"), "/foo/bar");
1067 1 : EXPECT_STREQ(CPLGetDirname("/foo/bar"), "/foo");
1068 1 : EXPECT_STREQ(CPLGetDirname("/vsicurl/http://example.com/foo/bar?suffix"),
1069 : "/vsicurl/http://example.com/foo?suffix");
1070 1 : }
1071 :
1072 4 : TEST_F(test_cpl, VSIGetDiskFreeSpace)
1073 : {
1074 1 : ASSERT_TRUE(VSIGetDiskFreeSpace("/vsimem/") > 0);
1075 1 : ASSERT_TRUE(VSIGetDiskFreeSpace(".") == -1 ||
1076 : VSIGetDiskFreeSpace(".") >= 0);
1077 : }
1078 :
1079 4 : TEST_F(test_cpl, CPLsscanf)
1080 : {
1081 : double a, b, c;
1082 :
1083 1 : a = b = 0;
1084 1 : ASSERT_EQ(CPLsscanf("1 2", "%lf %lf", &a, &b), 2);
1085 1 : ASSERT_EQ(a, 1.0);
1086 1 : ASSERT_EQ(b, 2.0);
1087 :
1088 1 : a = b = 0;
1089 1 : ASSERT_EQ(CPLsscanf("1\t2", "%lf %lf", &a, &b), 2);
1090 1 : ASSERT_EQ(a, 1.0);
1091 1 : ASSERT_EQ(b, 2.0);
1092 :
1093 1 : a = b = 0;
1094 1 : ASSERT_EQ(CPLsscanf("1 2", "%lf\t%lf", &a, &b), 2);
1095 1 : ASSERT_EQ(a, 1.0);
1096 1 : ASSERT_EQ(b, 2.0);
1097 :
1098 1 : a = b = 0;
1099 1 : ASSERT_EQ(CPLsscanf("1 2", "%lf %lf", &a, &b), 2);
1100 1 : ASSERT_EQ(a, 1.0);
1101 1 : ASSERT_EQ(b, 2.0);
1102 :
1103 1 : a = b = 0;
1104 1 : ASSERT_EQ(CPLsscanf("1 2", "%lf %lf", &a, &b), 2);
1105 1 : ASSERT_EQ(a, 1.0);
1106 1 : ASSERT_EQ(b, 2.0);
1107 :
1108 1 : a = b = c = 0;
1109 1 : ASSERT_EQ(CPLsscanf("1 2", "%lf %lf %lf", &a, &b, &c), 2);
1110 1 : ASSERT_EQ(a, 1.0);
1111 1 : ASSERT_EQ(b, 2.0);
1112 : }
1113 :
1114 4 : TEST_F(test_cpl, CPLsnprintf)
1115 : {
1116 : {
1117 : char buf[32];
1118 1 : EXPECT_EQ(CPLsnprintf(buf, sizeof(buf), "a%.*fb", 1, 2.12), 5);
1119 1 : EXPECT_STREQ(buf, "a2.1b");
1120 : }
1121 1 : }
1122 :
1123 4 : TEST_F(test_cpl, CPLSetErrorHandler)
1124 : {
1125 1 : CPLString oldVal = CPLGetConfigOption("CPL_DEBUG", "");
1126 1 : CPLSetConfigOption("CPL_DEBUG", "TEST");
1127 :
1128 1 : CPLErrorHandler oldHandler = CPLSetErrorHandler(myErrorHandler);
1129 1 : gbGotError = false;
1130 1 : CPLDebug("TEST", "Test");
1131 1 : ASSERT_EQ(gbGotError, true);
1132 1 : gbGotError = false;
1133 1 : CPLSetErrorHandler(oldHandler);
1134 :
1135 1 : CPLPushErrorHandler(myErrorHandler);
1136 1 : gbGotError = false;
1137 1 : CPLDebug("TEST", "Test");
1138 1 : ASSERT_EQ(gbGotError, true);
1139 1 : gbGotError = false;
1140 1 : CPLPopErrorHandler();
1141 :
1142 1 : oldHandler = CPLSetErrorHandler(myErrorHandler);
1143 1 : CPLSetCurrentErrorHandlerCatchDebug(FALSE);
1144 1 : gbGotError = false;
1145 1 : CPLDebug("TEST", "Test");
1146 1 : ASSERT_EQ(gbGotError, false);
1147 1 : gbGotError = false;
1148 1 : CPLSetErrorHandler(oldHandler);
1149 :
1150 1 : CPLPushErrorHandler(myErrorHandler);
1151 1 : CPLSetCurrentErrorHandlerCatchDebug(FALSE);
1152 1 : gbGotError = false;
1153 1 : CPLDebug("TEST", "Test");
1154 1 : ASSERT_EQ(gbGotError, false);
1155 1 : gbGotError = false;
1156 1 : CPLPopErrorHandler();
1157 :
1158 1 : CPLSetConfigOption("CPL_DEBUG", oldVal.size() ? oldVal.c_str() : nullptr);
1159 :
1160 1 : oldHandler = CPLSetErrorHandler(nullptr);
1161 1 : CPLDebug("TEST", "Test");
1162 1 : CPLError(CE_Failure, CPLE_AppDefined, "test");
1163 1 : CPLErrorHandler newOldHandler = CPLSetErrorHandler(nullptr);
1164 1 : ASSERT_EQ(newOldHandler, static_cast<CPLErrorHandler>(nullptr));
1165 1 : CPLDebug("TEST", "Test");
1166 1 : CPLError(CE_Failure, CPLE_AppDefined, "test");
1167 1 : CPLSetErrorHandler(oldHandler);
1168 : }
1169 :
1170 : /************************************************************************/
1171 : /* CPLString::replaceAll() */
1172 : /************************************************************************/
1173 :
1174 4 : TEST_F(test_cpl, CPLString_replaceAll)
1175 : {
1176 1 : CPLString osTest;
1177 1 : osTest = "foobarbarfoo";
1178 1 : osTest.replaceAll("bar", "was_bar");
1179 1 : ASSERT_EQ(osTest, "foowas_barwas_barfoo");
1180 :
1181 1 : osTest = "foobarbarfoo";
1182 1 : osTest.replaceAll("X", "was_bar");
1183 1 : ASSERT_EQ(osTest, "foobarbarfoo");
1184 :
1185 1 : osTest = "foobarbarfoo";
1186 1 : osTest.replaceAll("", "was_bar");
1187 1 : ASSERT_EQ(osTest, "foobarbarfoo");
1188 :
1189 1 : osTest = "foobarbarfoo";
1190 1 : osTest.replaceAll("bar", "");
1191 1 : ASSERT_EQ(osTest, "foofoo");
1192 :
1193 1 : osTest = "foobarbarfoo";
1194 1 : osTest.replaceAll('b', 'B');
1195 1 : ASSERT_EQ(osTest, "fooBarBarfoo");
1196 :
1197 1 : osTest = "foobarbarfoo";
1198 1 : osTest.replaceAll('b', "B");
1199 1 : ASSERT_EQ(osTest, "fooBarBarfoo");
1200 :
1201 1 : osTest = "foobarbarfoo";
1202 1 : osTest.replaceAll("b", 'B');
1203 1 : ASSERT_EQ(osTest, "fooBarBarfoo");
1204 : }
1205 :
1206 : /************************************************************************/
1207 : /* VSIMallocAligned() */
1208 : /************************************************************************/
1209 4 : TEST_F(test_cpl, VSIMallocAligned)
1210 : {
1211 1 : GByte *ptr = static_cast<GByte *>(VSIMallocAligned(sizeof(void *), 1));
1212 1 : ASSERT_TRUE(ptr != nullptr);
1213 1 : ASSERT_TRUE(((size_t)ptr % sizeof(void *)) == 0);
1214 1 : *ptr = 1;
1215 1 : VSIFreeAligned(ptr);
1216 :
1217 1 : ptr = static_cast<GByte *>(VSIMallocAligned(16, 1));
1218 1 : ASSERT_TRUE(ptr != nullptr);
1219 1 : ASSERT_TRUE(((size_t)ptr % 16) == 0);
1220 1 : *ptr = 1;
1221 1 : VSIFreeAligned(ptr);
1222 :
1223 1 : VSIFreeAligned(nullptr);
1224 :
1225 : #ifndef _WIN32
1226 : // Illegal use of API. Returns non NULL on Windows
1227 1 : ptr = static_cast<GByte *>(VSIMallocAligned(2, 1));
1228 1 : EXPECT_TRUE(ptr == nullptr);
1229 1 : VSIFree(ptr);
1230 :
1231 : // Illegal use of API. Crashes on Windows
1232 1 : ptr = static_cast<GByte *>(VSIMallocAligned(5, 1));
1233 1 : EXPECT_TRUE(ptr == nullptr);
1234 1 : VSIFree(ptr);
1235 : #endif
1236 :
1237 1 : if (!CSLTestBoolean(CPLGetConfigOption("SKIP_MEM_INTENSIVE_TEST", "NO")))
1238 : {
1239 : // The following tests will fail because such allocations cannot succeed
1240 : #if SIZEOF_VOIDP == 8
1241 : ptr = static_cast<GByte *>(
1242 1 : VSIMallocAligned(sizeof(void *), ~((size_t)0)));
1243 1 : EXPECT_TRUE(ptr == nullptr);
1244 1 : VSIFree(ptr);
1245 :
1246 : ptr = static_cast<GByte *>(
1247 1 : VSIMallocAligned(sizeof(void *), (~((size_t)0)) - sizeof(void *)));
1248 1 : EXPECT_TRUE(ptr == nullptr);
1249 1 : VSIFree(ptr);
1250 : #endif
1251 : }
1252 : }
1253 :
1254 : /************************************************************************/
1255 : /* CPLGetConfigOptions() / CPLSetConfigOptions() */
1256 : /************************************************************************/
1257 4 : TEST_F(test_cpl, CPLGetConfigOptions)
1258 : {
1259 1 : CPLSetConfigOption("FOOFOO", "BAR");
1260 1 : char **options = CPLGetConfigOptions();
1261 1 : EXPECT_STREQ(CSLFetchNameValue(options, "FOOFOO"), "BAR");
1262 1 : CPLSetConfigOptions(nullptr);
1263 1 : EXPECT_STREQ(CPLGetConfigOption("FOOFOO", "i_dont_exist"), "i_dont_exist");
1264 1 : CPLSetConfigOptions(options);
1265 1 : EXPECT_STREQ(CPLGetConfigOption("FOOFOO", "i_dont_exist"), "BAR");
1266 1 : CSLDestroy(options);
1267 1 : }
1268 :
1269 : /************************************************************************/
1270 : /* CPLGetThreadLocalConfigOptions() / CPLSetThreadLocalConfigOptions() */
1271 : /************************************************************************/
1272 4 : TEST_F(test_cpl, CPLGetThreadLocalConfigOptions)
1273 : {
1274 1 : CPLSetThreadLocalConfigOption("FOOFOO", "BAR");
1275 1 : char **options = CPLGetThreadLocalConfigOptions();
1276 1 : EXPECT_STREQ(CSLFetchNameValue(options, "FOOFOO"), "BAR");
1277 1 : CPLSetThreadLocalConfigOptions(nullptr);
1278 1 : EXPECT_STREQ(CPLGetThreadLocalConfigOption("FOOFOO", "i_dont_exist"),
1279 : "i_dont_exist");
1280 1 : CPLSetThreadLocalConfigOptions(options);
1281 1 : EXPECT_STREQ(CPLGetThreadLocalConfigOption("FOOFOO", "i_dont_exist"),
1282 : "BAR");
1283 1 : CSLDestroy(options);
1284 1 : }
1285 :
1286 4 : TEST_F(test_cpl, CPLExpandTilde)
1287 : {
1288 1 : EXPECT_STREQ(CPLExpandTilde("/foo/bar"), "/foo/bar");
1289 :
1290 1 : CPLSetConfigOption("HOME", "/foo");
1291 1 : ASSERT_TRUE(EQUAL(CPLExpandTilde("~/bar"), "/foo/bar") ||
1292 : EQUAL(CPLExpandTilde("~/bar"), "/foo\\bar"));
1293 1 : CPLSetConfigOption("HOME", nullptr);
1294 : }
1295 :
1296 4 : TEST_F(test_cpl, CPLString_constructors)
1297 : {
1298 : // CPLString(std::string) constructor
1299 2 : ASSERT_STREQ(CPLString(std::string("abc")).c_str(), "abc");
1300 :
1301 : // CPLString(const char*) constructor
1302 2 : ASSERT_STREQ(CPLString("abc").c_str(), "abc");
1303 :
1304 : // CPLString(const char*, n) constructor
1305 2 : ASSERT_STREQ(CPLString("abc", 1).c_str(), "a");
1306 : }
1307 :
1308 4 : TEST_F(test_cpl, CPLErrorSetState)
1309 : {
1310 : // NOTE: Assumes cpl_error.cpp defines DEFAULT_LAST_ERR_MSG_SIZE=500
1311 1 : char pszMsg[] = "0abcdefghijklmnopqrstuvwxyz0123456789!@#$%&*()_+=|"
1312 : "1abcdefghijklmnopqrstuvwxyz0123456789!@#$%&*()_+=|"
1313 : "2abcdefghijklmnopqrstuvwxyz0123456789!@#$%&*()_+=|"
1314 : "3abcdefghijklmnopqrstuvwxyz0123456789!@#$%&*()_+=|"
1315 : "4abcdefghijklmnopqrstuvwxyz0123456789!@#$%&*()_+=|"
1316 : "5abcdefghijklmnopqrstuvwxyz0123456789!@#$%&*()_+=|"
1317 : "6abcdefghijklmnopqrstuvwxyz0123456789!@#$%&*()_+=|"
1318 : "7abcdefghijklmnopqrstuvwxyz0123456789!@#$%&*()_+=|"
1319 : "8abcdefghijklmnopqrstuvwxyz0123456789!@#$%&*()_+=|"
1320 : "9abcdefghijklmnopqrstuvwxyz0123456789!@#$%&*()_+=|" // 500
1321 : "0abcdefghijklmnopqrstuvwxyz0123456789!@#$%&*()_+=|" // 550
1322 : ;
1323 :
1324 1 : CPLErrorReset();
1325 1 : CPLErrorSetState(CE_Warning, 1, pszMsg);
1326 1 : ASSERT_EQ(strlen(pszMsg) - 50 - 1, // length - 50 - 1 (null-terminator)
1327 : strlen(CPLGetLastErrorMsg())); // DEFAULT_LAST_ERR_MSG_SIZE - 1
1328 : }
1329 :
1330 4 : TEST_F(test_cpl, CPLUnescapeString)
1331 : {
1332 1 : char *pszText = CPLUnescapeString(
1333 : "<>&'"???", nullptr, CPLES_XML);
1334 1 : EXPECT_STREQ(pszText, "<>&'\"???");
1335 1 : CPLFree(pszText);
1336 :
1337 : // Integer overflow
1338 1 : pszText = CPLUnescapeString("&10000000000000000;", nullptr, CPLES_XML);
1339 : // We do not really care about the return value
1340 1 : CPLFree(pszText);
1341 :
1342 : // Integer overflow
1343 1 : pszText = CPLUnescapeString("�", nullptr, CPLES_XML);
1344 : // We do not really care about the return value
1345 1 : CPLFree(pszText);
1346 :
1347 : // Error case
1348 1 : pszText = CPLUnescapeString("&foo", nullptr, CPLES_XML);
1349 1 : EXPECT_STREQ(pszText, "");
1350 1 : CPLFree(pszText);
1351 :
1352 : // Error case
1353 1 : pszText = CPLUnescapeString("&#x", nullptr, CPLES_XML);
1354 1 : EXPECT_STREQ(pszText, "");
1355 1 : CPLFree(pszText);
1356 :
1357 : // Error case
1358 1 : pszText = CPLUnescapeString("&#", nullptr, CPLES_XML);
1359 1 : EXPECT_STREQ(pszText, "");
1360 1 : CPLFree(pszText);
1361 1 : }
1362 :
1363 : // Test signed int safe maths
1364 4 : TEST_F(test_cpl, CPLSM_signed)
1365 : {
1366 1 : ASSERT_EQ((CPLSM(-2) + CPLSM(3)).v(), 1);
1367 1 : ASSERT_EQ((CPLSM(-2) + CPLSM(1)).v(), -1);
1368 1 : ASSERT_EQ((CPLSM(-2) + CPLSM(-1)).v(), -3);
1369 1 : ASSERT_EQ((CPLSM(2) + CPLSM(-3)).v(), -1);
1370 1 : ASSERT_EQ((CPLSM(2) + CPLSM(-1)).v(), 1);
1371 1 : ASSERT_EQ((CPLSM(2) + CPLSM(1)).v(), 3);
1372 1 : ASSERT_EQ((CPLSM(INT_MAX - 1) + CPLSM(1)).v(), INT_MAX);
1373 1 : ASSERT_EQ((CPLSM(1) + CPLSM(INT_MAX - 1)).v(), INT_MAX);
1374 1 : ASSERT_EQ((CPLSM(INT_MAX) + CPLSM(-1)).v(), INT_MAX - 1);
1375 1 : ASSERT_EQ((CPLSM(-1) + CPLSM(INT_MAX)).v(), INT_MAX - 1);
1376 1 : ASSERT_EQ((CPLSM(INT_MIN + 1) + CPLSM(-1)).v(), INT_MIN);
1377 1 : ASSERT_EQ((CPLSM(-1) + CPLSM(INT_MIN + 1)).v(), INT_MIN);
1378 : try
1379 : {
1380 1 : (CPLSM(INT_MAX) + CPLSM(1)).v();
1381 0 : ASSERT_TRUE(false);
1382 : }
1383 1 : catch (...)
1384 : {
1385 : }
1386 : try
1387 : {
1388 1 : (CPLSM(1) + CPLSM(INT_MAX)).v();
1389 0 : ASSERT_TRUE(false);
1390 : }
1391 1 : catch (...)
1392 : {
1393 : }
1394 : try
1395 : {
1396 1 : (CPLSM(INT_MIN) + CPLSM(-1)).v();
1397 0 : ASSERT_TRUE(false);
1398 : }
1399 1 : catch (...)
1400 : {
1401 : }
1402 : try
1403 : {
1404 1 : (CPLSM(-1) + CPLSM(INT_MIN)).v();
1405 0 : ASSERT_TRUE(false);
1406 : }
1407 1 : catch (...)
1408 : {
1409 : }
1410 :
1411 1 : ASSERT_EQ((CPLSM(-2) - CPLSM(1)).v(), -3);
1412 1 : ASSERT_EQ((CPLSM(-2) - CPLSM(-1)).v(), -1);
1413 1 : ASSERT_EQ((CPLSM(-2) - CPLSM(-3)).v(), 1);
1414 1 : ASSERT_EQ((CPLSM(2) - CPLSM(-1)).v(), 3);
1415 1 : ASSERT_EQ((CPLSM(2) - CPLSM(1)).v(), 1);
1416 1 : ASSERT_EQ((CPLSM(2) - CPLSM(3)).v(), -1);
1417 1 : ASSERT_EQ((CPLSM(INT_MAX) - CPLSM(1)).v(), INT_MAX - 1);
1418 1 : ASSERT_EQ((CPLSM(INT_MIN + 1) - CPLSM(1)).v(), INT_MIN);
1419 1 : ASSERT_EQ((CPLSM(0) - CPLSM(INT_MIN + 1)).v(), INT_MAX);
1420 1 : ASSERT_EQ((CPLSM(0) - CPLSM(INT_MAX)).v(), -INT_MAX);
1421 : try
1422 : {
1423 1 : (CPLSM(INT_MIN) - CPLSM(1)).v();
1424 0 : ASSERT_TRUE(false);
1425 : }
1426 1 : catch (...)
1427 : {
1428 : }
1429 : try
1430 : {
1431 1 : (CPLSM(0) - CPLSM(INT_MIN)).v();
1432 0 : ASSERT_TRUE(false);
1433 : }
1434 1 : catch (...)
1435 : {
1436 : }
1437 : try
1438 : {
1439 1 : (CPLSM(INT_MIN) - CPLSM(1)).v();
1440 0 : ASSERT_TRUE(false);
1441 : }
1442 1 : catch (...)
1443 : {
1444 : }
1445 :
1446 1 : ASSERT_EQ((CPLSM(INT_MIN + 1) * CPLSM(-1)).v(), INT_MAX);
1447 1 : ASSERT_EQ((CPLSM(-1) * CPLSM(INT_MIN + 1)).v(), INT_MAX);
1448 1 : ASSERT_EQ((CPLSM(INT_MIN) * CPLSM(1)).v(), INT_MIN);
1449 1 : ASSERT_EQ((CPLSM(1) * CPLSM(INT_MIN)).v(), INT_MIN);
1450 1 : ASSERT_EQ((CPLSM(1) * CPLSM(INT_MAX)).v(), INT_MAX);
1451 1 : ASSERT_EQ((CPLSM(INT_MIN / 2) * CPLSM(2)).v(), INT_MIN);
1452 1 : ASSERT_EQ((CPLSM(INT_MAX / 2) * CPLSM(2)).v(), INT_MAX - 1);
1453 1 : ASSERT_EQ((CPLSM(INT_MAX / 2 + 1) * CPLSM(-2)).v(), INT_MIN);
1454 1 : ASSERT_EQ((CPLSM(0) * CPLSM(INT_MIN)).v(), 0);
1455 1 : ASSERT_EQ((CPLSM(INT_MIN) * CPLSM(0)).v(), 0);
1456 1 : ASSERT_EQ((CPLSM(0) * CPLSM(INT_MAX)).v(), 0);
1457 1 : ASSERT_EQ((CPLSM(INT_MAX) * CPLSM(0)).v(), 0);
1458 : try
1459 : {
1460 1 : (CPLSM(INT_MAX / 2 + 1) * CPLSM(2)).v();
1461 0 : ASSERT_TRUE(false);
1462 : }
1463 1 : catch (...)
1464 : {
1465 : }
1466 : try
1467 : {
1468 1 : (CPLSM(2) * CPLSM(INT_MAX / 2 + 1)).v();
1469 0 : ASSERT_TRUE(false);
1470 : }
1471 1 : catch (...)
1472 : {
1473 : }
1474 : try
1475 : {
1476 1 : (CPLSM(INT_MIN) * CPLSM(-1)).v();
1477 0 : ASSERT_TRUE(false);
1478 : }
1479 1 : catch (...)
1480 : {
1481 : }
1482 : try
1483 : {
1484 1 : (CPLSM(INT_MIN) * CPLSM(2)).v();
1485 0 : ASSERT_TRUE(false);
1486 : }
1487 1 : catch (...)
1488 : {
1489 : }
1490 : try
1491 : {
1492 1 : (CPLSM(2) * CPLSM(INT_MIN)).v();
1493 0 : ASSERT_TRUE(false);
1494 : }
1495 1 : catch (...)
1496 : {
1497 : }
1498 :
1499 1 : ASSERT_EQ((CPLSM(4) / CPLSM(2)).v(), 2);
1500 1 : ASSERT_EQ((CPLSM(4) / CPLSM(-2)).v(), -2);
1501 1 : ASSERT_EQ((CPLSM(-4) / CPLSM(2)).v(), -2);
1502 1 : ASSERT_EQ((CPLSM(-4) / CPLSM(-2)).v(), 2);
1503 1 : ASSERT_EQ((CPLSM(0) / CPLSM(2)).v(), 0);
1504 1 : ASSERT_EQ((CPLSM(0) / CPLSM(-2)).v(), 0);
1505 1 : ASSERT_EQ((CPLSM(INT_MAX) / CPLSM(1)).v(), INT_MAX);
1506 1 : ASSERT_EQ((CPLSM(INT_MAX) / CPLSM(-1)).v(), -INT_MAX);
1507 1 : ASSERT_EQ((CPLSM(INT_MIN) / CPLSM(1)).v(), INT_MIN);
1508 : try
1509 : {
1510 1 : (CPLSM(-1) * CPLSM(INT_MIN)).v();
1511 0 : ASSERT_TRUE(false);
1512 : }
1513 1 : catch (...)
1514 : {
1515 : }
1516 : try
1517 : {
1518 1 : (CPLSM(INT_MIN) / CPLSM(-1)).v();
1519 0 : ASSERT_TRUE(false);
1520 : }
1521 1 : catch (...)
1522 : {
1523 : }
1524 : try
1525 : {
1526 1 : (CPLSM(1) / CPLSM(0)).v();
1527 0 : ASSERT_TRUE(false);
1528 : }
1529 1 : catch (...)
1530 : {
1531 : }
1532 :
1533 1 : ASSERT_EQ(CPLSM_TO_UNSIGNED(1).v(), 1U);
1534 : try
1535 : {
1536 1 : CPLSM_TO_UNSIGNED(-1);
1537 0 : ASSERT_TRUE(false);
1538 : }
1539 1 : catch (...)
1540 : {
1541 : }
1542 : }
1543 :
1544 : // Test unsigned int safe maths
1545 4 : TEST_F(test_cpl, CPLSM_unsigned)
1546 : {
1547 1 : ASSERT_EQ((CPLSM(2U) + CPLSM(3U)).v(), 5U);
1548 1 : ASSERT_EQ((CPLSM(UINT_MAX - 1) + CPLSM(1U)).v(), UINT_MAX);
1549 : try
1550 : {
1551 1 : (CPLSM(UINT_MAX) + CPLSM(1U)).v();
1552 0 : ASSERT_TRUE(false);
1553 : }
1554 1 : catch (...)
1555 : {
1556 : }
1557 :
1558 1 : ASSERT_EQ((CPLSM(4U) - CPLSM(3U)).v(), 1U);
1559 1 : ASSERT_EQ((CPLSM(4U) - CPLSM(4U)).v(), 0U);
1560 1 : ASSERT_EQ((CPLSM(UINT_MAX) - CPLSM(1U)).v(), UINT_MAX - 1);
1561 : try
1562 : {
1563 1 : (CPLSM(4U) - CPLSM(5U)).v();
1564 0 : ASSERT_TRUE(false);
1565 : }
1566 1 : catch (...)
1567 : {
1568 : }
1569 :
1570 1 : ASSERT_EQ((CPLSM(0U) * CPLSM(UINT_MAX)).v(), 0U);
1571 1 : ASSERT_EQ((CPLSM(UINT_MAX) * CPLSM(0U)).v(), 0U);
1572 1 : ASSERT_EQ((CPLSM(UINT_MAX) * CPLSM(1U)).v(), UINT_MAX);
1573 1 : ASSERT_EQ((CPLSM(1U) * CPLSM(UINT_MAX)).v(), UINT_MAX);
1574 : try
1575 : {
1576 1 : (CPLSM(UINT_MAX) * CPLSM(2U)).v();
1577 0 : ASSERT_TRUE(false);
1578 : }
1579 1 : catch (...)
1580 : {
1581 : }
1582 : try
1583 : {
1584 1 : (CPLSM(2U) * CPLSM(UINT_MAX)).v();
1585 0 : ASSERT_TRUE(false);
1586 : }
1587 1 : catch (...)
1588 : {
1589 : }
1590 :
1591 1 : ASSERT_EQ((CPLSM(4U) / CPLSM(2U)).v(), 2U);
1592 1 : ASSERT_EQ((CPLSM(UINT_MAX) / CPLSM(1U)).v(), UINT_MAX);
1593 : try
1594 : {
1595 1 : (CPLSM(1U) / CPLSM(0U)).v();
1596 0 : ASSERT_TRUE(false);
1597 : }
1598 1 : catch (...)
1599 : {
1600 : }
1601 :
1602 1 : ASSERT_EQ((CPLSM(static_cast<GUInt64>(2) * 1000 * 1000 * 1000) +
1603 : CPLSM(static_cast<GUInt64>(3) * 1000 * 1000 * 1000))
1604 : .v(),
1605 : static_cast<GUInt64>(5) * 1000 * 1000 * 1000);
1606 1 : ASSERT_EQ((CPLSM(std::numeric_limits<GUInt64>::max() - 1) +
1607 : CPLSM(static_cast<GUInt64>(1)))
1608 : .v(),
1609 : std::numeric_limits<GUInt64>::max());
1610 : try
1611 : {
1612 2 : (CPLSM(std::numeric_limits<GUInt64>::max()) +
1613 3 : CPLSM(static_cast<GUInt64>(1)));
1614 : }
1615 1 : catch (...)
1616 : {
1617 : }
1618 :
1619 1 : ASSERT_EQ((CPLSM(static_cast<GUInt64>(2) * 1000 * 1000 * 1000) *
1620 : CPLSM(static_cast<GUInt64>(3) * 1000 * 1000 * 1000))
1621 : .v(),
1622 : static_cast<GUInt64>(6) * 1000 * 1000 * 1000 * 1000 * 1000 *
1623 : 1000);
1624 1 : ASSERT_EQ((CPLSM(std::numeric_limits<GUInt64>::max()) *
1625 : CPLSM(static_cast<GUInt64>(1)))
1626 : .v(),
1627 : std::numeric_limits<GUInt64>::max());
1628 : try
1629 : {
1630 2 : (CPLSM(std::numeric_limits<GUInt64>::max()) *
1631 3 : CPLSM(static_cast<GUInt64>(2)));
1632 : }
1633 1 : catch (...)
1634 : {
1635 : }
1636 : }
1637 :
1638 : // Test CPLParseRFC822DateTime()
1639 4 : TEST_F(test_cpl, CPLParseRFC822DateTime)
1640 : {
1641 : int year, month, day, hour, min, sec, tz, weekday;
1642 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("", &year, &month, &day, &hour, &min,
1643 : &sec, &tz, &weekday));
1644 :
1645 1 : ASSERT_EQ(CPLParseRFC822DateTime("Thu, 15 Jan 2017 12:34:56 +0015", nullptr,
1646 : nullptr, nullptr, nullptr, nullptr,
1647 : nullptr, nullptr, nullptr),
1648 : TRUE);
1649 :
1650 1 : ASSERT_EQ(CPLParseRFC822DateTime("Thu, 15 Jan 2017 12:34:56 +0015", &year,
1651 : &month, &day, &hour, &min, &sec, &tz,
1652 : &weekday),
1653 : TRUE);
1654 1 : ASSERT_EQ(year, 2017);
1655 1 : ASSERT_EQ(month, 1);
1656 1 : ASSERT_EQ(day, 15);
1657 1 : ASSERT_EQ(hour, 12);
1658 1 : ASSERT_EQ(min, 34);
1659 1 : ASSERT_EQ(sec, 56);
1660 1 : ASSERT_EQ(tz, 101);
1661 1 : ASSERT_EQ(weekday, 4);
1662 :
1663 1 : ASSERT_EQ(CPLParseRFC822DateTime("Thu, 15 Jan 2017 12:34:56 GMT", &year,
1664 : &month, &day, &hour, &min, &sec, &tz,
1665 : &weekday),
1666 : TRUE);
1667 1 : ASSERT_EQ(year, 2017);
1668 1 : ASSERT_EQ(month, 1);
1669 1 : ASSERT_EQ(day, 15);
1670 1 : ASSERT_EQ(hour, 12);
1671 1 : ASSERT_EQ(min, 34);
1672 1 : ASSERT_EQ(sec, 56);
1673 1 : ASSERT_EQ(tz, 100);
1674 1 : ASSERT_EQ(weekday, 4);
1675 :
1676 : // Without day of week, second and timezone
1677 1 : ASSERT_EQ(CPLParseRFC822DateTime("15 Jan 2017 12:34", &year, &month, &day,
1678 : &hour, &min, &sec, &tz, &weekday),
1679 : TRUE);
1680 1 : ASSERT_EQ(year, 2017);
1681 1 : ASSERT_EQ(month, 1);
1682 1 : ASSERT_EQ(day, 15);
1683 1 : ASSERT_EQ(hour, 12);
1684 1 : ASSERT_EQ(min, 34);
1685 1 : ASSERT_EQ(sec, -1);
1686 1 : ASSERT_EQ(tz, 0);
1687 1 : ASSERT_EQ(weekday, 0);
1688 :
1689 1 : ASSERT_EQ(CPLParseRFC822DateTime("XXX, 15 Jan 2017 12:34:56 GMT", &year,
1690 : &month, &day, &hour, &min, &sec, &tz,
1691 : &weekday),
1692 : TRUE);
1693 1 : ASSERT_EQ(weekday, 0);
1694 :
1695 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("Sun, 01 Jan 2017 12", &year, &month,
1696 : &day, &hour, &min, &sec, &tz,
1697 : &weekday));
1698 :
1699 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("00 Jan 2017 12:34:56 GMT", &year,
1700 : &month, &day, &hour, &min, &sec, &tz,
1701 : &weekday));
1702 :
1703 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("32 Jan 2017 12:34:56 GMT", &year,
1704 : &month, &day, &hour, &min, &sec, &tz,
1705 : &weekday));
1706 :
1707 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("01 XXX 2017 12:34:56 GMT", &year,
1708 : &month, &day, &hour, &min, &sec, &tz,
1709 : &weekday));
1710 :
1711 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("01 Jan 2017 -1:34:56 GMT", &year,
1712 : &month, &day, &hour, &min, &sec, &tz,
1713 : &weekday));
1714 :
1715 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("01 Jan 2017 24:34:56 GMT", &year,
1716 : &month, &day, &hour, &min, &sec, &tz,
1717 : &weekday));
1718 :
1719 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("01 Jan 2017 12:-1:56 GMT", &year,
1720 : &month, &day, &hour, &min, &sec, &tz,
1721 : &weekday));
1722 :
1723 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("01 Jan 2017 12:60:56 GMT", &year,
1724 : &month, &day, &hour, &min, &sec, &tz,
1725 : &weekday));
1726 :
1727 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("01 Jan 2017 12:34:-1 GMT", &year,
1728 : &month, &day, &hour, &min, &sec, &tz,
1729 : &weekday));
1730 :
1731 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("01 Jan 2017 12:34:61 GMT", &year,
1732 : &month, &day, &hour, &min, &sec, &tz,
1733 : &weekday));
1734 :
1735 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("15 Jan 2017 12:34:56 XXX", &year,
1736 : &month, &day, &hour, &min, &sec, &tz,
1737 : &weekday));
1738 :
1739 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("15 Jan 2017 12:34:56 +-100", &year,
1740 : &month, &day, &hour, &min, &sec, &tz,
1741 : &weekday));
1742 :
1743 1 : ASSERT_TRUE(!CPLParseRFC822DateTime("15 Jan 2017 12:34:56 +9900", &year,
1744 : &month, &day, &hour, &min, &sec, &tz,
1745 : &weekday));
1746 : }
1747 :
1748 : // Test CPLParseMemorySize()
1749 4 : TEST_F(test_cpl, CPLParseMemorySize)
1750 : {
1751 : GIntBig nValue;
1752 : bool bUnitSpecified;
1753 : CPLErr result;
1754 :
1755 1 : result = CPLParseMemorySize("327mb", &nValue, &bUnitSpecified);
1756 1 : EXPECT_EQ(result, CE_None);
1757 1 : EXPECT_EQ(nValue, 327 * 1024 * 1024);
1758 1 : EXPECT_TRUE(bUnitSpecified);
1759 :
1760 1 : result = CPLParseMemorySize("327MB", &nValue, &bUnitSpecified);
1761 1 : EXPECT_EQ(result, CE_None);
1762 1 : EXPECT_EQ(nValue, 327 * 1024 * 1024);
1763 1 : EXPECT_TRUE(bUnitSpecified);
1764 :
1765 1 : result = CPLParseMemorySize("102.9K", &nValue, &bUnitSpecified);
1766 1 : EXPECT_EQ(result, CE_None);
1767 1 : EXPECT_EQ(nValue, static_cast<GIntBig>(102.9 * 1024));
1768 1 : EXPECT_TRUE(bUnitSpecified);
1769 :
1770 1 : result = CPLParseMemorySize("102.9 kB", &nValue, &bUnitSpecified);
1771 1 : EXPECT_EQ(result, CE_None);
1772 1 : EXPECT_EQ(nValue, static_cast<GIntBig>(102.9 * 1024));
1773 1 : EXPECT_TRUE(bUnitSpecified);
1774 :
1775 1 : result = CPLParseMemorySize("100%", &nValue, &bUnitSpecified);
1776 1 : EXPECT_EQ(result, CE_None);
1777 1 : EXPECT_GT(nValue, 100 * 1024 * 1024);
1778 1 : EXPECT_TRUE(bUnitSpecified);
1779 :
1780 1 : result = CPLParseMemorySize("0", &nValue, &bUnitSpecified);
1781 1 : EXPECT_EQ(result, CE_None);
1782 1 : EXPECT_EQ(nValue, 0);
1783 1 : EXPECT_FALSE(bUnitSpecified);
1784 :
1785 1 : result = CPLParseMemorySize("0MB", &nValue, &bUnitSpecified);
1786 1 : EXPECT_EQ(result, CE_None);
1787 1 : EXPECT_EQ(nValue, 0);
1788 1 : EXPECT_TRUE(bUnitSpecified);
1789 :
1790 1 : result = CPLParseMemorySize(" 802 ", &nValue, &bUnitSpecified);
1791 1 : EXPECT_EQ(result, CE_None);
1792 1 : EXPECT_EQ(nValue, 802);
1793 1 : EXPECT_FALSE(bUnitSpecified);
1794 :
1795 1 : result = CPLParseMemorySize("110%", &nValue, &bUnitSpecified);
1796 1 : EXPECT_EQ(result, CE_Failure);
1797 :
1798 1 : result = CPLParseMemorySize("8kbit", &nValue, &bUnitSpecified);
1799 1 : EXPECT_EQ(result, CE_Failure);
1800 :
1801 1 : result = CPLParseMemorySize("8ZB", &nValue, &bUnitSpecified);
1802 1 : EXPECT_EQ(result, CE_Failure);
1803 :
1804 1 : result = CPLParseMemorySize("8Z", &nValue, &bUnitSpecified);
1805 1 : EXPECT_EQ(result, CE_Failure);
1806 :
1807 1 : result = CPLParseMemorySize("", &nValue, &bUnitSpecified);
1808 1 : EXPECT_EQ(result, CE_Failure);
1809 :
1810 1 : result = CPLParseMemorySize(" ", &nValue, &bUnitSpecified);
1811 1 : EXPECT_EQ(result, CE_Failure);
1812 :
1813 1 : result = CPLParseMemorySize("-100MB", &nValue, &bUnitSpecified);
1814 1 : EXPECT_EQ(result, CE_Failure);
1815 :
1816 1 : result = CPLParseMemorySize("nan", &nValue, &bUnitSpecified);
1817 1 : EXPECT_EQ(result, CE_Failure);
1818 1 : }
1819 :
1820 : // Test CPLCopyTree()
1821 4 : TEST_F(test_cpl, CPLCopyTree)
1822 : {
1823 1 : CPLString osTmpPath(CPLGetDirname(CPLGenerateTempFilename(nullptr)));
1824 1 : CPLString osSrcDir(CPLFormFilename(osTmpPath, "src_dir", nullptr));
1825 1 : CPLString osNewDir(CPLFormFilename(osTmpPath, "new_dir", nullptr));
1826 1 : CPLString osSrcFile(CPLFormFilename(osSrcDir, "my.bin", nullptr));
1827 1 : CPLString osNewFile(CPLFormFilename(osNewDir, "my.bin", nullptr));
1828 :
1829 : // Cleanup if previous test failed
1830 1 : VSIUnlink(osNewFile);
1831 1 : VSIRmdir(osNewDir);
1832 1 : VSIUnlink(osSrcFile);
1833 1 : VSIRmdir(osSrcDir);
1834 :
1835 1 : ASSERT_TRUE(VSIMkdir(osSrcDir, 0755) == 0);
1836 1 : VSILFILE *fp = VSIFOpenL(osSrcFile, "wb");
1837 1 : ASSERT_TRUE(fp != nullptr);
1838 1 : VSIFCloseL(fp);
1839 :
1840 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
1841 1 : ASSERT_TRUE(CPLCopyTree(osNewDir, "/i/do_not/exist") < 0);
1842 1 : CPLPopErrorHandler();
1843 :
1844 1 : ASSERT_TRUE(CPLCopyTree(osNewDir, osSrcDir) == 0);
1845 : VSIStatBufL sStat;
1846 1 : ASSERT_TRUE(VSIStatL(osNewFile, &sStat) == 0);
1847 :
1848 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
1849 1 : ASSERT_TRUE(CPLCopyTree(osNewDir, osSrcDir) < 0);
1850 1 : CPLPopErrorHandler();
1851 :
1852 1 : VSIUnlink(osNewFile);
1853 1 : VSIRmdir(osNewDir);
1854 1 : VSIUnlink(osSrcFile);
1855 1 : VSIRmdir(osSrcDir);
1856 : }
1857 :
1858 : class CPLJSonStreamingParserDump : public CPLJSonStreamingParser
1859 : {
1860 : std::vector<bool> m_abFirstMember;
1861 : CPLString m_osSerialized;
1862 : CPLString m_osException;
1863 :
1864 : public:
1865 72 : CPLJSonStreamingParserDump()
1866 72 : {
1867 72 : }
1868 :
1869 18 : virtual void Reset() CPL_OVERRIDE
1870 : {
1871 18 : m_osSerialized.clear();
1872 18 : m_osException.clear();
1873 18 : CPLJSonStreamingParser::Reset();
1874 18 : }
1875 :
1876 : virtual void String(const char *pszValue, size_t) CPL_OVERRIDE;
1877 : virtual void Number(const char *pszValue, size_t) CPL_OVERRIDE;
1878 : virtual void Boolean(bool bVal) CPL_OVERRIDE;
1879 : virtual void Null() CPL_OVERRIDE;
1880 :
1881 : virtual void StartObject() CPL_OVERRIDE;
1882 : virtual void EndObject() CPL_OVERRIDE;
1883 : virtual void StartObjectMember(const char *pszKey, size_t) CPL_OVERRIDE;
1884 :
1885 : virtual void StartArray() CPL_OVERRIDE;
1886 : virtual void EndArray() CPL_OVERRIDE;
1887 : virtual void StartArrayMember() CPL_OVERRIDE;
1888 :
1889 : virtual void Exception(const char *pszMessage) CPL_OVERRIDE;
1890 :
1891 39 : const CPLString &GetSerialized() const
1892 : {
1893 39 : return m_osSerialized;
1894 : }
1895 :
1896 51 : const CPLString &GetException() const
1897 : {
1898 51 : return m_osException;
1899 : }
1900 : };
1901 :
1902 21 : void CPLJSonStreamingParserDump::StartObject()
1903 : {
1904 21 : m_osSerialized += "{";
1905 21 : m_abFirstMember.push_back(true);
1906 21 : }
1907 :
1908 10 : void CPLJSonStreamingParserDump::EndObject()
1909 : {
1910 10 : m_osSerialized += "}";
1911 10 : m_abFirstMember.pop_back();
1912 10 : }
1913 :
1914 20 : void CPLJSonStreamingParserDump::StartObjectMember(const char *pszKey, size_t)
1915 : {
1916 20 : if (!m_abFirstMember.back())
1917 6 : m_osSerialized += ", ";
1918 20 : m_osSerialized += CPLSPrintf("\"%s\": ", pszKey);
1919 20 : m_abFirstMember.back() = false;
1920 20 : }
1921 :
1922 8 : void CPLJSonStreamingParserDump::String(const char *pszValue, size_t)
1923 : {
1924 8 : m_osSerialized += GetSerializedString(pszValue);
1925 8 : }
1926 :
1927 24 : void CPLJSonStreamingParserDump::Number(const char *pszValue, size_t)
1928 : {
1929 24 : m_osSerialized += pszValue;
1930 24 : }
1931 :
1932 8 : void CPLJSonStreamingParserDump::Boolean(bool bVal)
1933 : {
1934 8 : m_osSerialized += bVal ? "true" : "false";
1935 8 : }
1936 :
1937 7 : void CPLJSonStreamingParserDump::Null()
1938 : {
1939 7 : m_osSerialized += "null";
1940 7 : }
1941 :
1942 21 : void CPLJSonStreamingParserDump::StartArray()
1943 : {
1944 21 : m_osSerialized += "[";
1945 21 : m_abFirstMember.push_back(true);
1946 21 : }
1947 :
1948 13 : void CPLJSonStreamingParserDump::EndArray()
1949 : {
1950 13 : m_osSerialized += "]";
1951 13 : m_abFirstMember.pop_back();
1952 13 : }
1953 :
1954 15 : void CPLJSonStreamingParserDump::StartArrayMember()
1955 : {
1956 15 : if (!m_abFirstMember.back())
1957 2 : m_osSerialized += ", ";
1958 15 : m_abFirstMember.back() = false;
1959 15 : }
1960 :
1961 51 : void CPLJSonStreamingParserDump::Exception(const char *pszMessage)
1962 : {
1963 51 : m_osException = pszMessage;
1964 51 : }
1965 :
1966 : // Test CPLJSonStreamingParser()
1967 4 : TEST_F(test_cpl, CPLJSonStreamingParser)
1968 : {
1969 : // nominal cases
1970 : {
1971 1 : CPLJSonStreamingParserDump oParser;
1972 1 : const char sText[] = "true";
1973 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
1974 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
1975 :
1976 1 : oParser.Reset();
1977 5 : for (size_t i = 0; sText[i]; i++)
1978 4 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
1979 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
1980 : }
1981 : {
1982 1 : CPLJSonStreamingParserDump oParser;
1983 1 : const char sText[] = "false";
1984 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
1985 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
1986 :
1987 1 : oParser.Reset();
1988 6 : for (size_t i = 0; sText[i]; i++)
1989 5 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
1990 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
1991 : }
1992 : {
1993 1 : CPLJSonStreamingParserDump oParser;
1994 1 : const char sText[] = "null";
1995 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
1996 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
1997 :
1998 1 : oParser.Reset();
1999 5 : for (size_t i = 0; sText[i]; i++)
2000 4 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2001 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2002 : }
2003 : {
2004 1 : CPLJSonStreamingParserDump oParser;
2005 1 : const char sText[] = "10";
2006 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2007 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2008 :
2009 1 : oParser.Reset();
2010 3 : for (size_t i = 0; sText[i]; i++)
2011 2 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2012 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2013 : }
2014 : {
2015 1 : CPLJSonStreamingParserDump oParser;
2016 1 : const char sText[] = "123eE-34";
2017 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2018 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2019 :
2020 1 : oParser.Reset();
2021 9 : for (size_t i = 0; sText[i]; i++)
2022 8 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2023 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2024 : }
2025 : {
2026 1 : CPLJSonStreamingParserDump oParser;
2027 1 : const char sText[] = "\"\"";
2028 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2029 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2030 :
2031 1 : oParser.Reset();
2032 3 : for (size_t i = 0; sText[i]; i++)
2033 2 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2034 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2035 : }
2036 : {
2037 1 : CPLJSonStreamingParserDump oParser;
2038 1 : const char sText[] = "\"\\\\a\\b\\f\\n\\r\\t\\u0020\\u0001\\\"\"";
2039 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2040 1 : ASSERT_EQ(oParser.GetSerialized(),
2041 : "\"\\\\a\\b\\f\\n\\r\\t \\u0001\\\"\"");
2042 :
2043 1 : oParser.Reset();
2044 30 : for (size_t i = 0; sText[i]; i++)
2045 29 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2046 1 : ASSERT_EQ(oParser.GetSerialized(),
2047 : "\"\\\\a\\b\\f\\n\\r\\t \\u0001\\\"\"");
2048 : }
2049 : {
2050 1 : CPLJSonStreamingParserDump oParser;
2051 1 : const char sText[] =
2052 : "\"\\u0001\\u0020\\ud834\\uDD1E\\uDD1E\\uD834\\uD834\\uD834\"";
2053 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2054 1 : ASSERT_EQ(
2055 : oParser.GetSerialized(),
2056 : "\"\\u0001 \xf0\x9d\x84\x9e\xef\xbf\xbd\xef\xbf\xbd\xef\xbf\xbd\"");
2057 : }
2058 : {
2059 1 : CPLJSonStreamingParserDump oParser;
2060 1 : const char sText[] = "\"\\ud834\"";
2061 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2062 1 : ASSERT_EQ(oParser.GetSerialized(), "\"\xef\xbf\xbd\"");
2063 : }
2064 : {
2065 1 : CPLJSonStreamingParserDump oParser;
2066 1 : const char sText[] = "\"\\ud834\\t\"";
2067 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2068 1 : ASSERT_EQ(oParser.GetSerialized(), "\"\xef\xbf\xbd\\t\"");
2069 : }
2070 : {
2071 1 : CPLJSonStreamingParserDump oParser;
2072 1 : const char sText[] = "\"\\u00e9\"";
2073 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2074 1 : ASSERT_EQ(oParser.GetSerialized(), "\"\xc3\xa9\"");
2075 : }
2076 : {
2077 1 : CPLJSonStreamingParserDump oParser;
2078 1 : const char sText[] = "{}";
2079 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2080 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2081 :
2082 1 : oParser.Reset();
2083 3 : for (size_t i = 0; sText[i]; i++)
2084 2 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2085 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2086 : }
2087 : {
2088 1 : CPLJSonStreamingParserDump oParser;
2089 1 : const char sText[] = "[]";
2090 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2091 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2092 :
2093 1 : oParser.Reset();
2094 3 : for (size_t i = 0; sText[i]; i++)
2095 2 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2096 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2097 : }
2098 : {
2099 1 : CPLJSonStreamingParserDump oParser;
2100 1 : const char sText[] = "[[]]";
2101 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2102 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2103 :
2104 1 : oParser.Reset();
2105 5 : for (size_t i = 0; sText[i]; i++)
2106 4 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2107 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2108 : }
2109 : {
2110 1 : CPLJSonStreamingParserDump oParser;
2111 1 : const char sText[] = "[1]";
2112 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2113 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2114 :
2115 1 : oParser.Reset();
2116 4 : for (size_t i = 0; sText[i]; i++)
2117 3 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2118 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2119 : }
2120 : {
2121 1 : CPLJSonStreamingParserDump oParser;
2122 1 : const char sText[] = "[1,2]";
2123 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2124 1 : ASSERT_EQ(oParser.GetSerialized(), "[1, 2]");
2125 :
2126 1 : oParser.Reset();
2127 6 : for (size_t i = 0; sText[i]; i++)
2128 5 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2129 1 : ASSERT_EQ(oParser.GetSerialized(), "[1, 2]");
2130 : }
2131 : {
2132 1 : CPLJSonStreamingParserDump oParser;
2133 1 : const char sText[] = "{\"a\":null}";
2134 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2135 1 : ASSERT_EQ(oParser.GetSerialized(), "{\"a\": null}");
2136 :
2137 1 : oParser.Reset();
2138 11 : for (size_t i = 0; sText[i]; i++)
2139 10 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2140 1 : ASSERT_EQ(oParser.GetSerialized(), "{\"a\": null}");
2141 : }
2142 : {
2143 1 : CPLJSonStreamingParserDump oParser;
2144 1 : const char sText[] =
2145 : " { \"a\" : null ,\r\n\t\"b\": {\"c\": 1}, \"d\": [1] }";
2146 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2147 1 : const char sExpected[] = "{\"a\": null, \"b\": {\"c\": 1}, \"d\": [1]}";
2148 1 : ASSERT_EQ(oParser.GetSerialized(), sExpected);
2149 :
2150 1 : oParser.Reset();
2151 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2152 1 : ASSERT_EQ(oParser.GetSerialized(), sExpected);
2153 :
2154 1 : oParser.Reset();
2155 44 : for (size_t i = 0; sText[i]; i++)
2156 43 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2157 1 : ASSERT_EQ(oParser.GetSerialized(), sExpected);
2158 : }
2159 : {
2160 1 : CPLJSonStreamingParserDump oParser;
2161 1 : const char sText[] = "infinity";
2162 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2163 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2164 :
2165 1 : oParser.Reset();
2166 9 : for (size_t i = 0; sText[i]; i++)
2167 8 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2168 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2169 : }
2170 : {
2171 1 : CPLJSonStreamingParserDump oParser;
2172 1 : const char sText[] = "-infinity";
2173 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2174 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2175 :
2176 1 : oParser.Reset();
2177 10 : for (size_t i = 0; sText[i]; i++)
2178 9 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2179 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2180 : }
2181 : {
2182 1 : CPLJSonStreamingParserDump oParser;
2183 1 : const char sText[] = "nan";
2184 1 : ASSERT_TRUE(oParser.Parse(sText, strlen(sText), true));
2185 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2186 :
2187 1 : oParser.Reset();
2188 4 : for (size_t i = 0; sText[i]; i++)
2189 3 : ASSERT_TRUE(oParser.Parse(sText + i, 1, sText[i + 1] == 0));
2190 1 : ASSERT_EQ(oParser.GetSerialized(), sText);
2191 : }
2192 :
2193 : // errors
2194 : {
2195 1 : CPLJSonStreamingParserDump oParser;
2196 1 : const char sText[] = "tru";
2197 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2198 1 : ASSERT_TRUE(!oParser.GetException().empty());
2199 : }
2200 : {
2201 1 : CPLJSonStreamingParserDump oParser;
2202 1 : const char sText[] = "tru1";
2203 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2204 1 : ASSERT_TRUE(!oParser.GetException().empty());
2205 : }
2206 : {
2207 1 : CPLJSonStreamingParserDump oParser;
2208 1 : const char sText[] = "truxe";
2209 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2210 1 : ASSERT_TRUE(!oParser.GetException().empty());
2211 : }
2212 : {
2213 1 : CPLJSonStreamingParserDump oParser;
2214 1 : const char sText[] = "truex";
2215 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2216 1 : ASSERT_TRUE(!oParser.GetException().empty());
2217 : }
2218 : {
2219 1 : CPLJSonStreamingParserDump oParser;
2220 1 : const char sText[] = "fals";
2221 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2222 1 : ASSERT_TRUE(!oParser.GetException().empty());
2223 : }
2224 : {
2225 1 : CPLJSonStreamingParserDump oParser;
2226 1 : const char sText[] = "falsxe";
2227 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2228 1 : ASSERT_TRUE(!oParser.GetException().empty());
2229 : }
2230 : {
2231 1 : CPLJSonStreamingParserDump oParser;
2232 1 : const char sText[] = "falsex";
2233 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2234 1 : ASSERT_TRUE(!oParser.GetException().empty());
2235 : }
2236 : {
2237 1 : CPLJSonStreamingParserDump oParser;
2238 1 : const char sText[] = "nul";
2239 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2240 1 : ASSERT_TRUE(!oParser.GetException().empty());
2241 : }
2242 : {
2243 1 : CPLJSonStreamingParserDump oParser;
2244 1 : const char sText[] = "nulxl";
2245 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2246 1 : ASSERT_TRUE(!oParser.GetException().empty());
2247 : }
2248 : {
2249 1 : CPLJSonStreamingParserDump oParser;
2250 1 : const char sText[] = "nullx";
2251 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2252 1 : ASSERT_TRUE(!oParser.GetException().empty());
2253 : }
2254 : {
2255 1 : CPLJSonStreamingParserDump oParser;
2256 1 : const char sText[] = "na";
2257 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2258 1 : ASSERT_TRUE(!oParser.GetException().empty());
2259 : }
2260 : {
2261 1 : CPLJSonStreamingParserDump oParser;
2262 1 : const char sText[] = "nanx";
2263 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2264 1 : ASSERT_TRUE(!oParser.GetException().empty());
2265 : }
2266 : {
2267 1 : CPLJSonStreamingParserDump oParser;
2268 1 : const char sText[] = "infinit";
2269 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2270 1 : ASSERT_TRUE(!oParser.GetException().empty());
2271 : }
2272 : {
2273 1 : CPLJSonStreamingParserDump oParser;
2274 1 : const char sText[] = "infinityx";
2275 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2276 1 : ASSERT_TRUE(!oParser.GetException().empty());
2277 : }
2278 : {
2279 1 : CPLJSonStreamingParserDump oParser;
2280 1 : const char sText[] = "-infinit";
2281 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2282 1 : ASSERT_TRUE(!oParser.GetException().empty());
2283 : }
2284 : {
2285 1 : CPLJSonStreamingParserDump oParser;
2286 1 : const char sText[] = "-infinityx";
2287 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2288 1 : ASSERT_TRUE(!oParser.GetException().empty());
2289 : }
2290 : {
2291 1 : CPLJSonStreamingParserDump oParser;
2292 1 : const char sText[] = "true false";
2293 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2294 1 : ASSERT_TRUE(!oParser.GetException().empty());
2295 : }
2296 : {
2297 1 : CPLJSonStreamingParserDump oParser;
2298 1 : const char sText[] = "x";
2299 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2300 1 : ASSERT_TRUE(!oParser.GetException().empty());
2301 : }
2302 : {
2303 1 : CPLJSonStreamingParserDump oParser;
2304 1 : const char sText[] = "{";
2305 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2306 1 : ASSERT_TRUE(!oParser.GetException().empty());
2307 : }
2308 : {
2309 1 : CPLJSonStreamingParserDump oParser;
2310 1 : const char sText[] = "}";
2311 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2312 1 : ASSERT_TRUE(!oParser.GetException().empty());
2313 : }
2314 : {
2315 1 : CPLJSonStreamingParserDump oParser;
2316 1 : const char sText[] = "[";
2317 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2318 1 : ASSERT_TRUE(!oParser.GetException().empty());
2319 : }
2320 : {
2321 1 : CPLJSonStreamingParserDump oParser;
2322 1 : const char sText[] = "[1";
2323 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2324 1 : ASSERT_TRUE(!oParser.GetException().empty());
2325 : }
2326 : {
2327 1 : CPLJSonStreamingParserDump oParser;
2328 1 : const char sText[] = "[,";
2329 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2330 1 : ASSERT_TRUE(!oParser.GetException().empty());
2331 : }
2332 : {
2333 1 : CPLJSonStreamingParserDump oParser;
2334 1 : const char sText[] = "[|";
2335 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2336 1 : ASSERT_TRUE(!oParser.GetException().empty());
2337 : }
2338 : {
2339 1 : CPLJSonStreamingParserDump oParser;
2340 1 : const char sText[] = "]";
2341 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2342 1 : ASSERT_TRUE(!oParser.GetException().empty());
2343 : }
2344 : {
2345 1 : CPLJSonStreamingParserDump oParser;
2346 1 : const char sText[] = "{ :";
2347 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2348 1 : ASSERT_TRUE(!oParser.GetException().empty());
2349 : }
2350 : {
2351 1 : CPLJSonStreamingParserDump oParser;
2352 1 : const char sText[] = "{ ,";
2353 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2354 1 : ASSERT_TRUE(!oParser.GetException().empty());
2355 : }
2356 : {
2357 1 : CPLJSonStreamingParserDump oParser;
2358 1 : const char sText[] = "{ |";
2359 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2360 1 : ASSERT_TRUE(!oParser.GetException().empty());
2361 : }
2362 : {
2363 1 : CPLJSonStreamingParserDump oParser;
2364 1 : const char sText[] = "{ 1";
2365 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2366 1 : ASSERT_TRUE(!oParser.GetException().empty());
2367 : }
2368 : {
2369 1 : CPLJSonStreamingParserDump oParser;
2370 1 : const char sText[] = "{ \"x\"";
2371 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2372 1 : ASSERT_TRUE(!oParser.GetException().empty());
2373 : }
2374 : {
2375 1 : CPLJSonStreamingParserDump oParser;
2376 1 : const char sText[] = "{ \"x\": ";
2377 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2378 1 : ASSERT_TRUE(!oParser.GetException().empty());
2379 : }
2380 : {
2381 1 : CPLJSonStreamingParserDump oParser;
2382 1 : const char sText[] = "{ \"x\": 1 2";
2383 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2384 1 : ASSERT_TRUE(!oParser.GetException().empty());
2385 : }
2386 : {
2387 1 : CPLJSonStreamingParserDump oParser;
2388 1 : const char sText[] = "{ \"x\", ";
2389 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2390 1 : ASSERT_TRUE(!oParser.GetException().empty());
2391 : }
2392 : {
2393 1 : CPLJSonStreamingParserDump oParser;
2394 1 : const char sText[] = "{ \"x\" }";
2395 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2396 1 : ASSERT_TRUE(!oParser.GetException().empty());
2397 : }
2398 : {
2399 1 : CPLJSonStreamingParserDump oParser;
2400 1 : const char sText[] = "{\"a\" x}";
2401 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2402 1 : ASSERT_TRUE(!oParser.GetException().empty());
2403 : }
2404 : {
2405 1 : CPLJSonStreamingParserDump oParser;
2406 1 : const char sText[] = "1x";
2407 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2408 1 : ASSERT_TRUE(!oParser.GetException().empty());
2409 : }
2410 : {
2411 1 : CPLJSonStreamingParserDump oParser;
2412 1 : const char sText[] = "\"";
2413 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2414 1 : ASSERT_TRUE(!oParser.GetException().empty());
2415 : }
2416 : {
2417 1 : CPLJSonStreamingParserDump oParser;
2418 1 : const char sText[] = "\"\\";
2419 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2420 1 : ASSERT_TRUE(!oParser.GetException().empty());
2421 : }
2422 : {
2423 1 : CPLJSonStreamingParserDump oParser;
2424 1 : const char sText[] = "\"\\x\"";
2425 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2426 1 : ASSERT_TRUE(!oParser.GetException().empty());
2427 : }
2428 : {
2429 1 : CPLJSonStreamingParserDump oParser;
2430 1 : const char sText[] = "\"\\u";
2431 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2432 1 : ASSERT_TRUE(!oParser.GetException().empty());
2433 : }
2434 : {
2435 1 : CPLJSonStreamingParserDump oParser;
2436 1 : const char sText[] = "\"\\ux";
2437 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2438 1 : ASSERT_TRUE(!oParser.GetException().empty());
2439 : }
2440 : {
2441 1 : CPLJSonStreamingParserDump oParser;
2442 1 : const char sText[] = "\"\\u000";
2443 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2444 1 : ASSERT_TRUE(!oParser.GetException().empty());
2445 : }
2446 : {
2447 1 : CPLJSonStreamingParserDump oParser;
2448 1 : const char sText[] = "\"\\uD834\\ux\"";
2449 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2450 1 : ASSERT_TRUE(!oParser.GetException().empty());
2451 : }
2452 : {
2453 1 : CPLJSonStreamingParserDump oParser;
2454 1 : const char sText[] = "\"\\\"";
2455 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2456 1 : ASSERT_TRUE(!oParser.GetException().empty());
2457 : }
2458 : {
2459 1 : CPLJSonStreamingParserDump oParser;
2460 1 : const char sText[] = "\"too long\"";
2461 1 : oParser.SetMaxStringSize(2);
2462 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2463 1 : ASSERT_TRUE(!oParser.GetException().empty());
2464 : }
2465 : {
2466 1 : CPLJSonStreamingParserDump oParser;
2467 1 : const char sText[] = "[[]]";
2468 1 : oParser.SetMaxDepth(1);
2469 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2470 1 : ASSERT_TRUE(!oParser.GetException().empty());
2471 : }
2472 : {
2473 1 : CPLJSonStreamingParserDump oParser;
2474 1 : const char sText[] = "{ \"x\": {} }";
2475 1 : oParser.SetMaxDepth(1);
2476 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2477 1 : ASSERT_TRUE(!oParser.GetException().empty());
2478 : }
2479 : {
2480 1 : CPLJSonStreamingParserDump oParser;
2481 1 : const char sText[] = "[,]";
2482 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2483 1 : ASSERT_TRUE(!oParser.GetException().empty());
2484 : }
2485 : {
2486 1 : CPLJSonStreamingParserDump oParser;
2487 1 : const char sText[] = "[true,]";
2488 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2489 1 : ASSERT_TRUE(!oParser.GetException().empty());
2490 : }
2491 : {
2492 1 : CPLJSonStreamingParserDump oParser;
2493 1 : const char sText[] = "[true,,true]";
2494 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2495 1 : ASSERT_TRUE(!oParser.GetException().empty());
2496 : }
2497 : {
2498 1 : CPLJSonStreamingParserDump oParser;
2499 1 : const char sText[] = "[true true]";
2500 1 : ASSERT_TRUE(!oParser.Parse(sText, strlen(sText), true));
2501 1 : ASSERT_TRUE(!oParser.GetException().empty());
2502 : }
2503 : }
2504 :
2505 : // Test cpl_mem_cache
2506 4 : TEST_F(test_cpl, cpl_mem_cache)
2507 : {
2508 1 : lru11::Cache<int, int> cache(2, 1);
2509 1 : ASSERT_EQ(cache.size(), 0U);
2510 1 : ASSERT_TRUE(cache.empty());
2511 1 : cache.clear();
2512 : int val;
2513 1 : ASSERT_TRUE(!cache.tryGet(0, val));
2514 : try
2515 : {
2516 1 : cache.get(0);
2517 0 : ASSERT_TRUE(false);
2518 : }
2519 2 : catch (const lru11::KeyNotFound &)
2520 : {
2521 1 : ASSERT_TRUE(true);
2522 : }
2523 1 : ASSERT_TRUE(!cache.remove(0));
2524 1 : ASSERT_TRUE(!cache.contains(0));
2525 1 : ASSERT_EQ(cache.getMaxSize(), 2U);
2526 1 : ASSERT_EQ(cache.getElasticity(), 1U);
2527 1 : ASSERT_EQ(cache.getMaxAllowedSize(), 3U);
2528 : int out;
2529 1 : ASSERT_TRUE(!cache.removeAndRecycleOldestEntry(out));
2530 :
2531 1 : cache.insert(0, 1);
2532 1 : val = 0;
2533 1 : ASSERT_TRUE(cache.tryGet(0, val));
2534 1 : int *ptr = cache.getPtr(0);
2535 1 : ASSERT_TRUE(ptr);
2536 1 : ASSERT_EQ(*ptr, 1);
2537 1 : ASSERT_TRUE(cache.getPtr(-1) == nullptr);
2538 1 : ASSERT_EQ(val, 1);
2539 1 : ASSERT_EQ(cache.get(0), 1);
2540 1 : ASSERT_EQ(cache.getCopy(0), 1);
2541 1 : ASSERT_EQ(cache.size(), 1U);
2542 1 : ASSERT_TRUE(!cache.empty());
2543 1 : ASSERT_TRUE(cache.contains(0));
2544 1 : bool visited = false;
2545 2 : auto lambda = [&visited](const lru11::KeyValuePair<int, int> &kv)
2546 : {
2547 1 : if (kv.key == 0 && kv.value == 1)
2548 1 : visited = true;
2549 2 : };
2550 1 : cache.cwalk(lambda);
2551 1 : ASSERT_TRUE(visited);
2552 :
2553 1 : out = -1;
2554 1 : ASSERT_TRUE(cache.removeAndRecycleOldestEntry(out));
2555 1 : ASSERT_EQ(out, 1);
2556 :
2557 1 : cache.insert(0, 1);
2558 1 : cache.insert(0, 2);
2559 1 : ASSERT_EQ(cache.get(0), 2);
2560 1 : ASSERT_EQ(cache.size(), 1U);
2561 1 : cache.insert(1, 3);
2562 1 : cache.insert(2, 4);
2563 1 : ASSERT_EQ(cache.size(), 3U);
2564 1 : cache.insert(3, 5);
2565 1 : ASSERT_EQ(cache.size(), 2U);
2566 1 : ASSERT_TRUE(cache.contains(2));
2567 1 : ASSERT_TRUE(cache.contains(3));
2568 1 : ASSERT_TRUE(!cache.contains(0));
2569 1 : ASSERT_TRUE(!cache.contains(1));
2570 1 : ASSERT_TRUE(cache.remove(2));
2571 1 : ASSERT_TRUE(!cache.contains(2));
2572 1 : ASSERT_EQ(cache.size(), 1U);
2573 :
2574 : {
2575 : // Check that MyObj copy constructor and copy-assignment operator
2576 : // are not needed
2577 : struct MyObj
2578 : {
2579 : int m_v;
2580 :
2581 4 : MyObj(int v) : m_v(v)
2582 : {
2583 4 : }
2584 :
2585 : MyObj(const MyObj &) = delete;
2586 : MyObj &operator=(const MyObj &) = delete;
2587 : MyObj(MyObj &&) = default;
2588 : MyObj &operator=(MyObj &&) = default;
2589 : };
2590 :
2591 1 : lru11::Cache<int, MyObj> cacheMyObj(2, 0);
2592 1 : ASSERT_EQ(cacheMyObj.insert(0, MyObj(0)).m_v, 0);
2593 1 : cacheMyObj.getPtr(0);
2594 1 : ASSERT_EQ(cacheMyObj.insert(1, MyObj(1)).m_v, 1);
2595 1 : ASSERT_EQ(cacheMyObj.insert(2, MyObj(2)).m_v, 2);
2596 1 : MyObj outObj(-1);
2597 1 : cacheMyObj.removeAndRecycleOldestEntry(outObj);
2598 : }
2599 :
2600 : {
2601 : // Check that MyObj copy constructor and copy-assignment operator
2602 : // are not triggered
2603 : struct MyObj
2604 : {
2605 : int m_v;
2606 :
2607 4 : MyObj(int v) : m_v(v)
2608 : {
2609 4 : }
2610 :
2611 : static void should_not_happen()
2612 : {
2613 : ASSERT_TRUE(false);
2614 : }
2615 :
2616 : MyObj(const MyObj &) : m_v(-1)
2617 : {
2618 : should_not_happen();
2619 : }
2620 :
2621 : MyObj &operator=(const MyObj &)
2622 : {
2623 : should_not_happen();
2624 : return *this;
2625 : }
2626 :
2627 : MyObj(MyObj &&) = default;
2628 : MyObj &operator=(MyObj &&) = default;
2629 : };
2630 :
2631 1 : lru11::Cache<int, MyObj> cacheMyObj(2, 0);
2632 1 : ASSERT_EQ(cacheMyObj.insert(0, MyObj(0)).m_v, 0);
2633 1 : cacheMyObj.getPtr(0);
2634 1 : ASSERT_EQ(cacheMyObj.insert(1, MyObj(1)).m_v, 1);
2635 1 : ASSERT_EQ(cacheMyObj.insert(2, MyObj(2)).m_v, 2);
2636 1 : MyObj outObj(-1);
2637 1 : cacheMyObj.removeAndRecycleOldestEntry(outObj);
2638 : }
2639 : }
2640 :
2641 : // Test CPLJSONDocument
2642 4 : TEST_F(test_cpl, CPLJSONDocument)
2643 : {
2644 : {
2645 : // Test Json document LoadUrl
2646 1 : CPLJSONDocument oDocument;
2647 1 : const char *options[5] = {"CONNECTTIMEOUT=15", "TIMEOUT=20",
2648 : "MAX_RETRY=5", "RETRY_DELAY=1", nullptr};
2649 :
2650 1 : oDocument.GetRoot().Add("foo", "bar");
2651 :
2652 1 : if (CPLHTTPEnabled())
2653 : {
2654 1 : CPLSetConfigOption("CPL_CURL_ENABLE_VSIMEM", "YES");
2655 1 : VSILFILE *fpTmp = VSIFOpenL("/vsimem/test.json", "wb");
2656 1 : const char *pszContent = "{ \"foo\": \"bar\" }";
2657 1 : VSIFWriteL(pszContent, 1, strlen(pszContent), fpTmp);
2658 1 : VSIFCloseL(fpTmp);
2659 1 : ASSERT_TRUE(oDocument.LoadUrl("/vsimem/test.json",
2660 : const_cast<char **>(options)));
2661 1 : CPLSetConfigOption("CPL_CURL_ENABLE_VSIMEM", nullptr);
2662 1 : VSIUnlink("/vsimem/test.json");
2663 :
2664 1 : CPLJSONObject oJsonRoot = oDocument.GetRoot();
2665 1 : ASSERT_TRUE(oJsonRoot.IsValid());
2666 :
2667 2 : CPLString value = oJsonRoot.GetString("foo", "");
2668 1 : ASSERT_STRNE(value, "bar"); // not equal
2669 : }
2670 : }
2671 : {
2672 : // Test Json document LoadChunks
2673 1 : CPLJSONDocument oDocument;
2674 :
2675 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
2676 1 : ASSERT_TRUE(!oDocument.LoadChunks("/i_do/not/exist", 512));
2677 1 : CPLPopErrorHandler();
2678 :
2679 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
2680 1 : ASSERT_TRUE(!oDocument.LoadChunks("test_cpl.cpp", 512));
2681 1 : CPLPopErrorHandler();
2682 :
2683 1 : oDocument.GetRoot().Add("foo", "bar");
2684 :
2685 1 : ASSERT_TRUE(
2686 : oDocument.LoadChunks((data_ + SEP + "test.json").c_str(), 512));
2687 :
2688 1 : CPLJSONObject oJsonRoot = oDocument.GetRoot();
2689 1 : ASSERT_TRUE(oJsonRoot.IsValid());
2690 1 : ASSERT_EQ(oJsonRoot.GetInteger("resource/id", 10), 0);
2691 :
2692 2 : CPLJSONObject oJsonResource = oJsonRoot.GetObj("resource");
2693 1 : ASSERT_TRUE(oJsonResource.IsValid());
2694 1 : std::vector<CPLJSONObject> children = oJsonResource.GetChildren();
2695 1 : ASSERT_TRUE(children.size() == 11);
2696 :
2697 2 : CPLJSONArray oaScopes = oJsonRoot.GetArray("resource/scopes");
2698 1 : ASSERT_TRUE(oaScopes.IsValid());
2699 1 : ASSERT_EQ(oaScopes.Size(), 2);
2700 :
2701 2 : CPLJSONObject oHasChildren = oJsonRoot.GetObj("resource/children");
2702 1 : ASSERT_TRUE(oHasChildren.IsValid());
2703 1 : ASSERT_EQ(oHasChildren.ToBool(), true);
2704 :
2705 1 : ASSERT_EQ(oJsonResource.GetBool("children", false), true);
2706 :
2707 2 : CPLJSONObject oJsonId = oJsonRoot["resource/owner_user/id"];
2708 1 : ASSERT_TRUE(oJsonId.IsValid());
2709 : }
2710 : {
2711 1 : CPLJSONDocument oDocument;
2712 1 : ASSERT_TRUE(!oDocument.LoadMemory(nullptr, 0));
2713 1 : ASSERT_TRUE(!oDocument.LoadMemory(CPLString()));
2714 1 : ASSERT_TRUE(oDocument.LoadMemory(std::string("true")));
2715 1 : ASSERT_TRUE(oDocument.GetRoot().GetType() ==
2716 : CPLJSONObject::Type::Boolean);
2717 1 : ASSERT_TRUE(oDocument.GetRoot().ToBool());
2718 1 : ASSERT_TRUE(oDocument.LoadMemory(std::string("false")));
2719 1 : ASSERT_TRUE(oDocument.GetRoot().GetType() ==
2720 : CPLJSONObject::Type::Boolean);
2721 1 : ASSERT_TRUE(!oDocument.GetRoot().ToBool());
2722 : }
2723 : {
2724 : // Copy constructor
2725 1 : CPLJSONDocument oDocument;
2726 1 : ASSERT_TRUE(oDocument.LoadMemory(std::string("true")));
2727 1 : oDocument.GetRoot();
2728 1 : CPLJSONDocument oDocument2(oDocument);
2729 1 : CPLJSONObject oObj(oDocument.GetRoot());
2730 1 : ASSERT_TRUE(oObj.ToBool());
2731 1 : CPLJSONObject oObj2(oObj);
2732 1 : ASSERT_TRUE(oObj2.ToBool());
2733 : // Assignment operator
2734 : // coverity[copy_assignment_call]
2735 1 : oDocument2 = oDocument;
2736 1 : auto &oDocument2Ref(oDocument2);
2737 1 : oDocument2 = oDocument2Ref;
2738 : // coverity[copy_assignment_call]
2739 1 : oObj2 = oObj;
2740 1 : auto &oObj2Ref(oObj2);
2741 1 : oObj2 = oObj2Ref;
2742 1 : CPLJSONObject oObj3(std::move(oObj2));
2743 1 : ASSERT_TRUE(oObj3.ToBool());
2744 1 : CPLJSONObject oObj4;
2745 1 : oObj4 = std::move(oObj3);
2746 1 : ASSERT_TRUE(oObj4.ToBool());
2747 : }
2748 : {
2749 : // Move constructor
2750 2 : CPLJSONDocument oDocument;
2751 1 : oDocument.GetRoot();
2752 1 : CPLJSONDocument oDocument2(std::move(oDocument));
2753 : }
2754 : {
2755 : // Move assignment
2756 2 : CPLJSONDocument oDocument;
2757 1 : oDocument.GetRoot();
2758 2 : CPLJSONDocument oDocument2;
2759 1 : oDocument2 = std::move(oDocument);
2760 : }
2761 : {
2762 : // Save
2763 1 : CPLJSONDocument oDocument;
2764 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
2765 1 : ASSERT_TRUE(!oDocument.Save("/i_do/not/exist"));
2766 1 : CPLPopErrorHandler();
2767 : }
2768 : {
2769 2 : CPLJSONObject oObj(nullptr);
2770 1 : EXPECT_EQ(oObj.GetType(), CPLJSONObject::Type::Null);
2771 : }
2772 : {
2773 2 : CPLJSONObject oObj(true);
2774 1 : EXPECT_EQ(oObj.GetType(), CPLJSONObject::Type::Boolean);
2775 1 : EXPECT_EQ(oObj.ToBool(), true);
2776 : }
2777 : {
2778 2 : CPLJSONObject oObj(1);
2779 1 : EXPECT_EQ(oObj.GetType(), CPLJSONObject::Type::Integer);
2780 1 : EXPECT_EQ(oObj.ToInteger(), 1);
2781 : }
2782 : {
2783 2 : CPLJSONObject oObj(static_cast<int64_t>(123) * 1024 * 1024 * 1024);
2784 1 : EXPECT_EQ(oObj.GetType(), CPLJSONObject::Type::Long);
2785 1 : EXPECT_EQ(oObj.ToLong(),
2786 : static_cast<int64_t>(123) * 1024 * 1024 * 1024);
2787 : }
2788 : {
2789 2 : CPLJSONObject oObj(static_cast<uint64_t>(123) * 1024 * 1024 * 1024);
2790 : // Might be a string with older libjson versions
2791 1 : if (oObj.GetType() == CPLJSONObject::Type::Long)
2792 : {
2793 1 : EXPECT_EQ(oObj.ToLong(),
2794 : static_cast<int64_t>(123) * 1024 * 1024 * 1024);
2795 : }
2796 : }
2797 : {
2798 2 : CPLJSONObject oObj(1.5);
2799 1 : EXPECT_EQ(oObj.GetType(), CPLJSONObject::Type::Double);
2800 1 : EXPECT_EQ(oObj.ToDouble(), 1.5);
2801 : }
2802 : {
2803 2 : CPLJSONObject oObj("ab");
2804 1 : EXPECT_EQ(oObj.GetType(), CPLJSONObject::Type::String);
2805 2 : EXPECT_STREQ(oObj.ToString().c_str(), "ab");
2806 : }
2807 : {
2808 3 : CPLJSONObject oObj(std::string("ab"));
2809 1 : EXPECT_EQ(oObj.GetType(), CPLJSONObject::Type::String);
2810 2 : EXPECT_STREQ(oObj.ToString().c_str(), "ab");
2811 : }
2812 : {
2813 1 : CPLJSONObject oObj;
2814 1 : oObj.Add("string", std::string("my_string"));
2815 2 : ASSERT_EQ(oObj.GetString("string"), std::string("my_string"));
2816 2 : ASSERT_EQ(oObj.GetString("inexisting_string", "default"),
2817 : std::string("default"));
2818 1 : oObj.Add("const_char_star", nullptr);
2819 1 : oObj.Add("const_char_star", "my_const_char_star");
2820 1 : ASSERT_TRUE(oObj.GetObj("const_char_star").GetType() ==
2821 : CPLJSONObject::Type::String);
2822 1 : oObj.Add("int", 1);
2823 1 : ASSERT_EQ(oObj.GetInteger("int"), 1);
2824 1 : ASSERT_EQ(oObj.GetInteger("inexisting_int", -987), -987);
2825 1 : ASSERT_TRUE(oObj.GetObj("int").GetType() ==
2826 : CPLJSONObject::Type::Integer);
2827 1 : oObj.Add("int64", GINT64_MAX);
2828 2 : ASSERT_EQ(oObj.GetLong("int64"), GINT64_MAX);
2829 2 : ASSERT_EQ(oObj.GetLong("inexisting_int64", GINT64_MIN), GINT64_MIN);
2830 1 : ASSERT_TRUE(oObj.GetObj("int64").GetType() ==
2831 : CPLJSONObject::Type::Long);
2832 1 : oObj.Add("double", 1.25);
2833 1 : ASSERT_EQ(oObj.GetDouble("double"), 1.25);
2834 1 : ASSERT_EQ(oObj.GetDouble("inexisting_double", -987.0), -987.0);
2835 1 : ASSERT_TRUE(oObj.GetObj("double").GetType() ==
2836 : CPLJSONObject::Type::Double);
2837 1 : oObj.Add("array", CPLJSONArray());
2838 1 : ASSERT_TRUE(oObj.GetObj("array").GetType() ==
2839 : CPLJSONObject::Type::Array);
2840 1 : oObj.Add("obj", CPLJSONObject());
2841 1 : ASSERT_TRUE(oObj.GetObj("obj").GetType() ==
2842 : CPLJSONObject::Type::Object);
2843 1 : oObj.Add("bool", true);
2844 1 : ASSERT_EQ(oObj.GetBool("bool"), true);
2845 1 : ASSERT_EQ(oObj.GetBool("inexisting_bool", false), false);
2846 1 : ASSERT_TRUE(oObj.GetObj("bool").GetType() ==
2847 : CPLJSONObject::Type::Boolean);
2848 1 : oObj.AddNull("null_field");
2849 1 : ASSERT_TRUE(oObj.GetObj("null_field").GetType() ==
2850 : CPLJSONObject::Type::Null);
2851 1 : ASSERT_TRUE(oObj.GetObj("inexisting").GetType() ==
2852 : CPLJSONObject::Type::Unknown);
2853 1 : oObj.Set("string", std::string("my_string"));
2854 1 : oObj.Set("const_char_star", nullptr);
2855 1 : oObj.Set("const_char_star", "my_const_char_star");
2856 1 : oObj.Set("int", 1);
2857 1 : oObj.Set("int64", GINT64_MAX);
2858 1 : oObj.Set("double", 1.25);
2859 : // oObj.Set("array", CPLJSONArray());
2860 : // oObj.Set("obj", CPLJSONObject());
2861 1 : oObj.Set("bool", true);
2862 1 : oObj.SetNull("null_field");
2863 1 : ASSERT_TRUE(CPLJSONArray().GetChildren().empty());
2864 1 : oObj.ToArray();
2865 : }
2866 : {
2867 2 : CPLJSONObject oObj;
2868 1 : oObj.Set("foo", "bar");
2869 2 : EXPECT_STREQ(oObj.Format(CPLJSONObject::PrettyFormat::Spaced).c_str(),
2870 : "{ \"foo\": \"bar\" }");
2871 2 : EXPECT_STREQ(oObj.Format(CPLJSONObject::PrettyFormat::Pretty).c_str(),
2872 : "{\n \"foo\":\"bar\"\n}");
2873 2 : EXPECT_STREQ(oObj.Format(CPLJSONObject::PrettyFormat::Plain).c_str(),
2874 : "{\"foo\":\"bar\"}");
2875 : }
2876 : {
2877 2 : CPLJSONArray oArrayConstructorString(std::string("foo"));
2878 1 : CPLJSONArray oArray;
2879 1 : oArray.Add(CPLJSONObject());
2880 1 : oArray.Add(std::string("str"));
2881 1 : oArray.Add("const_char_star");
2882 1 : oArray.Add(1.25);
2883 1 : oArray.Add(1);
2884 1 : oArray.Add(GINT64_MAX);
2885 1 : oArray.Add(true);
2886 1 : oArray.AddNull();
2887 1 : ASSERT_EQ(oArray.Size(), 8);
2888 :
2889 1 : int nCount = 0;
2890 9 : for (const auto &obj : oArray)
2891 : {
2892 8 : ASSERT_EQ(obj.GetInternalHandle(),
2893 : oArray[nCount].GetInternalHandle());
2894 8 : nCount++;
2895 : }
2896 1 : ASSERT_EQ(nCount, 8);
2897 : }
2898 : {
2899 1 : CPLJSONDocument oDocument;
2900 1 : ASSERT_TRUE(oDocument.LoadMemory(CPLString("{ \"/foo\" : \"bar\" }")));
2901 2 : ASSERT_EQ(oDocument.GetRoot().GetString("/foo"), std::string("bar"));
2902 : }
2903 : }
2904 :
2905 : // Test CPLRecodeIconv() with re-allocation
2906 : // (this test also passed on Windows using its native recoding API)
2907 4 : TEST_F(test_cpl, CPLRecodeIconv)
2908 : {
2909 : #if defined(CPL_RECODE_ICONV) || defined(_WIN32)
2910 1 : int N = 32800;
2911 1 : char *pszIn = static_cast<char *>(CPLMalloc(N + 1));
2912 32801 : for (int i = 0; i < N; i++)
2913 32800 : pszIn[i] = '\xA1';
2914 1 : pszIn[N] = 0;
2915 1 : char *pszExpected = static_cast<char *>(CPLMalloc(N * 2 + 1));
2916 32801 : for (int i = 0; i < N; i++)
2917 : {
2918 32800 : pszExpected[2 * i] = '\xD0';
2919 32800 : pszExpected[2 * i + 1] = '\x81';
2920 : }
2921 1 : pszExpected[N * 2] = 0;
2922 1 : char *pszRet = CPLRecode(pszIn, "ISO-8859-5", CPL_ENC_UTF8);
2923 1 : EXPECT_EQ(memcmp(pszExpected, pszRet, N * 2 + 1), 0);
2924 1 : CPLFree(pszIn);
2925 1 : CPLFree(pszRet);
2926 1 : CPLFree(pszExpected);
2927 : #else
2928 : GTEST_SKIP() << "CPL_RECODE_ICONV missing";
2929 : #endif
2930 1 : }
2931 :
2932 : // Test CP1252 to UTF-8
2933 4 : TEST_F(test_cpl, CPLRecodeStubCP1252_to_UTF8_strict_alloc)
2934 : {
2935 1 : CPLClearRecodeWarningFlags();
2936 1 : CPLErrorReset();
2937 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
2938 : // Euro character expands to 3-bytes
2939 1 : char *pszRet = CPLRecode("\x80", "CP1252", CPL_ENC_UTF8);
2940 1 : CPLPopErrorHandler();
2941 1 : EXPECT_STREQ(CPLGetLastErrorMsg(), "");
2942 1 : EXPECT_EQ(memcmp(pszRet, "\xE2\x82\xAC\x00", 4), 0);
2943 1 : CPLFree(pszRet);
2944 1 : }
2945 :
2946 : // Test CP1252 to UTF-8
2947 4 : TEST_F(test_cpl, CPLRecodeStubCP1252_to_UTF8_with_ascii)
2948 : {
2949 1 : CPLClearRecodeWarningFlags();
2950 1 : CPLErrorReset();
2951 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
2952 1 : char *pszRet = CPLRecode("x\x80y", "CP1252", CPL_ENC_UTF8);
2953 1 : CPLPopErrorHandler();
2954 1 : EXPECT_STREQ(CPLGetLastErrorMsg(), "");
2955 1 : EXPECT_EQ(memcmp(pszRet, "x\xE2\x82\xACy\x00", 6), 0);
2956 1 : CPLFree(pszRet);
2957 1 : }
2958 :
2959 : // Test CP1252 to UTF-8
2960 4 : TEST_F(test_cpl, CPLRecodeStubCP1252_to_UTF8_with_warning)
2961 : {
2962 1 : CPLClearRecodeWarningFlags();
2963 1 : CPLErrorReset();
2964 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
2965 : // \x90 is an invalid CP1252 character. Will be skipped
2966 1 : char *pszRet = CPLRecode("\x90\x80", "CP1252", CPL_ENC_UTF8);
2967 1 : CPLPopErrorHandler();
2968 1 : EXPECT_STREQ(
2969 : CPLGetLastErrorMsg(),
2970 : "One or several characters couldn't be converted correctly from CP1252 "
2971 : "to UTF-8. This warning will not be emitted anymore");
2972 1 : EXPECT_EQ(memcmp(pszRet, "\xE2\x82\xAC\x00", 4), 0);
2973 1 : CPLFree(pszRet);
2974 1 : }
2975 :
2976 : // Test CPLHTTPParseMultipartMime()
2977 4 : TEST_F(test_cpl, CPLHTTPParseMultipartMime)
2978 : {
2979 : CPLHTTPResult *psResult;
2980 :
2981 : psResult =
2982 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
2983 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
2984 1 : EXPECT_TRUE(!CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
2985 1 : CPLPopErrorHandler();
2986 1 : CPLHTTPDestroyResult(psResult);
2987 :
2988 : // Missing boundary value
2989 : psResult =
2990 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
2991 1 : psResult->pszContentType = CPLStrdup("multipart/form-data; boundary=");
2992 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
2993 1 : EXPECT_TRUE(!CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
2994 1 : CPLPopErrorHandler();
2995 1 : CPLHTTPDestroyResult(psResult);
2996 :
2997 : // No content
2998 : psResult =
2999 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
3000 1 : psResult->pszContentType =
3001 1 : CPLStrdup("multipart/form-data; boundary=myboundary");
3002 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
3003 1 : EXPECT_TRUE(!CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3004 1 : CPLPopErrorHandler();
3005 1 : CPLHTTPDestroyResult(psResult);
3006 :
3007 : // No part
3008 : psResult =
3009 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
3010 1 : psResult->pszContentType =
3011 1 : CPLStrdup("multipart/form-data; boundary=myboundary");
3012 : {
3013 1 : const char *pszText = "--myboundary some junk\r\n";
3014 1 : psResult->pabyData = reinterpret_cast<GByte *>(CPLStrdup(pszText));
3015 1 : psResult->nDataLen = static_cast<int>(strlen(pszText));
3016 : }
3017 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
3018 1 : EXPECT_TRUE(!CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3019 1 : CPLPopErrorHandler();
3020 1 : CPLHTTPDestroyResult(psResult);
3021 :
3022 : // Missing end boundary
3023 : psResult =
3024 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
3025 1 : psResult->pszContentType =
3026 1 : CPLStrdup("multipart/form-data; boundary=myboundary");
3027 : {
3028 1 : const char *pszText = "--myboundary some junk\r\n"
3029 : "\r\n"
3030 : "Bla";
3031 1 : psResult->pabyData = reinterpret_cast<GByte *>(CPLStrdup(pszText));
3032 1 : psResult->nDataLen = static_cast<int>(strlen(pszText));
3033 : }
3034 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
3035 1 : EXPECT_TRUE(!CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3036 1 : CPLPopErrorHandler();
3037 1 : CPLHTTPDestroyResult(psResult);
3038 :
3039 : // Truncated header
3040 : psResult =
3041 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
3042 1 : psResult->pszContentType =
3043 1 : CPLStrdup("multipart/form-data; boundary=myboundary");
3044 : {
3045 1 : const char *pszText = "--myboundary some junk\r\n"
3046 : "Content-Type: foo";
3047 1 : psResult->pabyData = reinterpret_cast<GByte *>(CPLStrdup(pszText));
3048 1 : psResult->nDataLen = static_cast<int>(strlen(pszText));
3049 : }
3050 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
3051 1 : EXPECT_TRUE(!CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3052 1 : CPLPopErrorHandler();
3053 1 : CPLHTTPDestroyResult(psResult);
3054 :
3055 : // Invalid end boundary
3056 : psResult =
3057 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
3058 1 : psResult->pszContentType =
3059 1 : CPLStrdup("multipart/form-data; boundary=myboundary");
3060 : {
3061 1 : const char *pszText = "--myboundary some junk\r\n"
3062 : "\r\n"
3063 : "Bla"
3064 : "\r\n"
3065 : "--myboundary";
3066 1 : psResult->pabyData = reinterpret_cast<GByte *>(CPLStrdup(pszText));
3067 1 : psResult->nDataLen = static_cast<int>(strlen(pszText));
3068 : }
3069 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
3070 1 : EXPECT_TRUE(!CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3071 1 : CPLPopErrorHandler();
3072 1 : CPLHTTPDestroyResult(psResult);
3073 :
3074 : // Invalid end boundary
3075 : psResult =
3076 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
3077 1 : psResult->pszContentType =
3078 1 : CPLStrdup("multipart/form-data; boundary=myboundary");
3079 : {
3080 1 : const char *pszText = "--myboundary some junk\r\n"
3081 : "\r\n"
3082 : "Bla"
3083 : "\r\n"
3084 : "--myboundary";
3085 1 : psResult->pabyData = reinterpret_cast<GByte *>(CPLStrdup(pszText));
3086 1 : psResult->nDataLen = static_cast<int>(strlen(pszText));
3087 : }
3088 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
3089 1 : EXPECT_TRUE(!CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3090 1 : CPLPopErrorHandler();
3091 1 : CPLHTTPDestroyResult(psResult);
3092 :
3093 : // Valid single part, no header
3094 : psResult =
3095 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
3096 1 : psResult->pszContentType =
3097 1 : CPLStrdup("multipart/form-data; boundary=myboundary");
3098 : {
3099 1 : const char *pszText = "--myboundary some junk\r\n"
3100 : "\r\n"
3101 : "Bla"
3102 : "\r\n"
3103 : "--myboundary--\r\n";
3104 1 : psResult->pabyData = reinterpret_cast<GByte *>(CPLStrdup(pszText));
3105 1 : psResult->nDataLen = static_cast<int>(strlen(pszText));
3106 : }
3107 1 : EXPECT_TRUE(CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3108 1 : EXPECT_EQ(psResult->nMimePartCount, 1);
3109 1 : if (psResult->nMimePartCount == 1)
3110 : {
3111 1 : EXPECT_EQ(psResult->pasMimePart[0].papszHeaders,
3112 : static_cast<char **>(nullptr));
3113 1 : EXPECT_EQ(psResult->pasMimePart[0].nDataLen, 3);
3114 1 : EXPECT_TRUE(
3115 : strncmp(reinterpret_cast<char *>(psResult->pasMimePart[0].pabyData),
3116 : "Bla", 3) == 0);
3117 : }
3118 1 : EXPECT_TRUE(CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3119 1 : CPLHTTPDestroyResult(psResult);
3120 :
3121 : // Valid single part, with header
3122 : psResult =
3123 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
3124 1 : psResult->pszContentType =
3125 1 : CPLStrdup("multipart/form-data; boundary=myboundary");
3126 : {
3127 1 : const char *pszText = "--myboundary some junk\r\n"
3128 : "Content-Type: bla\r\n"
3129 : "\r\n"
3130 : "Bla"
3131 : "\r\n"
3132 : "--myboundary--\r\n";
3133 1 : psResult->pabyData = reinterpret_cast<GByte *>(CPLStrdup(pszText));
3134 1 : psResult->nDataLen = static_cast<int>(strlen(pszText));
3135 : }
3136 1 : EXPECT_TRUE(CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3137 1 : EXPECT_EQ(psResult->nMimePartCount, 1);
3138 1 : if (psResult->nMimePartCount == 1)
3139 : {
3140 1 : EXPECT_EQ(CSLCount(psResult->pasMimePart[0].papszHeaders), 1);
3141 1 : EXPECT_STREQ(psResult->pasMimePart[0].papszHeaders[0],
3142 : "Content-Type=bla");
3143 1 : EXPECT_EQ(psResult->pasMimePart[0].nDataLen, 3);
3144 1 : EXPECT_TRUE(
3145 : strncmp(reinterpret_cast<char *>(psResult->pasMimePart[0].pabyData),
3146 : "Bla", 3) == 0);
3147 : }
3148 1 : EXPECT_TRUE(CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3149 1 : CPLHTTPDestroyResult(psResult);
3150 :
3151 : // Valid single part, 2 headers
3152 : psResult =
3153 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
3154 1 : psResult->pszContentType =
3155 1 : CPLStrdup("multipart/form-data; boundary=myboundary");
3156 : {
3157 1 : const char *pszText = "--myboundary some junk\r\n"
3158 : "Content-Type: bla\r\n"
3159 : "Content-Disposition: bar\r\n"
3160 : "\r\n"
3161 : "Bla"
3162 : "\r\n"
3163 : "--myboundary--\r\n";
3164 1 : psResult->pabyData = reinterpret_cast<GByte *>(CPLStrdup(pszText));
3165 1 : psResult->nDataLen = static_cast<int>(strlen(pszText));
3166 : }
3167 1 : EXPECT_TRUE(CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3168 1 : EXPECT_EQ(psResult->nMimePartCount, 1);
3169 1 : if (psResult->nMimePartCount == 1)
3170 : {
3171 1 : EXPECT_EQ(CSLCount(psResult->pasMimePart[0].papszHeaders), 2);
3172 1 : EXPECT_STREQ(psResult->pasMimePart[0].papszHeaders[0],
3173 : "Content-Type=bla");
3174 1 : EXPECT_STREQ(psResult->pasMimePart[0].papszHeaders[1],
3175 : "Content-Disposition=bar");
3176 1 : EXPECT_EQ(psResult->pasMimePart[0].nDataLen, 3);
3177 1 : EXPECT_TRUE(
3178 : strncmp(reinterpret_cast<char *>(psResult->pasMimePart[0].pabyData),
3179 : "Bla", 3) == 0);
3180 : }
3181 1 : EXPECT_TRUE(CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3182 1 : CPLHTTPDestroyResult(psResult);
3183 :
3184 : // Single part, but with header without extra terminating \r\n
3185 : // (invalid normally, but apparently necessary for some ArcGIS WCS
3186 : // implementations)
3187 : psResult =
3188 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
3189 1 : psResult->pszContentType =
3190 1 : CPLStrdup("multipart/form-data; boundary=myboundary");
3191 : {
3192 1 : const char *pszText = "--myboundary some junk\r\n"
3193 : "Content-Type: bla\r\n"
3194 : "Bla"
3195 : "\r\n"
3196 : "--myboundary--\r\n";
3197 1 : psResult->pabyData = reinterpret_cast<GByte *>(CPLStrdup(pszText));
3198 1 : psResult->nDataLen = static_cast<int>(strlen(pszText));
3199 : }
3200 1 : EXPECT_TRUE(CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3201 1 : EXPECT_EQ(psResult->nMimePartCount, 1);
3202 1 : if (psResult->nMimePartCount == 1)
3203 : {
3204 1 : EXPECT_STREQ(psResult->pasMimePart[0].papszHeaders[0],
3205 : "Content-Type=bla");
3206 1 : EXPECT_EQ(psResult->pasMimePart[0].nDataLen, 3);
3207 1 : EXPECT_TRUE(
3208 : strncmp(reinterpret_cast<char *>(psResult->pasMimePart[0].pabyData),
3209 : "Bla", 3) == 0);
3210 : }
3211 1 : EXPECT_TRUE(CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3212 1 : CPLHTTPDestroyResult(psResult);
3213 :
3214 : // Valid 2 parts, no header
3215 : psResult =
3216 1 : static_cast<CPLHTTPResult *>(CPLCalloc(1, sizeof(CPLHTTPResult)));
3217 1 : psResult->pszContentType =
3218 1 : CPLStrdup("multipart/form-data; boundary=myboundary");
3219 : {
3220 1 : const char *pszText = "--myboundary some junk\r\n"
3221 : "\r\n"
3222 : "Bla"
3223 : "\r\n"
3224 : "--myboundary\r\n"
3225 : "\r\n"
3226 : "second part"
3227 : "\r\n"
3228 : "--myboundary--\r\n";
3229 1 : psResult->pabyData = reinterpret_cast<GByte *>(CPLStrdup(pszText));
3230 1 : psResult->nDataLen = static_cast<int>(strlen(pszText));
3231 : }
3232 1 : EXPECT_TRUE(CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3233 1 : EXPECT_EQ(psResult->nMimePartCount, 2);
3234 1 : if (psResult->nMimePartCount == 2)
3235 : {
3236 1 : EXPECT_EQ(psResult->pasMimePart[0].papszHeaders,
3237 : static_cast<char **>(nullptr));
3238 1 : EXPECT_EQ(psResult->pasMimePart[0].nDataLen, 3);
3239 1 : EXPECT_TRUE(
3240 : strncmp(reinterpret_cast<char *>(psResult->pasMimePart[0].pabyData),
3241 : "Bla", 3) == 0);
3242 1 : EXPECT_EQ(psResult->pasMimePart[1].nDataLen, 11);
3243 1 : EXPECT_TRUE(
3244 : strncmp(reinterpret_cast<char *>(psResult->pasMimePart[1].pabyData),
3245 : "second part", 11) == 0);
3246 : }
3247 1 : EXPECT_TRUE(CPL_TO_BOOL(CPLHTTPParseMultipartMime(psResult)));
3248 1 : CPLHTTPDestroyResult(psResult);
3249 1 : }
3250 :
3251 : // Test cpl::down_cast
3252 4 : TEST_F(test_cpl, down_cast)
3253 : {
3254 : struct Base
3255 : {
3256 2 : virtual ~Base()
3257 2 : {
3258 2 : }
3259 : };
3260 :
3261 : struct Derived : public Base
3262 : {
3263 : };
3264 :
3265 0 : Base b;
3266 0 : Derived d;
3267 1 : Base *p_b_d = &d;
3268 :
3269 : #ifdef wont_compile
3270 : struct OtherBase
3271 : {
3272 : };
3273 :
3274 : OtherBase ob;
3275 : ASSERT_EQ(cpl::down_cast<OtherBase *>(p_b_d), &ob);
3276 : #endif
3277 : #ifdef compile_with_warning
3278 : ASSERT_EQ(cpl::down_cast<Base *>(p_b_d), p_b_d);
3279 : #endif
3280 1 : ASSERT_EQ(cpl::down_cast<Derived *>(p_b_d), &d);
3281 1 : ASSERT_EQ(cpl::down_cast<Derived *>(static_cast<Base *>(nullptr)),
3282 : static_cast<Derived *>(nullptr));
3283 : }
3284 :
3285 : // Test CPLPrintTime() in particular case of RFC822 formatting in C locale
3286 4 : TEST_F(test_cpl, CPLPrintTime_RFC822)
3287 : {
3288 : char szDate[64];
3289 : struct tm tm;
3290 1 : tm.tm_sec = 56;
3291 1 : tm.tm_min = 34;
3292 1 : tm.tm_hour = 12;
3293 1 : tm.tm_mday = 20;
3294 1 : tm.tm_mon = 6 - 1;
3295 1 : tm.tm_year = 2018 - 1900;
3296 1 : tm.tm_wday = 3; // Wednesday
3297 1 : tm.tm_yday = 0; // unused
3298 1 : tm.tm_isdst = 0; // unused
3299 1 : int nRet = CPLPrintTime(szDate, sizeof(szDate) - 1,
3300 : "%a, %d %b %Y %H:%M:%S GMT", &tm, "C");
3301 1 : szDate[nRet] = 0;
3302 1 : ASSERT_STREQ(szDate, "Wed, 20 Jun 2018 12:34:56 GMT");
3303 : }
3304 :
3305 : // Test CPLAutoClose
3306 4 : TEST_F(test_cpl, CPLAutoClose)
3307 : {
3308 : static int counter = 0;
3309 :
3310 : class AutoCloseTest
3311 : {
3312 : public:
3313 2 : AutoCloseTest()
3314 2 : {
3315 2 : counter += 222;
3316 2 : }
3317 :
3318 4 : virtual ~AutoCloseTest()
3319 2 : {
3320 2 : counter -= 22;
3321 4 : }
3322 :
3323 2 : static AutoCloseTest *Create()
3324 : {
3325 2 : return new AutoCloseTest;
3326 : }
3327 :
3328 2 : static void Destroy(AutoCloseTest *p)
3329 : {
3330 2 : delete p;
3331 2 : }
3332 : };
3333 :
3334 : {
3335 1 : AutoCloseTest *p1 = AutoCloseTest::Create();
3336 2 : CPL_AUTO_CLOSE_WARP(p1, AutoCloseTest::Destroy);
3337 :
3338 1 : AutoCloseTest *p2 = AutoCloseTest::Create();
3339 1 : CPL_AUTO_CLOSE_WARP(p2, AutoCloseTest::Destroy);
3340 : }
3341 1 : ASSERT_EQ(counter, 400);
3342 : }
3343 :
3344 : // Test cpl_minixml
3345 4 : TEST_F(test_cpl, cpl_minixml)
3346 : {
3347 1 : CPLXMLNode *psRoot = CPLCreateXMLNode(nullptr, CXT_Element, "Root");
3348 1 : CPLXMLNode *psElt = CPLCreateXMLElementAndValue(psRoot, "Elt", "value");
3349 1 : CPLAddXMLAttributeAndValue(psElt, "attr1", "val1");
3350 1 : CPLAddXMLAttributeAndValue(psElt, "attr2", "val2");
3351 1 : EXPECT_GE(CPLXMLNodeGetRAMUsageEstimate(psRoot), 0);
3352 1 : char *str = CPLSerializeXMLTree(psRoot);
3353 1 : CPLDestroyXMLNode(psRoot);
3354 1 : ASSERT_STREQ(
3355 : str,
3356 : "<Root>\n <Elt attr1=\"val1\" attr2=\"val2\">value</Elt>\n</Root>\n");
3357 1 : CPLFree(str);
3358 : }
3359 :
3360 : // Test CPLCharUniquePtr
3361 4 : TEST_F(test_cpl, CPLCharUniquePtr)
3362 : {
3363 0 : CPLCharUniquePtr x;
3364 1 : ASSERT_TRUE(x.get() == nullptr);
3365 1 : x.reset(CPLStrdup("foo"));
3366 1 : ASSERT_STREQ(x.get(), "foo");
3367 : }
3368 :
3369 : // Test CPLJSonStreamingWriter
3370 4 : TEST_F(test_cpl, CPLJSonStreamingWriter)
3371 : {
3372 : {
3373 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3374 2 : ASSERT_EQ(x.GetString(), std::string());
3375 : }
3376 : {
3377 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3378 1 : x.Add(true);
3379 2 : ASSERT_EQ(x.GetString(), std::string("true"));
3380 : }
3381 : {
3382 1 : std::string res;
3383 :
3384 : struct MyCallback
3385 : {
3386 1 : static void f(const char *pszText, void *user_data)
3387 : {
3388 1 : *static_cast<std::string *>(user_data) += pszText;
3389 1 : }
3390 : };
3391 :
3392 1 : CPLJSonStreamingWriter x(&MyCallback::f, &res);
3393 1 : x.Add(true);
3394 2 : ASSERT_EQ(x.GetString(), std::string());
3395 2 : ASSERT_EQ(res, std::string("true"));
3396 : }
3397 : {
3398 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3399 1 : x.Add(false);
3400 2 : ASSERT_EQ(x.GetString(), std::string("false"));
3401 : }
3402 : {
3403 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3404 1 : x.AddNull();
3405 2 : ASSERT_EQ(x.GetString(), std::string("null"));
3406 : }
3407 : {
3408 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3409 1 : x.Add(1);
3410 2 : ASSERT_EQ(x.GetString(), std::string("1"));
3411 : }
3412 : {
3413 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3414 1 : x.Add(4200000000U);
3415 2 : ASSERT_EQ(x.GetString(), std::string("4200000000"));
3416 : }
3417 : {
3418 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3419 1 : x.Add(static_cast<std::int64_t>(-10000) * 1000000);
3420 2 : ASSERT_EQ(x.GetString(), std::string("-10000000000"));
3421 : }
3422 : {
3423 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3424 1 : x.Add(static_cast<std::uint64_t>(10000) * 1000000);
3425 2 : ASSERT_EQ(x.GetString(), std::string("10000000000"));
3426 : }
3427 : {
3428 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3429 1 : x.Add(1.5f);
3430 2 : ASSERT_EQ(x.GetString(), std::string("1.5"));
3431 : }
3432 : {
3433 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3434 1 : x.Add(std::numeric_limits<float>::quiet_NaN());
3435 2 : ASSERT_EQ(x.GetString(), std::string("\"NaN\""));
3436 : }
3437 : {
3438 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3439 1 : x.Add(std::numeric_limits<float>::infinity());
3440 2 : ASSERT_EQ(x.GetString(), std::string("\"Infinity\""));
3441 : }
3442 : {
3443 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3444 1 : x.Add(-std::numeric_limits<float>::infinity());
3445 2 : ASSERT_EQ(x.GetString(), std::string("\"-Infinity\""));
3446 : }
3447 : {
3448 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3449 1 : x.Add(1.25);
3450 2 : ASSERT_EQ(x.GetString(), std::string("1.25"));
3451 : }
3452 : {
3453 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3454 1 : x.Add(std::numeric_limits<double>::quiet_NaN());
3455 2 : ASSERT_EQ(x.GetString(), std::string("\"NaN\""));
3456 : }
3457 : {
3458 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3459 1 : x.Add(std::numeric_limits<double>::infinity());
3460 2 : ASSERT_EQ(x.GetString(), std::string("\"Infinity\""));
3461 : }
3462 : {
3463 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3464 1 : x.Add(-std::numeric_limits<double>::infinity());
3465 2 : ASSERT_EQ(x.GetString(), std::string("\"-Infinity\""));
3466 : }
3467 : {
3468 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3469 1 : x.Add(std::string("foo\\bar\"baz\b\f\n\r\t"
3470 : "\x01"
3471 : "boo"));
3472 2 : ASSERT_EQ(
3473 : x.GetString(),
3474 : std::string("\"foo\\\\bar\\\"baz\\b\\f\\n\\r\\t\\u0001boo\""));
3475 : }
3476 : {
3477 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3478 1 : x.Add("foo\\bar\"baz\b\f\n\r\t"
3479 : "\x01"
3480 : "boo");
3481 2 : ASSERT_EQ(
3482 : x.GetString(),
3483 : std::string("\"foo\\\\bar\\\"baz\\b\\f\\n\\r\\t\\u0001boo\""));
3484 : }
3485 : {
3486 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3487 1 : x.SetPrettyFormatting(false);
3488 : {
3489 1 : auto ctxt(x.MakeObjectContext());
3490 : }
3491 2 : ASSERT_EQ(x.GetString(), std::string("{}"));
3492 : }
3493 : {
3494 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3495 : {
3496 1 : auto ctxt(x.MakeObjectContext());
3497 : }
3498 2 : ASSERT_EQ(x.GetString(), std::string("{}"));
3499 : }
3500 : {
3501 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3502 1 : x.SetPrettyFormatting(false);
3503 : {
3504 2 : auto ctxt(x.MakeObjectContext());
3505 1 : x.AddObjKey("key");
3506 1 : x.Add("value");
3507 : }
3508 2 : ASSERT_EQ(x.GetString(), std::string("{\"key\":\"value\"}"));
3509 : }
3510 : {
3511 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3512 : {
3513 2 : auto ctxt(x.MakeObjectContext());
3514 1 : x.AddObjKey("key");
3515 1 : x.Add("value");
3516 : }
3517 2 : ASSERT_EQ(x.GetString(), std::string("{\n \"key\": \"value\"\n}"));
3518 : }
3519 : {
3520 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3521 : {
3522 2 : auto ctxt(x.MakeObjectContext());
3523 1 : x.AddObjKey("key");
3524 1 : x.Add("value");
3525 1 : x.AddObjKey("key2");
3526 1 : x.Add("value2");
3527 : }
3528 2 : ASSERT_EQ(
3529 : x.GetString(),
3530 : std::string("{\n \"key\": \"value\",\n \"key2\": \"value2\"\n}"));
3531 : }
3532 : {
3533 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3534 : {
3535 1 : auto ctxt(x.MakeArrayContext());
3536 : }
3537 2 : ASSERT_EQ(x.GetString(), std::string("[]"));
3538 : }
3539 : {
3540 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3541 : {
3542 2 : auto ctxt(x.MakeArrayContext());
3543 1 : x.Add(1);
3544 : }
3545 2 : ASSERT_EQ(x.GetString(), std::string("[\n 1\n]"));
3546 : }
3547 : {
3548 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3549 : {
3550 2 : auto ctxt(x.MakeArrayContext());
3551 1 : x.Add(1);
3552 1 : x.Add(2);
3553 : }
3554 2 : ASSERT_EQ(x.GetString(), std::string("[\n 1,\n 2\n]"));
3555 : }
3556 : {
3557 1 : CPLJSonStreamingWriter x(nullptr, nullptr);
3558 : {
3559 2 : auto ctxt(x.MakeArrayContext(true));
3560 1 : x.Add(1);
3561 1 : x.Add(2);
3562 : }
3563 2 : ASSERT_EQ(x.GetString(), std::string("[1, 2]"));
3564 : }
3565 : }
3566 :
3567 : // Test CPLWorkerThreadPool
3568 4 : TEST_F(test_cpl, CPLWorkerThreadPool)
3569 : {
3570 1 : CPLWorkerThreadPool oPool;
3571 1 : ASSERT_TRUE(oPool.Setup(2, nullptr, nullptr, false));
3572 :
3573 3000 : const auto myJob = [](void *pData) { (*static_cast<int *>(pData))++; };
3574 :
3575 : {
3576 1 : std::vector<int> res(1000);
3577 1001 : for (int i = 0; i < 1000; i++)
3578 : {
3579 1000 : res[i] = i;
3580 1000 : oPool.SubmitJob(myJob, &res[i]);
3581 : }
3582 1 : oPool.WaitCompletion();
3583 1001 : for (int i = 0; i < 1000; i++)
3584 : {
3585 1000 : ASSERT_EQ(res[i], i + 1);
3586 : }
3587 : }
3588 :
3589 : {
3590 1 : std::vector<int> res(1000);
3591 1 : std::vector<void *> resPtr(1000);
3592 1001 : for (int i = 0; i < 1000; i++)
3593 : {
3594 1000 : res[i] = i;
3595 1000 : resPtr[i] = res.data() + i;
3596 : }
3597 1 : oPool.SubmitJobs(myJob, resPtr);
3598 1 : oPool.WaitEvent();
3599 1 : oPool.WaitCompletion();
3600 1001 : for (int i = 0; i < 1000; i++)
3601 : {
3602 1000 : ASSERT_EQ(res[i], i + 1);
3603 : }
3604 : }
3605 :
3606 : {
3607 1 : auto jobQueue1 = oPool.CreateJobQueue();
3608 1 : auto jobQueue2 = oPool.CreateJobQueue();
3609 :
3610 1 : ASSERT_EQ(jobQueue1->GetPool(), &oPool);
3611 :
3612 1 : std::vector<int> res(1000);
3613 1001 : for (int i = 0; i < 1000; i++)
3614 : {
3615 1000 : res[i] = i;
3616 1000 : if (i % 2)
3617 500 : jobQueue1->SubmitJob(myJob, &res[i]);
3618 : else
3619 500 : jobQueue2->SubmitJob(myJob, &res[i]);
3620 : }
3621 1 : jobQueue1->WaitCompletion();
3622 1 : jobQueue2->WaitCompletion();
3623 1001 : for (int i = 0; i < 1000; i++)
3624 : {
3625 1000 : ASSERT_EQ(res[i], i + 1);
3626 : }
3627 : }
3628 : }
3629 :
3630 : // Test CPLHTTPFetch
3631 4 : TEST_F(test_cpl, CPLHTTPFetch)
3632 : {
3633 : #ifdef HAVE_CURL
3634 2 : CPLStringList oOptions;
3635 1 : oOptions.AddNameValue("FORM_ITEM_COUNT", "5");
3636 1 : oOptions.AddNameValue("FORM_KEY_0", "qqq");
3637 1 : oOptions.AddNameValue("FORM_VALUE_0", "www");
3638 1 : CPLHTTPResult *pResult = CPLHTTPFetch("http://example.com", oOptions);
3639 1 : EXPECT_EQ(pResult->nStatus, 34);
3640 1 : CPLHTTPDestroyResult(pResult);
3641 1 : pResult = nullptr;
3642 1 : oOptions.Clear();
3643 :
3644 1 : oOptions.AddNameValue("FORM_FILE_PATH", "not_existed");
3645 1 : pResult = CPLHTTPFetch("http://example.com", oOptions);
3646 1 : EXPECT_EQ(pResult->nStatus, 34);
3647 1 : CPLHTTPDestroyResult(pResult);
3648 : #else
3649 : GTEST_SKIP() << "CURL not available";
3650 : #endif // HAVE_CURL
3651 1 : }
3652 :
3653 : // Test CPLHTTPPushFetchCallback
3654 4 : TEST_F(test_cpl, CPLHTTPPushFetchCallback)
3655 : {
3656 : struct myCbkUserDataStruct
3657 : {
3658 : CPLString osURL{};
3659 : CSLConstList papszOptions = nullptr;
3660 : GDALProgressFunc pfnProgress = nullptr;
3661 : void *pProgressArg = nullptr;
3662 : CPLHTTPFetchWriteFunc pfnWrite = nullptr;
3663 : void *pWriteArg = nullptr;
3664 : };
3665 :
3666 1 : const auto myCbk = [](const char *pszURL, CSLConstList papszOptions,
3667 : GDALProgressFunc pfnProgress, void *pProgressArg,
3668 : CPLHTTPFetchWriteFunc pfnWrite, void *pWriteArg,
3669 : void *pUserData)
3670 : {
3671 1 : myCbkUserDataStruct *pCbkUserData =
3672 : static_cast<myCbkUserDataStruct *>(pUserData);
3673 1 : pCbkUserData->osURL = pszURL;
3674 1 : pCbkUserData->papszOptions = papszOptions;
3675 1 : pCbkUserData->pfnProgress = pfnProgress;
3676 1 : pCbkUserData->pProgressArg = pProgressArg;
3677 1 : pCbkUserData->pfnWrite = pfnWrite;
3678 1 : pCbkUserData->pWriteArg = pWriteArg;
3679 : auto psResult =
3680 1 : static_cast<CPLHTTPResult *>(CPLCalloc(sizeof(CPLHTTPResult), 1));
3681 1 : psResult->nStatus = 123;
3682 1 : return psResult;
3683 : };
3684 :
3685 1 : myCbkUserDataStruct userData;
3686 1 : EXPECT_TRUE(CPLHTTPPushFetchCallback(myCbk, &userData));
3687 :
3688 1 : int progressArg = 0;
3689 0 : const auto myWriteCbk = [](void *, size_t, size_t, void *) -> size_t
3690 0 : { return 0; };
3691 1 : int writeCbkArg = 00;
3692 :
3693 1 : CPLStringList aosOptions;
3694 1 : GDALProgressFunc pfnProgress = GDALTermProgress;
3695 1 : CPLHTTPFetchWriteFunc pfnWriteCbk = myWriteCbk;
3696 : CPLHTTPResult *pResult =
3697 1 : CPLHTTPFetchEx("http://example.com", aosOptions.List(), pfnProgress,
3698 : &progressArg, pfnWriteCbk, &writeCbkArg);
3699 1 : ASSERT_TRUE(pResult != nullptr);
3700 1 : EXPECT_EQ(pResult->nStatus, 123);
3701 1 : CPLHTTPDestroyResult(pResult);
3702 :
3703 1 : EXPECT_TRUE(CPLHTTPPopFetchCallback());
3704 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
3705 1 : EXPECT_TRUE(!CPLHTTPPopFetchCallback());
3706 1 : CPLPopErrorHandler();
3707 :
3708 1 : EXPECT_STREQ(userData.osURL, "http://example.com");
3709 1 : EXPECT_EQ(userData.papszOptions, aosOptions.List());
3710 1 : EXPECT_EQ(userData.pfnProgress, pfnProgress);
3711 1 : EXPECT_EQ(userData.pProgressArg, &progressArg);
3712 1 : EXPECT_EQ(userData.pfnWrite, pfnWriteCbk);
3713 1 : EXPECT_EQ(userData.pWriteArg, &writeCbkArg);
3714 : }
3715 :
3716 : // Test CPLHTTPSetFetchCallback
3717 4 : TEST_F(test_cpl, CPLHTTPSetFetchCallback)
3718 : {
3719 : struct myCbkUserDataStruct
3720 : {
3721 : CPLString osURL{};
3722 : CSLConstList papszOptions = nullptr;
3723 : GDALProgressFunc pfnProgress = nullptr;
3724 : void *pProgressArg = nullptr;
3725 : CPLHTTPFetchWriteFunc pfnWrite = nullptr;
3726 : void *pWriteArg = nullptr;
3727 : };
3728 :
3729 1 : const auto myCbk2 = [](const char *pszURL, CSLConstList papszOptions,
3730 : GDALProgressFunc pfnProgress, void *pProgressArg,
3731 : CPLHTTPFetchWriteFunc pfnWrite, void *pWriteArg,
3732 : void *pUserData)
3733 : {
3734 1 : myCbkUserDataStruct *pCbkUserData =
3735 : static_cast<myCbkUserDataStruct *>(pUserData);
3736 1 : pCbkUserData->osURL = pszURL;
3737 1 : pCbkUserData->papszOptions = papszOptions;
3738 1 : pCbkUserData->pfnProgress = pfnProgress;
3739 1 : pCbkUserData->pProgressArg = pProgressArg;
3740 1 : pCbkUserData->pfnWrite = pfnWrite;
3741 1 : pCbkUserData->pWriteArg = pWriteArg;
3742 : auto psResult =
3743 1 : static_cast<CPLHTTPResult *>(CPLCalloc(sizeof(CPLHTTPResult), 1));
3744 1 : psResult->nStatus = 124;
3745 1 : return psResult;
3746 : };
3747 1 : myCbkUserDataStruct userData2;
3748 1 : CPLHTTPSetFetchCallback(myCbk2, &userData2);
3749 :
3750 1 : int progressArg = 0;
3751 0 : const auto myWriteCbk = [](void *, size_t, size_t, void *) -> size_t
3752 0 : { return 0; };
3753 1 : int writeCbkArg = 00;
3754 :
3755 1 : CPLStringList aosOptions;
3756 1 : GDALProgressFunc pfnProgress = GDALTermProgress;
3757 1 : CPLHTTPFetchWriteFunc pfnWriteCbk = myWriteCbk;
3758 : CPLHTTPResult *pResult =
3759 1 : CPLHTTPFetchEx("http://example.com", aosOptions.List(), pfnProgress,
3760 : &progressArg, pfnWriteCbk, &writeCbkArg);
3761 1 : ASSERT_TRUE(pResult != nullptr);
3762 1 : EXPECT_EQ(pResult->nStatus, 124);
3763 1 : CPLHTTPDestroyResult(pResult);
3764 :
3765 1 : CPLHTTPSetFetchCallback(nullptr, nullptr);
3766 :
3767 1 : EXPECT_STREQ(userData2.osURL, "http://example.com");
3768 1 : EXPECT_EQ(userData2.papszOptions, aosOptions.List());
3769 1 : EXPECT_EQ(userData2.pfnProgress, pfnProgress);
3770 1 : EXPECT_EQ(userData2.pProgressArg, &progressArg);
3771 1 : EXPECT_EQ(userData2.pfnWrite, pfnWriteCbk);
3772 1 : EXPECT_EQ(userData2.pWriteArg, &writeCbkArg);
3773 : }
3774 :
3775 : // Test CPLLoadConfigOptionsFromFile() and
3776 : // CPLLoadConfigOptionsFromPredefinedFiles()
3777 4 : TEST_F(test_cpl, CPLLoadConfigOptionsFromFile)
3778 : {
3779 1 : CPLLoadConfigOptionsFromFile("/i/do/not/exist", false);
3780 :
3781 1 : VSILFILE *fp = VSIFOpenL("/vsimem/.gdal/gdalrc", "wb");
3782 1 : VSIFPrintfL(fp, "# some comment\n");
3783 1 : VSIFPrintfL(fp, "\n"); // blank line
3784 1 : VSIFPrintfL(fp, " \n"); // blank line
3785 1 : VSIFPrintfL(fp, "[configoptions]\n");
3786 1 : VSIFPrintfL(fp, "# some comment\n");
3787 1 : VSIFPrintfL(fp, "FOO_CONFIGOPTION=BAR\n");
3788 1 : VSIFCloseL(fp);
3789 :
3790 : // Try CPLLoadConfigOptionsFromFile()
3791 1 : CPLLoadConfigOptionsFromFile("/vsimem/.gdal/gdalrc", false);
3792 1 : ASSERT_TRUE(EQUAL(CPLGetConfigOption("FOO_CONFIGOPTION", ""), "BAR"));
3793 1 : CPLSetConfigOption("FOO_CONFIGOPTION", nullptr);
3794 :
3795 : // Try CPLLoadConfigOptionsFromPredefinedFiles() with GDAL_CONFIG_FILE set
3796 1 : CPLSetConfigOption("GDAL_CONFIG_FILE", "/vsimem/.gdal/gdalrc");
3797 1 : CPLLoadConfigOptionsFromPredefinedFiles();
3798 1 : ASSERT_TRUE(EQUAL(CPLGetConfigOption("FOO_CONFIGOPTION", ""), "BAR"));
3799 1 : CPLSetConfigOption("FOO_CONFIGOPTION", nullptr);
3800 :
3801 : // Try CPLLoadConfigOptionsFromPredefinedFiles() with $HOME/.gdal/gdalrc
3802 : // file
3803 : #ifdef _WIN32
3804 : const char *pszHOMEEnvVarName = "USERPROFILE";
3805 : #else
3806 1 : const char *pszHOMEEnvVarName = "HOME";
3807 : #endif
3808 1 : CPLString osOldVal(CPLGetConfigOption(pszHOMEEnvVarName, ""));
3809 1 : CPLSetConfigOption(pszHOMEEnvVarName, "/vsimem/");
3810 1 : CPLLoadConfigOptionsFromPredefinedFiles();
3811 1 : ASSERT_TRUE(EQUAL(CPLGetConfigOption("FOO_CONFIGOPTION", ""), "BAR"));
3812 1 : CPLSetConfigOption("FOO_CONFIGOPTION", nullptr);
3813 1 : if (!osOldVal.empty())
3814 1 : CPLSetConfigOption(pszHOMEEnvVarName, osOldVal.c_str());
3815 : else
3816 0 : CPLSetConfigOption(pszHOMEEnvVarName, nullptr);
3817 :
3818 1 : VSIUnlink("/vsimem/.gdal/gdalrc");
3819 : }
3820 :
3821 : // Test decompressor side of cpl_compressor.h
3822 4 : TEST_F(test_cpl, decompressor)
3823 : {
3824 : const auto compressionLambda =
3825 0 : [](const void * /* input_data */, size_t /* input_size */,
3826 : void ** /* output_data */, size_t * /* output_size */,
3827 : CSLConstList /* options */, void * /* compressor_user_data */)
3828 0 : { return false; };
3829 1 : int dummy = 0;
3830 :
3831 : CPLCompressor sComp;
3832 1 : sComp.nStructVersion = 1;
3833 1 : sComp.eType = CCT_COMPRESSOR;
3834 1 : sComp.pszId = "my_comp";
3835 1 : const char *const apszMetadata[] = {"FOO=BAR", nullptr};
3836 1 : sComp.papszMetadata = apszMetadata;
3837 1 : sComp.pfnFunc = compressionLambda;
3838 1 : sComp.user_data = &dummy;
3839 :
3840 1 : ASSERT_TRUE(CPLRegisterDecompressor(&sComp));
3841 :
3842 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
3843 1 : ASSERT_TRUE(!CPLRegisterDecompressor(&sComp));
3844 1 : CPLPopErrorHandler();
3845 :
3846 1 : char **decompressors = CPLGetDecompressors();
3847 1 : ASSERT_TRUE(decompressors != nullptr);
3848 1 : EXPECT_TRUE(CSLFindString(decompressors, sComp.pszId) >= 0);
3849 9 : for (auto iter = decompressors; *iter; ++iter)
3850 : {
3851 8 : const auto pCompressor = CPLGetDecompressor(*iter);
3852 8 : EXPECT_TRUE(pCompressor);
3853 8 : if (pCompressor)
3854 : {
3855 : const char *pszOptions =
3856 8 : CSLFetchNameValue(pCompressor->papszMetadata, "OPTIONS");
3857 8 : if (pszOptions)
3858 : {
3859 3 : auto psNode = CPLParseXMLString(pszOptions);
3860 3 : EXPECT_TRUE(psNode);
3861 3 : CPLDestroyXMLNode(psNode);
3862 : }
3863 : else
3864 : {
3865 5 : CPLDebug("TEST", "Decompressor %s has no OPTIONS", *iter);
3866 : }
3867 : }
3868 : }
3869 1 : CSLDestroy(decompressors);
3870 :
3871 1 : EXPECT_TRUE(CPLGetDecompressor("invalid") == nullptr);
3872 1 : const auto pCompressor = CPLGetDecompressor(sComp.pszId);
3873 1 : ASSERT_TRUE(pCompressor);
3874 1 : EXPECT_STREQ(pCompressor->pszId, sComp.pszId);
3875 1 : EXPECT_EQ(CSLCount(pCompressor->papszMetadata),
3876 : CSLCount(sComp.papszMetadata));
3877 1 : EXPECT_TRUE(pCompressor->pfnFunc != nullptr);
3878 1 : EXPECT_EQ(pCompressor->user_data, sComp.user_data);
3879 :
3880 1 : CPLDestroyCompressorRegistry();
3881 1 : EXPECT_TRUE(CPLGetDecompressor(sComp.pszId) == nullptr);
3882 : }
3883 :
3884 : // Test compressor side of cpl_compressor.h
3885 4 : TEST_F(test_cpl, compressor)
3886 : {
3887 : const auto compressionLambda =
3888 0 : [](const void * /* input_data */, size_t /* input_size */,
3889 : void ** /* output_data */, size_t * /* output_size */,
3890 : CSLConstList /* options */, void * /* compressor_user_data */)
3891 0 : { return false; };
3892 1 : int dummy = 0;
3893 :
3894 : CPLCompressor sComp;
3895 1 : sComp.nStructVersion = 1;
3896 1 : sComp.eType = CCT_COMPRESSOR;
3897 1 : sComp.pszId = "my_comp";
3898 1 : const char *const apszMetadata[] = {"FOO=BAR", nullptr};
3899 1 : sComp.papszMetadata = apszMetadata;
3900 1 : sComp.pfnFunc = compressionLambda;
3901 1 : sComp.user_data = &dummy;
3902 :
3903 1 : ASSERT_TRUE(CPLRegisterCompressor(&sComp));
3904 :
3905 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
3906 1 : ASSERT_TRUE(!CPLRegisterCompressor(&sComp));
3907 1 : CPLPopErrorHandler();
3908 :
3909 1 : char **compressors = CPLGetCompressors();
3910 1 : ASSERT_TRUE(compressors != nullptr);
3911 1 : EXPECT_TRUE(CSLFindString(compressors, sComp.pszId) >= 0);
3912 9 : for (auto iter = compressors; *iter; ++iter)
3913 : {
3914 8 : const auto pCompressor = CPLGetCompressor(*iter);
3915 8 : EXPECT_TRUE(pCompressor);
3916 8 : if (pCompressor)
3917 : {
3918 : const char *pszOptions =
3919 8 : CSLFetchNameValue(pCompressor->papszMetadata, "OPTIONS");
3920 8 : if (pszOptions)
3921 : {
3922 7 : auto psNode = CPLParseXMLString(pszOptions);
3923 7 : EXPECT_TRUE(psNode);
3924 7 : CPLDestroyXMLNode(psNode);
3925 : }
3926 : else
3927 : {
3928 1 : CPLDebug("TEST", "Compressor %s has no OPTIONS", *iter);
3929 : }
3930 : }
3931 : }
3932 1 : CSLDestroy(compressors);
3933 :
3934 1 : EXPECT_TRUE(CPLGetCompressor("invalid") == nullptr);
3935 1 : const auto pCompressor = CPLGetCompressor(sComp.pszId);
3936 1 : ASSERT_TRUE(pCompressor);
3937 1 : if (pCompressor == nullptr)
3938 0 : return;
3939 1 : EXPECT_STREQ(pCompressor->pszId, sComp.pszId);
3940 1 : EXPECT_EQ(CSLCount(pCompressor->papszMetadata),
3941 : CSLCount(sComp.papszMetadata));
3942 1 : EXPECT_TRUE(pCompressor->pfnFunc != nullptr);
3943 1 : EXPECT_EQ(pCompressor->user_data, sComp.user_data);
3944 :
3945 1 : CPLDestroyCompressorRegistry();
3946 1 : EXPECT_TRUE(CPLGetDecompressor(sComp.pszId) == nullptr);
3947 : }
3948 :
3949 : // Test builtin compressors/decompressor
3950 4 : TEST_F(test_cpl, builtin_compressors)
3951 : {
3952 7 : for (const char *id : {"blosc", "zlib", "gzip", "lzma", "zstd", "lz4"})
3953 : {
3954 6 : const auto pCompressor = CPLGetCompressor(id);
3955 6 : if (pCompressor == nullptr)
3956 : {
3957 0 : CPLDebug("TEST", "%s not available", id);
3958 0 : if (strcmp(id, "zlib") == 0 || strcmp(id, "gzip") == 0)
3959 : {
3960 0 : ASSERT_TRUE(false);
3961 : }
3962 0 : continue;
3963 : }
3964 6 : CPLDebug("TEST", "Testing %s", id);
3965 :
3966 6 : const char my_str[] = "my string to compress";
3967 6 : const char *const options[] = {"TYPESIZE=1", nullptr};
3968 :
3969 : // Compressor side
3970 :
3971 : // Just get output size
3972 6 : size_t out_size = 0;
3973 6 : ASSERT_TRUE(pCompressor->pfnFunc(my_str, strlen(my_str), nullptr,
3974 : &out_size, options,
3975 : pCompressor->user_data));
3976 6 : ASSERT_TRUE(out_size != 0);
3977 :
3978 : // Let it alloc the output buffer
3979 6 : void *out_buffer2 = nullptr;
3980 6 : size_t out_size2 = 0;
3981 6 : ASSERT_TRUE(pCompressor->pfnFunc(my_str, strlen(my_str), &out_buffer2,
3982 : &out_size2, options,
3983 : pCompressor->user_data));
3984 6 : ASSERT_TRUE(out_buffer2 != nullptr);
3985 6 : ASSERT_TRUE(out_size2 != 0);
3986 6 : ASSERT_TRUE(out_size2 <= out_size);
3987 :
3988 6 : std::vector<GByte> out_buffer3(out_size);
3989 :
3990 : // Provide not large enough buffer size
3991 6 : size_t out_size3 = 1;
3992 6 : void *out_buffer3_ptr = &out_buffer3[0];
3993 6 : ASSERT_TRUE(!(pCompressor->pfnFunc(my_str, strlen(my_str),
3994 : &out_buffer3_ptr, &out_size3,
3995 : options, pCompressor->user_data)));
3996 :
3997 : // Provide the output buffer
3998 6 : out_size3 = out_buffer3.size();
3999 6 : out_buffer3_ptr = &out_buffer3[0];
4000 6 : ASSERT_TRUE(pCompressor->pfnFunc(my_str, strlen(my_str),
4001 : &out_buffer3_ptr, &out_size3, options,
4002 : pCompressor->user_data));
4003 6 : ASSERT_TRUE(out_buffer3_ptr != nullptr);
4004 6 : ASSERT_TRUE(out_buffer3_ptr == &out_buffer3[0]);
4005 6 : ASSERT_TRUE(out_size3 != 0);
4006 6 : ASSERT_EQ(out_size3, out_size2);
4007 :
4008 6 : out_buffer3.resize(out_size3);
4009 6 : out_buffer3_ptr = &out_buffer3[0];
4010 :
4011 6 : ASSERT_TRUE(memcmp(out_buffer3_ptr, out_buffer2, out_size2) == 0);
4012 :
4013 6 : CPLFree(out_buffer2);
4014 :
4015 6 : const std::vector<GByte> compressedData(out_buffer3);
4016 :
4017 : // Decompressor side
4018 6 : const auto pDecompressor = CPLGetDecompressor(id);
4019 6 : ASSERT_TRUE(pDecompressor != nullptr);
4020 :
4021 6 : out_size = 0;
4022 6 : ASSERT_TRUE(pDecompressor->pfnFunc(
4023 : compressedData.data(), compressedData.size(), nullptr, &out_size,
4024 : nullptr, pDecompressor->user_data));
4025 6 : ASSERT_TRUE(out_size != 0);
4026 6 : ASSERT_TRUE(out_size >= strlen(my_str));
4027 :
4028 6 : out_buffer2 = nullptr;
4029 6 : out_size2 = 0;
4030 6 : ASSERT_TRUE(pDecompressor->pfnFunc(
4031 : compressedData.data(), compressedData.size(), &out_buffer2,
4032 : &out_size2, options, pDecompressor->user_data));
4033 6 : ASSERT_TRUE(out_buffer2 != nullptr);
4034 6 : ASSERT_TRUE(out_size2 != 0);
4035 6 : ASSERT_EQ(out_size2, strlen(my_str));
4036 6 : ASSERT_TRUE(memcmp(out_buffer2, my_str, strlen(my_str)) == 0);
4037 6 : CPLFree(out_buffer2);
4038 :
4039 6 : out_buffer3.clear();
4040 6 : out_buffer3.resize(out_size);
4041 6 : out_size3 = out_buffer3.size();
4042 6 : out_buffer3_ptr = &out_buffer3[0];
4043 6 : ASSERT_TRUE(pDecompressor->pfnFunc(
4044 : compressedData.data(), compressedData.size(), &out_buffer3_ptr,
4045 : &out_size3, options, pDecompressor->user_data));
4046 6 : ASSERT_TRUE(out_buffer3_ptr != nullptr);
4047 6 : ASSERT_TRUE(out_buffer3_ptr == &out_buffer3[0]);
4048 6 : ASSERT_EQ(out_size3, strlen(my_str));
4049 6 : ASSERT_TRUE(memcmp(out_buffer3.data(), my_str, strlen(my_str)) == 0);
4050 : }
4051 : }
4052 :
4053 : // Test builtin compressors/decompressor
4054 4 : TEST_F(test_cpl, builtin_compressors_zlib_high_compression_rate)
4055 : {
4056 1 : const auto pCompressor = CPLGetCompressor("zlib");
4057 1 : ASSERT_TRUE(pCompressor != nullptr);
4058 :
4059 1 : std::vector<GByte> abyInput(1024 * 1024, 0x01);
4060 :
4061 : // Compressor side
4062 :
4063 : // Let it alloc the output buffer
4064 1 : void *out_buffer = nullptr;
4065 1 : size_t out_size = 0;
4066 1 : ASSERT_TRUE(pCompressor->pfnFunc(abyInput.data(), abyInput.size(),
4067 : &out_buffer, &out_size, nullptr,
4068 : pCompressor->user_data));
4069 1 : ASSERT_TRUE(out_buffer != nullptr);
4070 1 : ASSERT_TRUE(out_size != 0);
4071 :
4072 : // Decompressor side
4073 1 : const auto pDecompressor = CPLGetDecompressor("zlib");
4074 1 : ASSERT_TRUE(pDecompressor != nullptr);
4075 :
4076 1 : void *out_buffer2 = nullptr;
4077 1 : size_t out_size2 = 0;
4078 1 : ASSERT_TRUE(pDecompressor->pfnFunc(out_buffer, out_size, &out_buffer2,
4079 : &out_size2, nullptr,
4080 : pDecompressor->user_data));
4081 1 : CPLFree(out_buffer);
4082 :
4083 1 : ASSERT_TRUE(out_buffer2 != nullptr);
4084 1 : ASSERT_TRUE(out_size2 != 0);
4085 1 : ASSERT_EQ(out_size2, abyInput.size());
4086 1 : ASSERT_TRUE(memcmp(out_buffer2, abyInput.data(), abyInput.size()) == 0);
4087 1 : CPLFree(out_buffer2);
4088 : }
4089 :
4090 : template <class T> struct TesterDelta
4091 : {
4092 24 : static void test(const char *dtypeOption)
4093 : {
4094 24 : const auto pCompressor = CPLGetCompressor("delta");
4095 24 : ASSERT_TRUE(pCompressor);
4096 24 : if (pCompressor == nullptr)
4097 0 : return;
4098 24 : const auto pDecompressor = CPLGetDecompressor("delta");
4099 24 : ASSERT_TRUE(pDecompressor);
4100 24 : if (pDecompressor == nullptr)
4101 0 : return;
4102 :
4103 24 : const T tabIn[] = {static_cast<T>(-2), 3, 1};
4104 : T tabCompress[3];
4105 : T tabOut[3];
4106 24 : const char *const apszOptions[] = {dtypeOption, nullptr};
4107 :
4108 24 : void *outPtr = &tabCompress[0];
4109 24 : size_t outSize = sizeof(tabCompress);
4110 24 : ASSERT_TRUE(pCompressor->pfnFunc(&tabIn[0], sizeof(tabIn), &outPtr,
4111 : &outSize, apszOptions,
4112 : pCompressor->user_data));
4113 24 : ASSERT_EQ(outSize, sizeof(tabCompress));
4114 :
4115 : // ASSERT_EQ(tabCompress[0], 2);
4116 : // ASSERT_EQ(tabCompress[1], 1);
4117 : // ASSERT_EQ(tabCompress[2], -2);
4118 :
4119 24 : outPtr = &tabOut[0];
4120 24 : outSize = sizeof(tabOut);
4121 24 : ASSERT_TRUE(pDecompressor->pfnFunc(&tabCompress[0], sizeof(tabCompress),
4122 : &outPtr, &outSize, apszOptions,
4123 : pDecompressor->user_data));
4124 24 : ASSERT_EQ(outSize, sizeof(tabOut));
4125 24 : ASSERT_EQ(tabOut[0], tabIn[0]);
4126 24 : ASSERT_EQ(tabOut[1], tabIn[1]);
4127 24 : ASSERT_EQ(tabOut[2], tabIn[2]);
4128 : }
4129 : };
4130 :
4131 : // Test delta compressor/decompressor
4132 4 : TEST_F(test_cpl, delta_compressor)
4133 : {
4134 1 : TesterDelta<int8_t>::test("DTYPE=i1");
4135 :
4136 1 : TesterDelta<uint8_t>::test("DTYPE=u1");
4137 :
4138 1 : TesterDelta<int16_t>::test("DTYPE=i2");
4139 1 : TesterDelta<int16_t>::test("DTYPE=<i2");
4140 1 : TesterDelta<int16_t>::test("DTYPE=>i2");
4141 :
4142 1 : TesterDelta<uint16_t>::test("DTYPE=u2");
4143 1 : TesterDelta<uint16_t>::test("DTYPE=<u2");
4144 1 : TesterDelta<uint16_t>::test("DTYPE=>u2");
4145 :
4146 1 : TesterDelta<int32_t>::test("DTYPE=i4");
4147 1 : TesterDelta<int32_t>::test("DTYPE=<i4");
4148 1 : TesterDelta<int32_t>::test("DTYPE=>i4");
4149 :
4150 1 : TesterDelta<uint32_t>::test("DTYPE=u4");
4151 1 : TesterDelta<uint32_t>::test("DTYPE=<u4");
4152 1 : TesterDelta<uint32_t>::test("DTYPE=>u4");
4153 :
4154 1 : TesterDelta<int64_t>::test("DTYPE=i8");
4155 1 : TesterDelta<int64_t>::test("DTYPE=<i8");
4156 1 : TesterDelta<int64_t>::test("DTYPE=>i8");
4157 :
4158 1 : TesterDelta<uint64_t>::test("DTYPE=u8");
4159 1 : TesterDelta<uint64_t>::test("DTYPE=<u8");
4160 1 : TesterDelta<uint64_t>::test("DTYPE=>u8");
4161 :
4162 1 : TesterDelta<float>::test("DTYPE=f4");
4163 : #ifdef CPL_MSB
4164 : TesterDelta<float>::test("DTYPE=>f4");
4165 : #else
4166 1 : TesterDelta<float>::test("DTYPE=<f4");
4167 : #endif
4168 :
4169 1 : TesterDelta<double>::test("DTYPE=f8");
4170 : #ifdef CPL_MSB
4171 : TesterDelta<double>::test("DTYPE=>f8");
4172 : #else
4173 1 : TesterDelta<double>::test("DTYPE=<f8");
4174 : #endif
4175 1 : }
4176 :
4177 : // Test CPLQuadTree
4178 4 : TEST_F(test_cpl, CPLQuadTree)
4179 : {
4180 1 : unsigned next = 0;
4181 :
4182 4 : const auto DummyRandInit = [&next](unsigned initValue)
4183 5 : { next = initValue; };
4184 :
4185 1 : constexpr int MAX_RAND_VAL = 32767;
4186 :
4187 : // Slightly improved version of https://xkcd.com/221/, as suggested by
4188 : // "man srand"
4189 16000 : const auto DummyRand = [&]()
4190 : {
4191 16000 : next = next * 1103515245 + 12345;
4192 16000 : return ((unsigned)(next / 65536) % (MAX_RAND_VAL + 1));
4193 1 : };
4194 :
4195 : CPLRectObj globalbounds;
4196 1 : globalbounds.minx = 0;
4197 1 : globalbounds.miny = 0;
4198 1 : globalbounds.maxx = 1;
4199 1 : globalbounds.maxy = 1;
4200 :
4201 1 : auto hTree = CPLQuadTreeCreate(&globalbounds, nullptr);
4202 1 : ASSERT_TRUE(hTree != nullptr);
4203 :
4204 4000 : const auto GenerateRandomRect = [&](CPLRectObj &rect)
4205 : {
4206 4000 : rect.minx = double(DummyRand()) / MAX_RAND_VAL;
4207 4000 : rect.miny = double(DummyRand()) / MAX_RAND_VAL;
4208 4000 : rect.maxx =
4209 4000 : rect.minx + double(DummyRand()) / MAX_RAND_VAL * (1 - rect.minx);
4210 4000 : rect.maxy =
4211 4000 : rect.miny + double(DummyRand()) / MAX_RAND_VAL * (1 - rect.miny);
4212 4001 : };
4213 :
4214 3 : for (int j = 0; j < 2; j++)
4215 : {
4216 2 : DummyRandInit(j);
4217 2002 : for (int i = 0; i < 1000; i++)
4218 : {
4219 : CPLRectObj rect;
4220 2000 : GenerateRandomRect(rect);
4221 2000 : void *hFeature =
4222 2000 : reinterpret_cast<void *>(static_cast<uintptr_t>(i));
4223 2000 : CPLQuadTreeInsertWithBounds(hTree, hFeature, &rect);
4224 : }
4225 :
4226 : {
4227 2 : int nFeatureCount = 0;
4228 2 : CPLFree(CPLQuadTreeSearch(hTree, &globalbounds, &nFeatureCount));
4229 2 : ASSERT_EQ(nFeatureCount, 1000);
4230 : }
4231 :
4232 2 : DummyRandInit(j);
4233 2002 : for (int i = 0; i < 1000; i++)
4234 : {
4235 : CPLRectObj rect;
4236 2000 : GenerateRandomRect(rect);
4237 2000 : void *hFeature =
4238 2000 : reinterpret_cast<void *>(static_cast<uintptr_t>(i));
4239 2000 : CPLQuadTreeRemove(hTree, hFeature, &rect);
4240 : }
4241 :
4242 : {
4243 2 : int nFeatureCount = 0;
4244 2 : CPLFree(CPLQuadTreeSearch(hTree, &globalbounds, &nFeatureCount));
4245 2 : ASSERT_EQ(nFeatureCount, 0);
4246 : }
4247 : }
4248 :
4249 1 : CPLQuadTreeDestroy(hTree);
4250 : }
4251 :
4252 : // Test bUnlinkAndSize on VSIGetMemFileBuffer
4253 4 : TEST_F(test_cpl, VSIGetMemFileBuffer_unlink_and_size)
4254 : {
4255 1 : VSILFILE *fp = VSIFOpenL("/vsimem/test_unlink_and_seize.tif", "wb");
4256 1 : VSIFWriteL("test", 5, 1, fp);
4257 : GByte *pRawData =
4258 1 : VSIGetMemFileBuffer("/vsimem/test_unlink_and_seize.tif", nullptr, true);
4259 1 : ASSERT_TRUE(EQUAL(reinterpret_cast<const char *>(pRawData), "test"));
4260 1 : ASSERT_TRUE(VSIGetMemFileBuffer("/vsimem/test_unlink_and_seize.tif",
4261 : nullptr, false) == nullptr);
4262 1 : ASSERT_TRUE(VSIFOpenL("/vsimem/test_unlink_and_seize.tif", "r") == nullptr);
4263 1 : ASSERT_TRUE(VSIFReadL(pRawData, 5, 1, fp) == 0);
4264 1 : ASSERT_TRUE(VSIFWriteL(pRawData, 5, 1, fp) == 0);
4265 1 : ASSERT_TRUE(VSIFSeekL(fp, 0, SEEK_END) == 0);
4266 1 : CPLFree(pRawData);
4267 1 : VSIFCloseL(fp);
4268 : }
4269 :
4270 : // Test CPLLoadConfigOptionsFromFile() for VSI credentials
4271 4 : TEST_F(test_cpl, CPLLoadConfigOptionsFromFile_VSI_credentials)
4272 : {
4273 1 : VSILFILE *fp = VSIFOpenL("/vsimem/credentials.txt", "wb");
4274 1 : VSIFPrintfL(fp, "[credentials]\n");
4275 1 : VSIFPrintfL(fp, "\n");
4276 1 : VSIFPrintfL(fp, "[.my_subsection]\n");
4277 1 : VSIFPrintfL(fp, "path=/vsi_test/foo/bar\n");
4278 1 : VSIFPrintfL(fp, "FOO=BAR\n");
4279 1 : VSIFPrintfL(fp, "FOO2=BAR2\n");
4280 1 : VSIFPrintfL(fp, "\n");
4281 1 : VSIFPrintfL(fp, "[.my_subsection2]\n");
4282 1 : VSIFPrintfL(fp, "path=/vsi_test/bar/baz\n");
4283 1 : VSIFPrintfL(fp, "BAR=BAZ\n");
4284 1 : VSIFPrintfL(fp, "[configoptions]\n");
4285 1 : VSIFPrintfL(fp, "configoptions_FOO=BAR\n");
4286 1 : VSIFCloseL(fp);
4287 :
4288 1 : CPLErrorReset();
4289 1 : CPLLoadConfigOptionsFromFile("/vsimem/credentials.txt", false);
4290 1 : ASSERT_EQ(CPLGetLastErrorType(), CE_None);
4291 :
4292 : {
4293 : const char *pszVal =
4294 1 : VSIGetPathSpecificOption("/vsi_test/foo/bar", "FOO", nullptr);
4295 1 : ASSERT_TRUE(pszVal != nullptr);
4296 2 : ASSERT_EQ(std::string(pszVal), std::string("BAR"));
4297 : }
4298 :
4299 : {
4300 : const char *pszVal =
4301 1 : VSIGetPathSpecificOption("/vsi_test/foo/bar", "FOO2", nullptr);
4302 1 : ASSERT_TRUE(pszVal != nullptr);
4303 2 : ASSERT_EQ(std::string(pszVal), std::string("BAR2"));
4304 : }
4305 :
4306 : {
4307 : const char *pszVal =
4308 1 : VSIGetPathSpecificOption("/vsi_test/bar/baz", "BAR", nullptr);
4309 1 : ASSERT_TRUE(pszVal != nullptr);
4310 2 : ASSERT_EQ(std::string(pszVal), std::string("BAZ"));
4311 : }
4312 :
4313 : {
4314 1 : const char *pszVal = CPLGetConfigOption("configoptions_FOO", nullptr);
4315 1 : ASSERT_TRUE(pszVal != nullptr);
4316 2 : ASSERT_EQ(std::string(pszVal), std::string("BAR"));
4317 : }
4318 :
4319 1 : VSIClearPathSpecificOptions("/vsi_test/bar/baz");
4320 1 : CPLSetConfigOption("configoptions_FOO", nullptr);
4321 :
4322 : {
4323 : const char *pszVal =
4324 1 : VSIGetPathSpecificOption("/vsi_test/bar/baz", "BAR", nullptr);
4325 1 : ASSERT_TRUE(pszVal == nullptr);
4326 : }
4327 :
4328 1 : VSIUnlink("/vsimem/credentials.txt");
4329 : }
4330 :
4331 : // Test CPLLoadConfigOptionsFromFile() for VSI credentials, warning case
4332 4 : TEST_F(test_cpl, CPLLoadConfigOptionsFromFile_VSI_credentials_warning)
4333 : {
4334 1 : VSILFILE *fp = VSIFOpenL("/vsimem/credentials.txt", "wb");
4335 1 : VSIFPrintfL(fp, "[credentials]\n");
4336 1 : VSIFPrintfL(fp, "\n");
4337 1 : VSIFPrintfL(fp, "FOO=BAR\n"); // content outside of subsection
4338 1 : VSIFCloseL(fp);
4339 :
4340 1 : CPLErrorReset();
4341 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
4342 1 : CPLLoadConfigOptionsFromFile("/vsimem/credentials.txt", false);
4343 1 : CPLPopErrorHandler();
4344 1 : ASSERT_EQ(CPLGetLastErrorType(), CE_Warning);
4345 :
4346 1 : VSIUnlink("/vsimem/credentials.txt");
4347 : }
4348 :
4349 : // Test CPLLoadConfigOptionsFromFile() for VSI credentials, warning case
4350 4 : TEST_F(test_cpl,
4351 : CPLLoadConfigOptionsFromFile_VSI_credentials_subsection_warning)
4352 : {
4353 1 : VSILFILE *fp = VSIFOpenL("/vsimem/credentials.txt", "wb");
4354 1 : VSIFPrintfL(fp, "[credentials]\n");
4355 1 : VSIFPrintfL(fp, "[.subsection]\n");
4356 1 : VSIFPrintfL(fp, "FOO=BAR\n"); // first key is not 'path'
4357 1 : VSIFCloseL(fp);
4358 :
4359 1 : CPLErrorReset();
4360 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
4361 1 : CPLLoadConfigOptionsFromFile("/vsimem/credentials.txt", false);
4362 1 : CPLPopErrorHandler();
4363 1 : ASSERT_EQ(CPLGetLastErrorType(), CE_Warning);
4364 :
4365 1 : VSIUnlink("/vsimem/credentials.txt");
4366 : }
4367 :
4368 : // Test CPLLoadConfigOptionsFromFile() for VSI credentials, warning case
4369 4 : TEST_F(test_cpl,
4370 : CPLLoadConfigOptionsFromFile_VSI_credentials_warning_path_specific)
4371 : {
4372 1 : VSILFILE *fp = VSIFOpenL("/vsimem/credentials.txt", "wb");
4373 1 : VSIFPrintfL(fp, "[credentials]\n");
4374 1 : VSIFPrintfL(fp, "[.subsection]\n");
4375 1 : VSIFPrintfL(fp, "path=/vsi_test/foo\n");
4376 1 : VSIFPrintfL(fp, "path=/vsi_test/bar\n"); // duplicated path
4377 1 : VSIFPrintfL(fp, "FOO=BAR\n"); // first key is not 'path'
4378 1 : VSIFPrintfL(fp, "[unrelated_section]");
4379 1 : VSIFPrintfL(fp, "BAR=BAZ\n"); // first key is not 'path'
4380 1 : VSIFCloseL(fp);
4381 :
4382 1 : CPLErrorReset();
4383 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
4384 1 : CPLLoadConfigOptionsFromFile("/vsimem/credentials.txt", false);
4385 1 : CPLPopErrorHandler();
4386 1 : ASSERT_EQ(CPLGetLastErrorType(), CE_Warning);
4387 :
4388 : {
4389 : const char *pszVal =
4390 1 : VSIGetPathSpecificOption("/vsi_test/foo", "FOO", nullptr);
4391 1 : ASSERT_TRUE(pszVal != nullptr);
4392 : }
4393 :
4394 : {
4395 : const char *pszVal =
4396 1 : VSIGetPathSpecificOption("/vsi_test/foo", "BAR", nullptr);
4397 1 : ASSERT_TRUE(pszVal == nullptr);
4398 : }
4399 :
4400 1 : VSIUnlink("/vsimem/credentials.txt");
4401 : }
4402 :
4403 : // Test CPLRecodeFromWCharIconv() with 2 bytes/char source encoding
4404 4 : TEST_F(test_cpl, CPLRecodeFromWCharIconv_2byte_source_encoding)
4405 : {
4406 : #ifdef CPL_RECODE_ICONV
4407 1 : int N = 2048;
4408 : wchar_t *pszIn =
4409 1 : static_cast<wchar_t *>(CPLMalloc((N + 1) * sizeof(wchar_t)));
4410 2049 : for (int i = 0; i < N; i++)
4411 2048 : pszIn[i] = L'A';
4412 1 : pszIn[N] = L'\0';
4413 1 : char *pszExpected = static_cast<char *>(CPLMalloc(N + 1));
4414 2049 : for (int i = 0; i < N; i++)
4415 2048 : pszExpected[i] = 'A';
4416 1 : pszExpected[N] = '\0';
4417 1 : char *pszRet = CPLRecodeFromWChar(pszIn, CPL_ENC_UTF16, CPL_ENC_UTF8);
4418 1 : const bool bOK = memcmp(pszExpected, pszRet, N + 1) == 0;
4419 : // FIXME Some tests fail on Mac. Not sure why, but do not error out just for
4420 : // that
4421 1 : if (!bOK &&
4422 0 : (strstr(CPLGetConfigOption("TRAVIS_OS_NAME", ""), "osx") != nullptr ||
4423 0 : strstr(CPLGetConfigOption("BUILD_NAME", ""), "osx") != nullptr ||
4424 0 : getenv("DO_NOT_FAIL_ON_RECODE_ERRORS") != nullptr))
4425 : {
4426 0 : fprintf(stderr, "Recode from CPL_ENC_UTF16 to CPL_ENC_UTF8 failed\n");
4427 : }
4428 : else
4429 : {
4430 1 : EXPECT_TRUE(bOK);
4431 : }
4432 1 : CPLFree(pszIn);
4433 1 : CPLFree(pszRet);
4434 1 : CPLFree(pszExpected);
4435 : #else
4436 : GTEST_SKIP() << "iconv support missing";
4437 : #endif
4438 1 : }
4439 :
4440 : // VERY MINIMAL testing of VSI plugin functionality
4441 4 : TEST_F(test_cpl, VSI_plugin_minimal_testing)
4442 : {
4443 1 : auto psCallbacks = VSIAllocFilesystemPluginCallbacksStruct();
4444 3 : psCallbacks->open = [](void *pUserData, const char *pszFilename,
4445 : const char *pszAccess) -> void *
4446 : {
4447 : (void)pUserData;
4448 2 : if (strcmp(pszFilename, "test") == 0 && strcmp(pszAccess, "rb") == 0)
4449 1 : return const_cast<char *>("ok");
4450 1 : return nullptr;
4451 1 : };
4452 1 : EXPECT_EQ(VSIInstallPluginHandler("/vsimyplugin/", psCallbacks), 0);
4453 1 : VSIFreeFilesystemPluginCallbacksStruct(psCallbacks);
4454 1 : VSILFILE *fp = VSIFOpenL("/vsimyplugin/test", "rb");
4455 1 : EXPECT_TRUE(fp != nullptr);
4456 :
4457 : // Check it doesn't crash
4458 1 : vsi_l_offset nOffset = 5;
4459 1 : size_t nSize = 10;
4460 1 : reinterpret_cast<VSIVirtualHandle *>(fp)->AdviseRead(1, &nOffset, &nSize);
4461 :
4462 1 : VSIFCloseL(fp);
4463 1 : EXPECT_TRUE(VSIFOpenL("/vsimyplugin/i_dont_exist", "rb") == nullptr);
4464 :
4465 : // Check that we can remove the handler
4466 1 : VSIRemovePluginHandler("/vsimyplugin/");
4467 :
4468 1 : EXPECT_TRUE(VSIFOpenL("/vsimyplugin/test", "rb") == nullptr);
4469 1 : EXPECT_TRUE(VSIFOpenL("/vsimyplugin/i_dont_exist", "rb") == nullptr);
4470 :
4471 : // Removing a non-existing handler is a no-op
4472 1 : VSIRemovePluginHandler("/vsimyplugin/");
4473 1 : VSIRemovePluginHandler("/vsifoobar/");
4474 1 : }
4475 :
4476 4 : TEST_F(test_cpl, VSI_plugin_advise_read)
4477 : {
4478 1 : auto psCallbacks = VSIAllocFilesystemPluginCallbacksStruct();
4479 :
4480 : struct UserData
4481 : {
4482 : int nRanges = 0;
4483 : const vsi_l_offset *panOffsets = nullptr;
4484 : const size_t *panSizes = nullptr;
4485 : };
4486 :
4487 1 : UserData userData;
4488 :
4489 1 : psCallbacks->pUserData = &userData;
4490 2 : psCallbacks->open = [](void *pUserData, const char * /*pszFilename*/,
4491 : const char * /*pszAccess*/) -> void *
4492 2 : { return pUserData; };
4493 :
4494 2 : psCallbacks->advise_read = [](void *pFile, int nRanges,
4495 : const vsi_l_offset *panOffsets,
4496 : const size_t *panSizes)
4497 : {
4498 1 : static_cast<UserData *>(pFile)->nRanges = nRanges;
4499 1 : static_cast<UserData *>(pFile)->panOffsets = panOffsets;
4500 1 : static_cast<UserData *>(pFile)->panSizes = panSizes;
4501 2 : };
4502 1 : EXPECT_EQ(VSIInstallPluginHandler("/VSI_plugin_advise_read/", psCallbacks),
4503 : 0);
4504 1 : VSIFreeFilesystemPluginCallbacksStruct(psCallbacks);
4505 1 : VSILFILE *fp = VSIFOpenL("/VSI_plugin_advise_read/test", "rb");
4506 1 : EXPECT_TRUE(fp != nullptr);
4507 :
4508 1 : vsi_l_offset nOffset = 5;
4509 1 : size_t nSize = 10;
4510 1 : reinterpret_cast<VSIVirtualHandle *>(fp)->AdviseRead(1, &nOffset, &nSize);
4511 1 : EXPECT_EQ(userData.nRanges, 1);
4512 1 : EXPECT_EQ(userData.panOffsets, &nOffset);
4513 1 : EXPECT_EQ(userData.panSizes, &nSize);
4514 :
4515 1 : VSIFCloseL(fp);
4516 1 : }
4517 :
4518 : // Test CPLIsASCII()
4519 4 : TEST_F(test_cpl, CPLIsASCII)
4520 : {
4521 1 : ASSERT_TRUE(CPLIsASCII("foo", 3));
4522 1 : ASSERT_TRUE(CPLIsASCII("foo", static_cast<size_t>(-1)));
4523 1 : ASSERT_TRUE(!CPLIsASCII("\xFF", 1));
4524 : }
4525 :
4526 : // Test VSIIsLocal()
4527 4 : TEST_F(test_cpl, VSIIsLocal)
4528 : {
4529 1 : ASSERT_TRUE(VSIIsLocal("/vsimem/"));
4530 1 : ASSERT_TRUE(VSIIsLocal("/vsigzip//vsimem/tmp.gz"));
4531 : #ifdef HAVE_CURL
4532 1 : ASSERT_TRUE(!VSIIsLocal("/vsicurl/http://example.com"));
4533 : #endif
4534 : VSIStatBufL sStat;
4535 : #ifdef _WIN32
4536 : if (VSIStatL("c:\\", &sStat) == 0)
4537 : {
4538 : ASSERT_TRUE(VSIIsLocal("c:\\i_do_not_exist"));
4539 : }
4540 : #else
4541 1 : if (VSIStatL("/tmp", &sStat) == 0)
4542 : {
4543 1 : ASSERT_TRUE(VSIIsLocal("/tmp/i_do_not_exist"));
4544 : }
4545 : #endif
4546 : }
4547 :
4548 : // Test VSISupportsSequentialWrite()
4549 4 : TEST_F(test_cpl, VSISupportsSequentialWrite)
4550 : {
4551 1 : ASSERT_TRUE(VSISupportsSequentialWrite("/vsimem/", false));
4552 : #ifdef HAVE_CURL
4553 1 : ASSERT_TRUE(
4554 : !VSISupportsSequentialWrite("/vsicurl/http://example.com", false));
4555 1 : ASSERT_TRUE(VSISupportsSequentialWrite("/vsis3/test_bucket/", false));
4556 : #endif
4557 1 : ASSERT_TRUE(VSISupportsSequentialWrite("/vsigzip//vsimem/tmp.gz", false));
4558 : #ifdef HAVE_CURL
4559 1 : ASSERT_TRUE(!VSISupportsSequentialWrite(
4560 : "/vsigzip//vsicurl/http://example.com/tmp.gz", false));
4561 : #endif
4562 : VSIStatBufL sStat;
4563 : #ifdef _WIN32
4564 : if (VSIStatL("c:\\", &sStat) == 0)
4565 : {
4566 : ASSERT_TRUE(VSISupportsSequentialWrite("c:\\", false));
4567 : }
4568 : #else
4569 1 : if (VSIStatL("/tmp", &sStat) == 0)
4570 : {
4571 1 : ASSERT_TRUE(VSISupportsSequentialWrite("/tmp/i_do_not_exist", false));
4572 : }
4573 : #endif
4574 : }
4575 :
4576 : // Test VSISupportsRandomWrite()
4577 4 : TEST_F(test_cpl, VSISupportsRandomWrite)
4578 : {
4579 1 : ASSERT_TRUE(VSISupportsRandomWrite("/vsimem/", false));
4580 : #ifdef HAVE_CURL
4581 1 : ASSERT_TRUE(!VSISupportsRandomWrite("/vsicurl/http://example.com", false));
4582 1 : ASSERT_TRUE(!VSISupportsRandomWrite("/vsis3/test_bucket/", false));
4583 1 : ASSERT_TRUE(!VSISupportsRandomWrite("/vsis3/test_bucket/", true));
4584 1 : CPLSetConfigOption("CPL_VSIL_USE_TEMP_FILE_FOR_RANDOM_WRITE", "YES");
4585 1 : ASSERT_TRUE(VSISupportsRandomWrite("/vsis3/test_bucket/", true));
4586 1 : CPLSetConfigOption("CPL_VSIL_USE_TEMP_FILE_FOR_RANDOM_WRITE", nullptr);
4587 : #endif
4588 1 : ASSERT_TRUE(!VSISupportsRandomWrite("/vsigzip//vsimem/tmp.gz", false));
4589 : #ifdef HAVE_CURL
4590 1 : ASSERT_TRUE(!VSISupportsRandomWrite(
4591 : "/vsigzip//vsicurl/http://example.com/tmp.gz", false));
4592 : #endif
4593 : VSIStatBufL sStat;
4594 : #ifdef _WIN32
4595 : if (VSIStatL("c:\\", &sStat) == 0)
4596 : {
4597 : ASSERT_TRUE(VSISupportsRandomWrite("c:\\", false));
4598 : }
4599 : #else
4600 1 : if (VSIStatL("/tmp", &sStat) == 0)
4601 : {
4602 1 : ASSERT_TRUE(VSISupportsRandomWrite("/tmp", false));
4603 : }
4604 : #endif
4605 : }
4606 :
4607 : // Test ignore-env-vars = yes of configuration file
4608 4 : TEST_F(test_cpl, config_file_ignore_env_vars)
4609 : {
4610 1 : char szEnvVar[] = "SOME_ENV_VAR_FOR_TEST_CPL_61=FOO";
4611 1 : putenv(szEnvVar);
4612 1 : ASSERT_STREQ(CPLGetConfigOption("SOME_ENV_VAR_FOR_TEST_CPL_61", nullptr),
4613 : "FOO");
4614 :
4615 1 : VSILFILE *fp = VSIFOpenL("/vsimem/.gdal/gdalrc", "wb");
4616 1 : VSIFPrintfL(fp, "[directives]\n");
4617 1 : VSIFPrintfL(fp, "ignore-env-vars=yes\n");
4618 1 : VSIFPrintfL(fp, "[configoptions]\n");
4619 1 : VSIFPrintfL(fp, "CONFIG_OPTION_FOR_TEST_CPL_61=BAR\n");
4620 1 : VSIFCloseL(fp);
4621 :
4622 : // Load configuration file
4623 1 : constexpr bool bOverrideEnvVars = false;
4624 1 : CPLLoadConfigOptionsFromFile("/vsimem/.gdal/gdalrc", bOverrideEnvVars);
4625 :
4626 : // Check that reading configuration option works
4627 1 : ASSERT_STREQ(CPLGetConfigOption("CONFIG_OPTION_FOR_TEST_CPL_61", ""),
4628 : "BAR");
4629 :
4630 : // Check that environment variables are not read as configuration options
4631 1 : ASSERT_TRUE(CPLGetConfigOption("SOME_ENV_VAR_FOR_TEST_CPL_61", nullptr) ==
4632 : nullptr);
4633 :
4634 : // Reset ignore-env-vars=no
4635 1 : fp = VSIFOpenL("/vsimem/.gdal/gdalrc", "wb");
4636 1 : VSIFPrintfL(fp, "[directives]\n");
4637 1 : VSIFPrintfL(fp, "ignore-env-vars=no\n");
4638 1 : VSIFPrintfL(fp, "[configoptions]\n");
4639 1 : VSIFPrintfL(fp, "SOME_ENV_VAR_FOR_TEST_CPL_61=BAR\n");
4640 1 : VSIFCloseL(fp);
4641 :
4642 : // Reload configuration file
4643 1 : CPLLoadConfigOptionsFromFile("/vsimem/.gdal/gdalrc", false);
4644 :
4645 : // Check that environment variables override configuration options defined
4646 : // in the file (config file was loaded with bOverrideEnvVars = false)
4647 1 : ASSERT_TRUE(CPLGetConfigOption("SOME_ENV_VAR_FOR_TEST_CPL_61", nullptr) !=
4648 : nullptr);
4649 1 : ASSERT_STREQ(CPLGetConfigOption("SOME_ENV_VAR_FOR_TEST_CPL_61", ""), "FOO");
4650 :
4651 1 : VSIUnlink("/vsimem/.gdal/gdalrc");
4652 : }
4653 :
4654 : // Test that explicitly defined configuration options override environment variables
4655 : // with the same name
4656 4 : TEST_F(test_cpl, test_config_overrides_environment)
4657 : {
4658 1 : char szEnvVar[] = "TEST_CONFIG_OVERRIDES_ENVIRONMENT=123";
4659 1 : putenv(szEnvVar);
4660 :
4661 1 : ASSERT_STREQ(
4662 : CPLGetConfigOption("TEST_CONFIG_OVERRIDES_ENVIRONMENT", nullptr),
4663 : "123");
4664 :
4665 1 : CPLSetConfigOption("TEST_CONFIG_OVERRIDES_ENVIRONMENT", "456");
4666 :
4667 1 : ASSERT_STREQ(
4668 : CPLGetConfigOption("TEST_CONFIG_OVERRIDES_ENVIRONMENT", nullptr),
4669 : "456");
4670 :
4671 1 : CPLSetConfigOption("TEST_CONFIG_OVERRIDES_ENVIRONMENT", nullptr);
4672 :
4673 1 : ASSERT_STREQ(
4674 : CPLGetConfigOption("TEST_CONFIG_OVERRIDES_ENVIRONMENT", nullptr),
4675 : "123");
4676 : }
4677 :
4678 : // Test CPLWorkerThreadPool recursion
4679 4 : TEST_F(test_cpl, CPLWorkerThreadPool_recursion)
4680 : {
4681 : struct Context
4682 : {
4683 : CPLWorkerThreadPool oThreadPool{};
4684 : std::atomic<int> nCounter{0};
4685 : std::mutex mutex{};
4686 : std::condition_variable cv{};
4687 : bool you_can_leave = false;
4688 : int threadStarted = 0;
4689 : };
4690 :
4691 1 : Context ctxt;
4692 1 : ctxt.oThreadPool.Setup(2, nullptr, nullptr, /* waitAllStarted = */ true);
4693 :
4694 : struct Data
4695 : {
4696 : Context *psCtxt;
4697 : int iJob;
4698 : GIntBig nThreadLambda = 0;
4699 :
4700 3 : Data(Context *psCtxtIn, int iJobIn) : psCtxt(psCtxtIn), iJob(iJobIn)
4701 : {
4702 3 : }
4703 :
4704 : Data(const Data &) = default;
4705 : };
4706 :
4707 3 : const auto lambda = [](void *pData)
4708 : {
4709 3 : auto psData = static_cast<Data *>(pData);
4710 3 : if (psData->iJob > 0)
4711 : {
4712 : // wait for both threads to be started
4713 4 : std::unique_lock<std::mutex> guard(psData->psCtxt->mutex);
4714 2 : psData->psCtxt->threadStarted++;
4715 2 : psData->psCtxt->cv.notify_one();
4716 3 : while (psData->psCtxt->threadStarted < 2)
4717 : {
4718 1 : psData->psCtxt->cv.wait(guard);
4719 : }
4720 : }
4721 :
4722 3 : psData->nThreadLambda = CPLGetPID();
4723 : // fprintf(stderr, "lambda %d: " CPL_FRMT_GIB "\n",
4724 : // psData->iJob, psData->nThreadLambda);
4725 9 : const auto lambda2 = [](void *pData2)
4726 : {
4727 9 : const auto psData2 = static_cast<Data *>(pData2);
4728 9 : const int iJob = psData2->iJob;
4729 9 : const int nCounter = psData2->psCtxt->nCounter++;
4730 9 : CPL_IGNORE_RET_VAL(nCounter);
4731 9 : const auto nThreadLambda2 = CPLGetPID();
4732 : // fprintf(stderr, "lambda2 job=%d, counter(before)=%d, thread="
4733 : // CPL_FRMT_GIB "\n", iJob, nCounter, nThreadLambda2);
4734 9 : if (iJob == 100 + 0)
4735 : {
4736 1 : ASSERT_TRUE(nThreadLambda2 != psData2->nThreadLambda);
4737 : // make sure that job 0 run in the other thread
4738 : // takes sufficiently long that job 2 has been submitted
4739 : // before it completes
4740 2 : std::unique_lock<std::mutex> guard(psData2->psCtxt->mutex);
4741 : // coverity[missing_lock:FALSE]
4742 2 : while (!psData2->psCtxt->you_can_leave)
4743 : {
4744 1 : psData2->psCtxt->cv.wait(guard);
4745 : }
4746 : }
4747 8 : else if (iJob == 100 + 1 || iJob == 100 + 2)
4748 : {
4749 2 : ASSERT_TRUE(nThreadLambda2 == psData2->nThreadLambda);
4750 : }
4751 : };
4752 6 : auto poQueue = psData->psCtxt->oThreadPool.CreateJobQueue();
4753 3 : Data d0(*psData);
4754 3 : d0.iJob = 100 + d0.iJob * 3 + 0;
4755 3 : Data d1(*psData);
4756 3 : d1.iJob = 100 + d1.iJob * 3 + 1;
4757 3 : Data d2(*psData);
4758 3 : d2.iJob = 100 + d2.iJob * 3 + 2;
4759 3 : poQueue->SubmitJob(lambda2, &d0);
4760 3 : poQueue->SubmitJob(lambda2, &d1);
4761 3 : poQueue->SubmitJob(lambda2, &d2);
4762 3 : if (psData->iJob == 0)
4763 : {
4764 2 : std::lock_guard<std::mutex> guard(psData->psCtxt->mutex);
4765 1 : psData->psCtxt->you_can_leave = true;
4766 1 : psData->psCtxt->cv.notify_one();
4767 : }
4768 3 : };
4769 : {
4770 2 : auto poQueue = ctxt.oThreadPool.CreateJobQueue();
4771 1 : Data data0(&ctxt, 0);
4772 1 : poQueue->SubmitJob(lambda, &data0);
4773 : }
4774 : {
4775 2 : auto poQueue = ctxt.oThreadPool.CreateJobQueue();
4776 1 : Data data1(&ctxt, 1);
4777 1 : Data data2(&ctxt, 2);
4778 1 : poQueue->SubmitJob(lambda, &data1);
4779 1 : poQueue->SubmitJob(lambda, &data2);
4780 : }
4781 1 : ASSERT_EQ(ctxt.nCounter, 3 * 3);
4782 : }
4783 :
4784 : // Test /vsimem/ PRead() implementation
4785 4 : TEST_F(test_cpl, vsimem_pread)
4786 : {
4787 1 : char szContent[] = "abcd";
4788 1 : VSILFILE *fp = VSIFileFromMemBuffer(
4789 : "", reinterpret_cast<GByte *>(szContent), 4, FALSE);
4790 1 : VSIVirtualHandle *poHandle = reinterpret_cast<VSIVirtualHandle *>(fp);
4791 1 : ASSERT_TRUE(poHandle->HasPRead());
4792 : {
4793 1 : char szBuffer[5] = {0};
4794 1 : ASSERT_EQ(poHandle->PRead(szBuffer, 2, 1), 2U);
4795 2 : ASSERT_EQ(std::string(szBuffer), std::string("bc"));
4796 : }
4797 : {
4798 1 : char szBuffer[5] = {0};
4799 1 : ASSERT_EQ(poHandle->PRead(szBuffer, 4, 1), 3U);
4800 2 : ASSERT_EQ(std::string(szBuffer), std::string("bcd"));
4801 : }
4802 : {
4803 1 : char szBuffer[5] = {0};
4804 1 : ASSERT_EQ(poHandle->PRead(szBuffer, 1, 4), 0U);
4805 2 : ASSERT_EQ(std::string(szBuffer), std::string());
4806 : }
4807 1 : VSIFCloseL(fp);
4808 : }
4809 :
4810 : // Test regular file system PRead() implementation
4811 4 : TEST_F(test_cpl, file_system_pread)
4812 : {
4813 1 : VSILFILE *fp = VSIFOpenL("temp_test_64.bin", "wb+");
4814 1 : if (fp == nullptr)
4815 0 : return;
4816 1 : VSIVirtualHandle *poHandle = reinterpret_cast<VSIVirtualHandle *>(fp);
4817 1 : poHandle->Write("abcd", 4, 1);
4818 1 : if (poHandle->HasPRead())
4819 : {
4820 1 : poHandle->Flush();
4821 : {
4822 1 : char szBuffer[5] = {0};
4823 1 : ASSERT_EQ(poHandle->PRead(szBuffer, 2, 1), 2U);
4824 2 : ASSERT_EQ(std::string(szBuffer), std::string("bc"));
4825 : }
4826 : {
4827 1 : char szBuffer[5] = {0};
4828 1 : ASSERT_EQ(poHandle->PRead(szBuffer, 4, 1), 3U);
4829 2 : ASSERT_EQ(std::string(szBuffer), std::string("bcd"));
4830 : }
4831 : {
4832 1 : char szBuffer[5] = {0};
4833 1 : ASSERT_EQ(poHandle->PRead(szBuffer, 1, 4), 0U);
4834 2 : ASSERT_EQ(std::string(szBuffer), std::string());
4835 : }
4836 : }
4837 1 : VSIFCloseL(fp);
4838 1 : VSIUnlink("temp_test_64.bin");
4839 : }
4840 :
4841 : // Test CPLMask implementation
4842 4 : TEST_F(test_cpl, CPLMask)
4843 : {
4844 1 : constexpr std::size_t sz = 71;
4845 1 : auto m = CPLMaskCreate(sz, true);
4846 :
4847 : // Mask is set by default
4848 72 : for (std::size_t i = 0; i < sz; i++)
4849 : {
4850 71 : EXPECT_EQ(CPLMaskGet(m, i), true) << "bit " << i;
4851 : }
4852 :
4853 1 : VSIFree(m);
4854 1 : m = CPLMaskCreate(sz, false);
4855 1 : auto m2 = CPLMaskCreate(sz, false);
4856 :
4857 : // Mask is unset by default
4858 72 : for (std::size_t i = 0; i < sz; i++)
4859 : {
4860 71 : EXPECT_EQ(CPLMaskGet(m, i), false) << "bit " << i;
4861 : }
4862 :
4863 : // Set a few bits
4864 1 : CPLMaskSet(m, 10);
4865 1 : CPLMaskSet(m, 33);
4866 1 : CPLMaskSet(m, 70);
4867 :
4868 : // Check all bits
4869 72 : for (std::size_t i = 0; i < sz; i++)
4870 : {
4871 71 : if (i == 10 || i == 33 || i == 70)
4872 : {
4873 3 : EXPECT_EQ(CPLMaskGet(m, i), true) << "bit " << i;
4874 : }
4875 : else
4876 : {
4877 68 : EXPECT_EQ(CPLMaskGet(m, i), false) << "bit " << i;
4878 : }
4879 : }
4880 :
4881 : // Unset some bits
4882 1 : CPLMaskClear(m, 10);
4883 1 : CPLMaskClear(m, 70);
4884 :
4885 : // Check all bits
4886 72 : for (std::size_t i = 0; i < sz; i++)
4887 : {
4888 71 : if (i == 33)
4889 : {
4890 1 : EXPECT_EQ(CPLMaskGet(m, i), true) << "bit " << i;
4891 : }
4892 : else
4893 : {
4894 70 : EXPECT_EQ(CPLMaskGet(m, i), false) << "bit " << i;
4895 : }
4896 : }
4897 :
4898 1 : CPLMaskSet(m2, 36);
4899 1 : CPLMaskMerge(m2, m, sz);
4900 :
4901 : // Check all bits
4902 72 : for (std::size_t i = 0; i < sz; i++)
4903 : {
4904 71 : if (i == 36 || i == 33)
4905 : {
4906 4 : ASSERT_EQ(CPLMaskGet(m2, i), true) << "bit " << i;
4907 : }
4908 : else
4909 : {
4910 69 : ASSERT_EQ(CPLMaskGet(m2, i), false) << "bit " << i;
4911 : }
4912 : }
4913 :
4914 1 : CPLMaskClearAll(m, sz);
4915 1 : CPLMaskSetAll(m2, sz);
4916 :
4917 : // Check all bits
4918 72 : for (std::size_t i = 0; i < sz; i++)
4919 : {
4920 71 : EXPECT_EQ(CPLMaskGet(m, i), false) << "bit " << i;
4921 71 : EXPECT_EQ(CPLMaskGet(m2, i), true) << "bit " << i;
4922 : }
4923 :
4924 1 : VSIFree(m);
4925 1 : VSIFree(m2);
4926 : }
4927 :
4928 : // Test cpl::ThreadSafeQueue
4929 4 : TEST_F(test_cpl, ThreadSafeQueue)
4930 : {
4931 1 : cpl::ThreadSafeQueue<int> queue;
4932 1 : ASSERT_TRUE(queue.empty());
4933 1 : ASSERT_EQ(queue.size(), 0U);
4934 1 : queue.push(1);
4935 1 : ASSERT_TRUE(!queue.empty());
4936 1 : ASSERT_EQ(queue.size(), 1U);
4937 1 : queue.clear();
4938 1 : ASSERT_TRUE(queue.empty());
4939 1 : ASSERT_EQ(queue.size(), 0U);
4940 1 : int val = 10;
4941 1 : queue.push(std::move(val));
4942 1 : ASSERT_TRUE(!queue.empty());
4943 1 : ASSERT_EQ(queue.size(), 1U);
4944 1 : ASSERT_EQ(queue.get_and_pop_front(), 10);
4945 1 : ASSERT_TRUE(queue.empty());
4946 : }
4947 :
4948 4 : TEST_F(test_cpl, CPLGetExecPath)
4949 : {
4950 1 : std::vector<char> achBuffer(1024, 'x');
4951 1 : if (!CPLGetExecPath(achBuffer.data(), static_cast<int>(achBuffer.size())))
4952 : {
4953 0 : GTEST_SKIP() << "CPLGetExecPath() not implemented for this platform";
4954 : return;
4955 : }
4956 :
4957 1 : bool bFoundNulTerminatedChar = false;
4958 71 : for (char ch : achBuffer)
4959 : {
4960 71 : if (ch == '\0')
4961 : {
4962 1 : bFoundNulTerminatedChar = true;
4963 1 : break;
4964 : }
4965 : }
4966 1 : ASSERT_TRUE(bFoundNulTerminatedChar);
4967 :
4968 : // Check that the file exists
4969 : VSIStatBufL sStat;
4970 1 : EXPECT_EQ(VSIStatL(achBuffer.data(), &sStat), 0);
4971 :
4972 2 : const std::string osStrBefore(achBuffer.data());
4973 :
4974 : // Resize the buffer to just the minimum size
4975 1 : achBuffer.resize(strlen(achBuffer.data()) + 1);
4976 1 : EXPECT_TRUE(
4977 : CPLGetExecPath(achBuffer.data(), static_cast<int>(achBuffer.size())));
4978 :
4979 1 : EXPECT_STREQ(osStrBefore.c_str(), achBuffer.data());
4980 :
4981 : // Too small buffer
4982 1 : achBuffer.resize(achBuffer.size() - 1);
4983 1 : EXPECT_FALSE(
4984 : CPLGetExecPath(achBuffer.data(), static_cast<int>(achBuffer.size())));
4985 : }
4986 :
4987 4 : TEST_F(test_cpl, VSIDuplicateFileSystemHandler)
4988 : {
4989 : {
4990 2 : CPLErrorHandlerPusher oErrorHandler(CPLQuietErrorHandler);
4991 1 : EXPECT_FALSE(VSIDuplicateFileSystemHandler(
4992 : "/vsi_i_dont_exist/", "/vsi_i_will_not_be_created/"));
4993 : }
4994 : {
4995 2 : CPLErrorHandlerPusher oErrorHandler(CPLQuietErrorHandler);
4996 1 : EXPECT_FALSE(
4997 : VSIDuplicateFileSystemHandler("/", "/vsi_i_will_not_be_created/"));
4998 : }
4999 1 : EXPECT_EQ(VSIFileManager::GetHandler("/vsi_test_clone_vsimem/"),
5000 : VSIFileManager::GetHandler("/"));
5001 1 : EXPECT_TRUE(
5002 : VSIDuplicateFileSystemHandler("/vsimem/", "/vsi_test_clone_vsimem/"));
5003 1 : EXPECT_NE(VSIFileManager::GetHandler("/vsi_test_clone_vsimem/"),
5004 : VSIFileManager::GetHandler("/"));
5005 : {
5006 2 : CPLErrorHandlerPusher oErrorHandler(CPLQuietErrorHandler);
5007 1 : EXPECT_FALSE(VSIDuplicateFileSystemHandler("/vsimem/",
5008 : "/vsi_test_clone_vsimem/"));
5009 : }
5010 1 : }
5011 :
5012 4 : TEST_F(test_cpl, CPLAtoGIntBigEx)
5013 : {
5014 : {
5015 1 : int bOverflow = 0;
5016 1 : EXPECT_EQ(CPLAtoGIntBigEx("9223372036854775807", false, &bOverflow),
5017 : std::numeric_limits<int64_t>::max());
5018 1 : EXPECT_EQ(bOverflow, FALSE);
5019 : }
5020 : {
5021 1 : int bOverflow = 0;
5022 1 : EXPECT_EQ(CPLAtoGIntBigEx("9223372036854775808", false, &bOverflow),
5023 : std::numeric_limits<int64_t>::max());
5024 1 : EXPECT_EQ(bOverflow, TRUE);
5025 : }
5026 : {
5027 1 : int bOverflow = 0;
5028 1 : EXPECT_EQ(CPLAtoGIntBigEx("-9223372036854775808", false, &bOverflow),
5029 : std::numeric_limits<int64_t>::min());
5030 1 : EXPECT_EQ(bOverflow, FALSE);
5031 : }
5032 : {
5033 1 : int bOverflow = 0;
5034 1 : EXPECT_EQ(CPLAtoGIntBigEx("-9223372036854775809", false, &bOverflow),
5035 : std::numeric_limits<int64_t>::min());
5036 1 : EXPECT_EQ(bOverflow, TRUE);
5037 : }
5038 1 : }
5039 :
5040 4 : TEST_F(test_cpl, CPLSubscribeToSetConfigOption)
5041 : {
5042 : struct Event
5043 : {
5044 : std::string osKey;
5045 : std::string osValue;
5046 : bool bThreadLocal;
5047 : };
5048 :
5049 2 : std::vector<Event> events;
5050 4 : const auto cbk = +[](const char *pszKey, const char *pszValue,
5051 : bool bThreadLocal, void *pUserData)
5052 : {
5053 3 : std::vector<Event> *pEvents =
5054 : static_cast<std::vector<Event> *>(pUserData);
5055 6 : Event ev;
5056 3 : ev.osKey = pszKey;
5057 3 : ev.osValue = pszValue ? pszValue : "";
5058 3 : ev.bThreadLocal = bThreadLocal;
5059 3 : pEvents->emplace_back(ev);
5060 3 : };
5061 :
5062 : // Subscribe and unsubscribe immediately
5063 : {
5064 1 : int nId = CPLSubscribeToSetConfigOption(cbk, &events);
5065 1 : CPLSetConfigOption("CPLSubscribeToSetConfigOption", "bar");
5066 1 : EXPECT_EQ(events.size(), 1U);
5067 1 : if (!events.empty())
5068 : {
5069 1 : EXPECT_STREQ(events[0].osKey.c_str(),
5070 : "CPLSubscribeToSetConfigOption");
5071 1 : EXPECT_STREQ(events[0].osValue.c_str(), "bar");
5072 1 : EXPECT_FALSE(events[0].bThreadLocal);
5073 : }
5074 1 : CPLUnsubscribeToSetConfigOption(nId);
5075 : }
5076 1 : events.clear();
5077 :
5078 : // Subscribe and unsubscribe in non-nested order
5079 : {
5080 1 : int nId1 = CPLSubscribeToSetConfigOption(cbk, &events);
5081 1 : int nId2 = CPLSubscribeToSetConfigOption(cbk, &events);
5082 1 : CPLUnsubscribeToSetConfigOption(nId1);
5083 1 : int nId3 = CPLSubscribeToSetConfigOption(cbk, &events);
5084 :
5085 1 : CPLSetConfigOption("CPLSubscribeToSetConfigOption", nullptr);
5086 1 : EXPECT_EQ(events.size(), 2U);
5087 :
5088 1 : CPLUnsubscribeToSetConfigOption(nId2);
5089 1 : CPLUnsubscribeToSetConfigOption(nId3);
5090 :
5091 1 : CPLSetConfigOption("CPLSubscribeToSetConfigOption", nullptr);
5092 1 : EXPECT_EQ(events.size(), 2U);
5093 : }
5094 1 : }
5095 :
5096 4 : TEST_F(test_cpl, VSIGetCanonicalFilename)
5097 : {
5098 2 : std::string osTmp = CPLGenerateTempFilename(nullptr);
5099 1 : if (!CPLIsFilenameRelative(osTmp.c_str()))
5100 : {
5101 : // Get the canonical filename of the base temporary file
5102 : // to be able to test afterwards just the differences on the case
5103 : // of the extension
5104 0 : VSILFILE *fp = VSIFOpenL(osTmp.c_str(), "wb");
5105 0 : EXPECT_TRUE(fp != nullptr);
5106 0 : if (fp)
5107 : {
5108 0 : VSIFCloseL(fp);
5109 0 : char *pszRes = VSIGetCanonicalFilename(osTmp.c_str());
5110 0 : osTmp = pszRes;
5111 0 : CPLFree(pszRes);
5112 0 : VSIUnlink(osTmp.c_str());
5113 : }
5114 : }
5115 :
5116 2 : std::string osLC = osTmp + ".tmp";
5117 2 : std::string osUC = osTmp + ".TMP";
5118 : // Create a file in lower case
5119 1 : VSILFILE *fp = VSIFOpenL(osLC.c_str(), "wb");
5120 1 : EXPECT_TRUE(fp != nullptr);
5121 1 : if (fp)
5122 : {
5123 1 : VSIFCloseL(fp);
5124 : VSIStatBufL sStat;
5125 : // And try to stat it in upper case
5126 1 : if (VSIStatL(osUC.c_str(), &sStat) == 0)
5127 : {
5128 0 : char *pszRes = VSIGetCanonicalFilename(osUC.c_str());
5129 0 : EXPECT_TRUE(pszRes);
5130 0 : if (pszRes)
5131 : {
5132 : #if defined(_WIN32) || (defined(__MACH__) && defined(__APPLE__))
5133 : // On Windows or Mac, we should get the real canonical name,
5134 : // i.e. in lower case
5135 : EXPECT_STREQ(pszRes, osLC.c_str());
5136 : #else
5137 : // On other operating systems, VSIGetCanonicalFilename()
5138 : // could not be implemented, so be laxer in the check
5139 0 : EXPECT_STREQ(CPLString(pszRes).tolower().c_str(),
5140 : CPLString(osLC).tolower().c_str());
5141 : #endif
5142 : }
5143 0 : CPLFree(pszRes);
5144 : }
5145 :
5146 : {
5147 1 : char *pszRes = VSIGetCanonicalFilename(osLC.c_str());
5148 1 : EXPECT_TRUE(pszRes);
5149 1 : if (pszRes)
5150 : {
5151 1 : EXPECT_STREQ(pszRes, osLC.c_str());
5152 : }
5153 1 : CPLFree(pszRes);
5154 : }
5155 : }
5156 1 : VSIUnlink(osLC.c_str());
5157 1 : }
5158 :
5159 4 : TEST_F(test_cpl, CPLStrtod)
5160 : {
5161 : {
5162 1 : const char *pszVal = "5";
5163 1 : char *pszEnd = nullptr;
5164 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd), 5.0);
5165 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5166 : }
5167 :
5168 : {
5169 1 : const char *pszVal = "5 foo";
5170 1 : char *pszEnd = nullptr;
5171 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd), 5.0);
5172 1 : EXPECT_EQ(pszEnd, pszVal + 1);
5173 : }
5174 :
5175 : {
5176 1 : const char *pszVal = "foo";
5177 1 : char *pszEnd = nullptr;
5178 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd), 0.0);
5179 1 : EXPECT_EQ(pszEnd, pszVal);
5180 : }
5181 :
5182 : {
5183 1 : const char *pszVal = "-inf";
5184 1 : char *pszEnd = nullptr;
5185 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd),
5186 : -std::numeric_limits<double>::infinity());
5187 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5188 : }
5189 : {
5190 1 : const char *pszVal = "-Inf";
5191 1 : char *pszEnd = nullptr;
5192 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd),
5193 : -std::numeric_limits<double>::infinity());
5194 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5195 : }
5196 : {
5197 1 : const char *pszVal = "-INF";
5198 1 : char *pszEnd = nullptr;
5199 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd),
5200 : -std::numeric_limits<double>::infinity());
5201 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5202 : }
5203 : {
5204 1 : const char *pszVal = "-Infinity";
5205 1 : char *pszEnd = nullptr;
5206 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd),
5207 : -std::numeric_limits<double>::infinity());
5208 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5209 : }
5210 : {
5211 1 : const char *pszVal = "-1.#INF";
5212 1 : char *pszEnd = nullptr;
5213 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd),
5214 : -std::numeric_limits<double>::infinity());
5215 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5216 : }
5217 :
5218 : {
5219 1 : const char *pszVal = "inf";
5220 1 : char *pszEnd = nullptr;
5221 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd),
5222 : std::numeric_limits<double>::infinity());
5223 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5224 : }
5225 : {
5226 1 : const char *pszVal = "Inf";
5227 1 : char *pszEnd = nullptr;
5228 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd),
5229 : std::numeric_limits<double>::infinity());
5230 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5231 : }
5232 : {
5233 1 : const char *pszVal = "INF";
5234 1 : char *pszEnd = nullptr;
5235 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd),
5236 : std::numeric_limits<double>::infinity());
5237 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5238 : }
5239 : {
5240 1 : const char *pszVal = "Infinity";
5241 1 : char *pszEnd = nullptr;
5242 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd),
5243 : std::numeric_limits<double>::infinity());
5244 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5245 : }
5246 : {
5247 1 : const char *pszVal = "1.#INF";
5248 1 : char *pszEnd = nullptr;
5249 1 : EXPECT_EQ(CPLStrtod(pszVal, &pszEnd),
5250 : std::numeric_limits<double>::infinity());
5251 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5252 : }
5253 :
5254 : {
5255 1 : const char *pszVal = "-1.#QNAN";
5256 1 : char *pszEnd = nullptr;
5257 1 : EXPECT_TRUE(std::isnan(CPLStrtod(pszVal, &pszEnd)));
5258 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5259 : }
5260 : {
5261 1 : const char *pszVal = "-1.#IND";
5262 1 : char *pszEnd = nullptr;
5263 1 : EXPECT_TRUE(std::isnan(CPLStrtod(pszVal, &pszEnd)));
5264 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5265 : }
5266 : {
5267 1 : const char *pszVal = "1.#QNAN";
5268 1 : char *pszEnd = nullptr;
5269 1 : EXPECT_TRUE(std::isnan(CPLStrtod(pszVal, &pszEnd)));
5270 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5271 : }
5272 : {
5273 1 : const char *pszVal = "1.#SNAN";
5274 1 : char *pszEnd = nullptr;
5275 1 : EXPECT_TRUE(std::isnan(CPLStrtod(pszVal, &pszEnd)));
5276 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5277 : }
5278 : {
5279 1 : const char *pszVal = "NaN";
5280 1 : char *pszEnd = nullptr;
5281 1 : EXPECT_TRUE(std::isnan(CPLStrtod(pszVal, &pszEnd)));
5282 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5283 : }
5284 : {
5285 1 : const char *pszVal = "nan";
5286 1 : char *pszEnd = nullptr;
5287 1 : EXPECT_TRUE(std::isnan(CPLStrtod(pszVal, &pszEnd)));
5288 1 : EXPECT_EQ(pszEnd, pszVal + strlen(pszVal));
5289 : }
5290 1 : }
5291 :
5292 4 : TEST_F(test_cpl, CPLForceToASCII)
5293 : {
5294 : {
5295 1 : char *pszOut = CPLForceToASCII("foo", -1, '_');
5296 1 : EXPECT_STREQ(pszOut, "foo");
5297 1 : CPLFree(pszOut);
5298 : }
5299 : {
5300 1 : char *pszOut = CPLForceToASCII("foo", 1, '_');
5301 1 : EXPECT_STREQ(pszOut, "f");
5302 1 : CPLFree(pszOut);
5303 : }
5304 : {
5305 1 : char *pszOut = CPLForceToASCII("foo\xFF", -1, '_');
5306 1 : EXPECT_STREQ(pszOut, "foo_");
5307 1 : CPLFree(pszOut);
5308 : }
5309 1 : }
5310 :
5311 4 : TEST_F(test_cpl, CPLUTF8ForceToASCII)
5312 : {
5313 : {
5314 1 : char *pszOut = CPLUTF8ForceToASCII("foo", '_');
5315 1 : EXPECT_STREQ(pszOut, "foo");
5316 1 : CPLFree(pszOut);
5317 : }
5318 : {
5319 : // Truncated UTF-8 character
5320 1 : char *pszOut = CPLUTF8ForceToASCII("foo\xC0", '_');
5321 1 : EXPECT_STREQ(pszOut, "foo");
5322 1 : CPLFree(pszOut);
5323 : }
5324 : {
5325 1 : char *pszOut = CPLUTF8ForceToASCII("foo\xc2\x80", '_');
5326 1 : EXPECT_STREQ(pszOut, "foo_");
5327 1 : CPLFree(pszOut);
5328 : }
5329 : {
5330 1 : char *pszOut = CPLUTF8ForceToASCII("foo\xc2\x80x", '_');
5331 1 : EXPECT_STREQ(pszOut, "foo_x");
5332 1 : CPLFree(pszOut);
5333 : }
5334 : {
5335 1 : std::string s;
5336 : {
5337 : VSILFILE *f =
5338 1 : VSIFOpenL((data_ + SEP + "utf8accents.txt").c_str(), "rb");
5339 1 : ASSERT_NE(f, nullptr);
5340 1 : VSIFSeekL(f, 0, SEEK_END);
5341 1 : s.resize(static_cast<size_t>(VSIFTellL(f)));
5342 1 : VSIFSeekL(f, 0, SEEK_SET);
5343 1 : VSIFReadL(&s[0], 1, s.size(), f);
5344 1 : VSIFCloseL(f);
5345 2 : while (!s.empty() && s.back() == '\n')
5346 1 : s.pop_back();
5347 : }
5348 1 : std::string sRef;
5349 : {
5350 1 : VSILFILE *f = VSIFOpenL(
5351 2 : (data_ + SEP + "utf8accents_ascii.txt").c_str(), "rb");
5352 1 : ASSERT_NE(f, nullptr);
5353 1 : VSIFSeekL(f, 0, SEEK_END);
5354 1 : sRef.resize(static_cast<size_t>(VSIFTellL(f)));
5355 1 : VSIFSeekL(f, 0, SEEK_SET);
5356 1 : VSIFReadL(&sRef[0], 1, sRef.size(), f);
5357 1 : VSIFCloseL(f);
5358 2 : while (!sRef.empty() && sRef.back() == '\n')
5359 1 : sRef.pop_back();
5360 : }
5361 1 : char *pszOut = CPLUTF8ForceToASCII(s.c_str(), '_');
5362 1 : EXPECT_STREQ(pszOut, sRef.c_str());
5363 1 : CPLFree(pszOut);
5364 : }
5365 : }
5366 :
5367 : #ifndef _WIN32
5368 4 : TEST_F(test_cpl, CPLSpawn)
5369 : {
5370 : VSIStatBufL sStatBuf;
5371 1 : if (VSIStatL("/bin/true", &sStatBuf) == 0)
5372 : {
5373 1 : const char *const apszArgs[] = {"/bin/true", nullptr};
5374 1 : EXPECT_EQ(CPLSpawn(apszArgs, nullptr, nullptr, false), 0);
5375 : }
5376 1 : if (VSIStatL("/bin/false", &sStatBuf) == 0)
5377 : {
5378 1 : const char *const apszArgs[] = {"/bin/false", nullptr};
5379 1 : EXPECT_EQ(CPLSpawn(apszArgs, nullptr, nullptr, false), 1);
5380 : }
5381 :
5382 : {
5383 1 : const char *const apszArgs[] = {"/i_do/not/exist", nullptr};
5384 1 : CPLPushErrorHandler(CPLQuietErrorHandler);
5385 1 : EXPECT_EQ(CPLSpawn(apszArgs, nullptr, nullptr, false), -1);
5386 1 : CPLPopErrorHandler();
5387 : }
5388 1 : }
5389 : #endif
5390 :
5391 2 : static bool ENDS_WITH(const char *pszStr, const char *pszEnd)
5392 : {
5393 4 : return strlen(pszStr) >= strlen(pszEnd) &&
5394 4 : strcmp(pszStr + strlen(pszStr) - strlen(pszEnd), pszEnd) == 0;
5395 : }
5396 :
5397 4 : TEST_F(test_cpl, VSIMemGenerateHiddenFilename)
5398 : {
5399 : {
5400 : // Initial cleanup
5401 1 : VSIRmdirRecursive("/vsimem/");
5402 1 : VSIRmdirRecursive("/vsimem/.#!HIDDEN!#.");
5403 :
5404 : // Generate unlisted filename
5405 2 : const std::string osFilename1 = VSIMemGenerateHiddenFilename(nullptr);
5406 1 : const char *pszFilename1 = osFilename1.c_str();
5407 1 : EXPECT_TRUE(STARTS_WITH(pszFilename1, "/vsimem/.#!HIDDEN!#./"));
5408 1 : EXPECT_TRUE(ENDS_WITH(pszFilename1, "/unnamed"));
5409 :
5410 : {
5411 : // Check the file doesn't exist yet
5412 : VSIStatBufL sStat;
5413 1 : EXPECT_EQ(VSIStatL(pszFilename1, &sStat), -1);
5414 : }
5415 :
5416 : // Create the file with some content
5417 1 : GByte abyDummyData[1] = {0};
5418 1 : VSIFCloseL(VSIFileFromMemBuffer(pszFilename1, abyDummyData,
5419 : sizeof(abyDummyData), false));
5420 :
5421 : {
5422 : // Check the file exists now
5423 : VSIStatBufL sStat;
5424 1 : EXPECT_EQ(VSIStatL(pszFilename1, &sStat), 0);
5425 : }
5426 :
5427 : // Gets back content
5428 1 : EXPECT_EQ(VSIGetMemFileBuffer(pszFilename1, nullptr, false),
5429 : abyDummyData);
5430 :
5431 : {
5432 : // Check the hidden file doesn't popup
5433 2 : const CPLStringList aosFiles(VSIReadDir("/vsimem/"));
5434 1 : EXPECT_EQ(aosFiles.size(), 0);
5435 : }
5436 :
5437 : {
5438 : // Check that we can list the below directory if we know it exists
5439 : // and there's just one subdir
5440 2 : const CPLStringList aosFiles(VSIReadDir("/vsimem/.#!HIDDEN!#."));
5441 1 : EXPECT_EQ(aosFiles.size(), 1);
5442 : }
5443 :
5444 : {
5445 : // but that it is not an explicit directory
5446 : VSIStatBufL sStat;
5447 1 : EXPECT_EQ(VSIStatL("/vsimem/.#!HIDDEN!#.", &sStat), -1);
5448 : }
5449 :
5450 : // Creates second file
5451 2 : const std::string osFilename2 = VSIMemGenerateHiddenFilename(nullptr);
5452 1 : const char *pszFilename2 = osFilename2.c_str();
5453 1 : EXPECT_TRUE(strcmp(pszFilename1, pszFilename2) != 0);
5454 :
5455 : // Create it
5456 1 : VSIFCloseL(VSIFileFromMemBuffer(pszFilename2, abyDummyData,
5457 : sizeof(abyDummyData), false));
5458 :
5459 : {
5460 : // Check that we can list the root hidden dir if we know it exists
5461 2 : const CPLStringList aosFiles(VSIReadDir("/vsimem/.#!HIDDEN!#."));
5462 1 : EXPECT_EQ(aosFiles.size(), 2);
5463 : }
5464 :
5465 : {
5466 : // Create an explicit subdirectory in a hidden directory
5467 : const std::string osBaseName =
5468 2 : VSIMemGenerateHiddenFilename(nullptr);
5469 : const std::string osSubDir =
5470 2 : CPLFormFilename(osBaseName.c_str(), "mysubdir", nullptr);
5471 1 : EXPECT_EQ(VSIMkdir(osSubDir.c_str(), 0), 0);
5472 :
5473 : // Check the subdirectory exists
5474 : {
5475 : VSIStatBufL sStat;
5476 1 : EXPECT_EQ(VSIStatL(osSubDir.c_str(), &sStat), 0);
5477 : }
5478 :
5479 : // but not its hidden parent
5480 : {
5481 : VSIStatBufL sStat;
5482 1 : EXPECT_EQ(VSIStatL(osBaseName.c_str(), &sStat), -1);
5483 : }
5484 :
5485 : // Create file within the subdirectory
5486 1 : VSIFCloseL(VSIFileFromMemBuffer(
5487 : CPLFormFilename(osSubDir.c_str(), "my.bin", nullptr),
5488 : abyDummyData, sizeof(abyDummyData), false));
5489 :
5490 : {
5491 : // Check that we can list the subdirectory
5492 2 : const CPLStringList aosFiles(VSIReadDir(osSubDir.c_str()));
5493 1 : EXPECT_EQ(aosFiles.size(), 1);
5494 : }
5495 :
5496 : {
5497 : // Check that we can list the root hidden dir if we know it exists
5498 : const CPLStringList aosFiles(
5499 2 : VSIReadDir("/vsimem/.#!HIDDEN!#."));
5500 1 : EXPECT_EQ(aosFiles.size(), 3);
5501 : }
5502 : }
5503 :
5504 : // Directly create a directory with the return of VSIMemGenerateHiddenFilename()
5505 : {
5506 2 : const std::string osDirname = VSIMemGenerateHiddenFilename(nullptr);
5507 1 : EXPECT_EQ(VSIMkdir(osDirname.c_str(), 0), 0);
5508 :
5509 : // Check the subdirectory exists
5510 : {
5511 : VSIStatBufL sStat;
5512 1 : EXPECT_EQ(VSIStatL(osDirname.c_str(), &sStat), 0);
5513 : }
5514 :
5515 : // Create file within the subdirectory
5516 1 : VSIFCloseL(VSIFileFromMemBuffer(
5517 : CPLFormFilename(osDirname.c_str(), "my.bin", nullptr),
5518 : abyDummyData, sizeof(abyDummyData), false));
5519 :
5520 : {
5521 : // Check there's a file in this subdirectory
5522 2 : const CPLStringList aosFiles(VSIReadDir(osDirname.c_str()));
5523 1 : EXPECT_EQ(aosFiles.size(), 1);
5524 : }
5525 :
5526 1 : EXPECT_EQ(VSIRmdirRecursive(osDirname.c_str()), 0);
5527 :
5528 : {
5529 : // Check there's no longer any file in this subdirectory
5530 2 : const CPLStringList aosFiles(VSIReadDir(osDirname.c_str()));
5531 1 : EXPECT_EQ(aosFiles.size(), 0);
5532 : }
5533 :
5534 : {
5535 : // Check that it no longer exists
5536 : VSIStatBufL sStat;
5537 1 : EXPECT_EQ(VSIStatL(osDirname.c_str(), &sStat), -1);
5538 : }
5539 : }
5540 :
5541 : // Check that operations on "/vsimem/" do not interfere with hidden files
5542 : {
5543 : // Create regular file
5544 1 : VSIFCloseL(VSIFileFromMemBuffer("/vsimem/regular_file",
5545 : abyDummyData, sizeof(abyDummyData),
5546 : false));
5547 :
5548 : // Check it is visible
5549 1 : EXPECT_EQ(CPLStringList(VSIReadDir("/vsimem/")).size(), 1);
5550 :
5551 : // Clean root /vsimem/
5552 1 : VSIRmdirRecursive("/vsimem/");
5553 :
5554 : // No more user files
5555 1 : EXPECT_TRUE(CPLStringList(VSIReadDir("/vsimem/")).empty());
5556 :
5557 : // But still hidden files
5558 1 : EXPECT_TRUE(
5559 : !CPLStringList(VSIReadDir("/vsimem/.#!HIDDEN!#.")).empty());
5560 : }
5561 :
5562 : // Clean-up hidden files
5563 1 : EXPECT_EQ(VSIRmdirRecursive("/vsimem/.#!HIDDEN!#."), 0);
5564 :
5565 : {
5566 : // Check the root hidden dir is empty
5567 2 : const CPLStringList aosFiles(VSIReadDir("/vsimem/.#!HIDDEN!#."));
5568 1 : EXPECT_TRUE(aosFiles.empty());
5569 : }
5570 :
5571 1 : EXPECT_EQ(VSIRmdirRecursive("/vsimem/.#!HIDDEN!#."), 0);
5572 : }
5573 :
5574 : {
5575 2 : const std::string osFilename = VSIMemGenerateHiddenFilename("foo.bar");
5576 1 : const char *pszFilename = osFilename.c_str();
5577 1 : EXPECT_TRUE(STARTS_WITH(pszFilename, "/vsimem/.#!HIDDEN!#./"));
5578 1 : EXPECT_TRUE(ENDS_WITH(pszFilename, "/foo.bar"));
5579 : }
5580 1 : }
5581 : } // namespace
|