forked from microsoft/cpprestsdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparsing_tests.cpp
763 lines (656 loc) · 26.6 KB
/
parsing_tests.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
/***
* Copyright (C) Microsoft. All rights reserved.
* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
*
* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
*
* Tests for JSON parsing.
*
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
****/
#include "stdafx.h"
#include <array>
#include <iomanip>
#if defined(_WIN32) || defined(__APPLE__)
#include <regex>
#elif (defined(ANDROID) || defined(__ANDROID__))
#else
// GCC 4.8 doesn't support regex very well, fall back to Boost. Revist in GCC 4.9.
#include <boost/regex.hpp>
#endif
using namespace web;
using namespace utility;
using namespace utility::conversions;
namespace tests
{
namespace functional
{
namespace json_tests
{
inline bool verify_parsing_error_msg(const std::string& str)
{
#if defined(_WIN32) || defined(__APPLE__)
auto spattern = "^\\* Line \\d+, Column \\d+ Syntax error: .+";
static std::regex pattern(spattern);
return std::regex_match(str, pattern, std::regex_constants::match_flag_type::match_not_null);
#elif (defined(ANDROID) || defined(__ANDROID__))
return str.find("Syntax error: ") != std::string::npos;
#else
auto spattern = "^\\* Line \\d+, Column \\d+ Syntax error: .+";
static boost::regex pattern(spattern);
return boost::regex_match(str, pattern, boost::regex_constants::match_flag_type::match_not_null);
#endif
}
#if defined(_MSC_VER)
#pragma warning(disable : 4127) // const expression
#endif
#define VERIFY_PARSING_THROW(target) \
do \
{ \
try \
{ \
target; \
VERIFY_IS_TRUE(false); \
} \
catch (const json::json_exception& e) \
{ \
VERIFY_IS_TRUE(verify_parsing_error_msg(e.what())); \
} \
catch (...) \
{ \
VERIFY_IS_TRUE(false); \
} \
} while (false)
SUITE(parsing_tests)
{
TEST(stringstream_t)
{
utility::stringstream_t ss0;
ss0 << U("null");
json::value v0 = json::value::parse(ss0);
utility::stringstream_t ss1;
ss1 << U("17");
json::value v1 = json::value::parse(ss1);
utility::stringstream_t ss2;
ss2 << U("3.1415");
json::value v2 = json::value::parse(ss2);
utility::stringstream_t ss3;
ss3 << U("true");
json::value v3 = json::value::parse(ss3);
utility::stringstream_t ss4;
ss4 << U("\"Hello!\"");
json::value v4 = json::value::parse(ss4);
utility::stringstream_t ss8;
ss8 << U("{ \"a\" : 10 }");
json::value v8 = json::value::parse(ss8);
utility::stringstream_t ss9;
ss9 << U("[1,2,3,true]");
json::value v9 = json::value::parse(ss9);
VERIFY_ARE_EQUAL(v1.type(), json::value::Number);
VERIFY_ARE_EQUAL(v2.type(), json::value::Number);
VERIFY_ARE_EQUAL(v3.type(), json::value::Boolean);
VERIFY_ARE_EQUAL(v4.type(), json::value::String);
VERIFY_ARE_EQUAL(v8.type(), json::value::Object);
VERIFY_ARE_EQUAL(v9.type(), json::value::Array);
}
TEST(whitespace_failure) { VERIFY_PARSING_THROW(json::value::parse(U(" "))); }
static const std::array<char, 4> whitespace_chars = {{0x20, 0x09, 0x0A, 0x0D}};
TEST(whitespace_array)
{
// Try all the whitespace characters before/after all the structural characters
// whitespace characters according to RFC4627: space, horizontal tab, line feed or new line, carriage return
// structural characters: [{]}:,
// [,]
for (auto ch : whitespace_chars)
{
utility::string_t input;
input.append(2, ch);
input.append(U("["));
input.append(2, ch);
input.append(U("1"));
input.append(1, ch);
input.append(U(","));
input.append(4, ch);
input.append(U("2"));
input.append(1, ch);
input.append(U("]"));
input.append(2, ch);
json::value val = json::value::parse(input);
VERIFY_IS_TRUE(val.is_array());
VERIFY_ARE_EQUAL(U("1"), val[0].serialize());
VERIFY_ARE_EQUAL(U("2"), val[1].serialize());
}
}
TEST(whitespace_object)
{
// {:}
for (auto ch : whitespace_chars)
{
utility::string_t input;
input.append(2, ch);
input.append(U("{"));
input.append(2, ch);
input.append(U("\"1\""));
input.append(1, ch);
input.append(U(":"));
input.append(4, ch);
input.append(U("2"));
input.append(1, ch);
input.append(U("}"));
input.append(2, ch);
json::value val = json::value::parse(input);
VERIFY_IS_TRUE(val.is_object());
VERIFY_ARE_EQUAL(U("2"), val[U("1")].serialize());
}
}
TEST(string_t)
{
json::value str = json::value::parse(U("\"\\\"\""));
VERIFY_ARE_EQUAL(U("\""), str.as_string());
str = json::value::parse(U("\"\""));
VERIFY_ARE_EQUAL(U(""), str.as_string());
str = json::value::parse(U("\"\\\"ds\""));
VERIFY_ARE_EQUAL(U("\"ds"), str.as_string());
str = json::value::parse(U("\"\\\"\\\"\""));
VERIFY_ARE_EQUAL(U("\"\""), str.as_string());
// two character escapes
str = json::value::parse(U("\"\\\\\""));
VERIFY_ARE_EQUAL(U("\\"), str.as_string());
str = json::value::parse(U("\"\\/\""));
VERIFY_ARE_EQUAL(U("/"), str.as_string());
str = json::value::parse(U("\"\\b\""));
VERIFY_ARE_EQUAL(U("\b"), str.as_string());
str = json::value::parse(U("\"\\f\""));
VERIFY_ARE_EQUAL(U("\f"), str.as_string());
str = json::value::parse(U("\"\\n\""));
VERIFY_ARE_EQUAL(U("\n"), str.as_string());
str = json::value::parse(U("\"\\r\""));
VERIFY_ARE_EQUAL(U("\r"), str.as_string());
str = json::value::parse(U("\"\\t\""));
VERIFY_ARE_EQUAL(U("\t"), str.as_string());
}
TEST(escaped_unicode_string)
{
auto str = json::value::parse(U("\"\\u0041\""));
VERIFY_ARE_EQUAL(U("A"), str.as_string());
str = json::value::parse(U("\"\\u004B\""));
VERIFY_ARE_EQUAL(U("K"), str.as_string());
str = json::value::parse(U("\"\\u20AC\""));
// Euro sign as a hexidecmial UTF-8
const auto euro = to_string_t("\xE2\x82\xAC");
VERIFY_ARE_EQUAL(euro, str.as_string());
// UTF-16 character with surrogate pair
str = json::value::parse(U("\"\\ud83d\\ude00\""));
// Grinning Face emoji as a hexadecimal UTF-8
const auto emoji = to_string_t("\xF0\x9F\x98\x80");
VERIFY_ARE_EQUAL(emoji, str.as_string());
VERIFY_PARSING_THROW(json::value::parse(U("\"\\u0klB\"")));
}
TEST(escaping_control_characters)
{
std::vector<int> chars;
for (int i = 0; i <= 0x1F; ++i)
{
chars.push_back(i);
}
chars.push_back(0x5C); // backslash '\'
chars.push_back(0x22); // quotation '"'
for (int i : chars)
{
utility::stringstream_t ss;
ss << U("\"\\u") << std::uppercase << std::setfill(U('0')) << std::setw(4) << std::hex << i << U("\"");
const auto& str = ss.str();
auto expectedStr = str;
if (i == 0x08)
{
expectedStr = U("\"\\b\"");
}
else if (i == 0x09)
{
expectedStr = U("\"\\t\"");
}
else if (i == 0x0A)
{
expectedStr = U("\"\\n\"");
}
else if (i == 0x0C)
{
expectedStr = U("\"\\f\"");
}
else if (i == 0x0D)
{
expectedStr = U("\"\\r\"");
}
else if (i == 0x5C)
{
expectedStr = U("\"\\\\\"");
}
else if (i == 0x22)
{
expectedStr = U("\"\\\"\"");
}
// Try constructing a json string value directly.
utility::string_t schar;
schar.push_back(static_cast<utility::string_t::value_type>(i));
const auto& sv = json::value::string(schar);
VERIFY_ARE_EQUAL(expectedStr, sv.serialize());
// Try parsing a string
const auto& v = json::value::parse(str);
VERIFY_IS_TRUE(v.is_string());
VERIFY_ARE_EQUAL(expectedStr, v.serialize());
// Try parsing a stringstream.
const auto& ssv = json::value::parse(ss);
VERIFY_ARE_EQUAL(expectedStr, ssv.serialize());
}
}
TEST(comments_string)
{
// Nothing but a comment
VERIFY_PARSING_THROW(json::value::parse(U(" /* There's nothing but a comment here */ ")));
VERIFY_PARSING_THROW(json::value::parse(U(" // There's nothing but a comment here\n")));
// Some invalid comments
VERIFY_PARSING_THROW(json::value::parse(U(" -22 /*/")));
VERIFY_PARSING_THROW(json::value::parse(U(" -22 /* /* nested */ */")));
// Correctly placed comments
json::value num1 = json::value::parse(U("-22 // This is a trailing comment\n"));
VERIFY_ARE_EQUAL(-22, num1.as_double());
num1 = json::value::parse(U(" -22 /* This is a trailing comment with a // nested\n comment */"));
VERIFY_ARE_EQUAL(-22, num1.as_double());
json::value num2 = json::value::parse(U("// This is a leading comment\n -22"));
VERIFY_ARE_EQUAL(-22, num2.as_double());
json::value num3 = json::value::parse(U("-22 /* This is a trailing comment */"));
VERIFY_ARE_EQUAL(-22, num3.as_double());
json::value num4 = json::value::parse(U("/* This is a leading comment */ -22"));
VERIFY_ARE_EQUAL(-22, num4.as_double());
json::value num5 = json::value::parse(U("-22 /***/"));
VERIFY_ARE_EQUAL(-22, num5.as_double());
json::value obj1 = json::value::parse(U("{// A comment in the middle of an empty object\n}"));
VERIFY_IS_TRUE(obj1.is_object());
VERIFY_ARE_EQUAL(0u, obj1.size());
json::value obj2 = json::value::parse(U("{/* A comment in the middle of an empty object */}"));
VERIFY_IS_TRUE(obj2.is_object());
VERIFY_ARE_EQUAL(0u, obj2.size());
json::value obj3 = json::value::parse(U("{ \"test\" : // A comment in the middle of a non-empty object\n 2}"));
VERIFY_IS_TRUE(obj3.is_object());
VERIFY_ARE_EQUAL(1u, obj3.size());
json::value obj4 = json::value::parse(U("{ \"test\" : /* A comment in the middle of a non-empty object */ 2}"));
VERIFY_IS_TRUE(obj4.is_object());
VERIFY_ARE_EQUAL(1u, obj4.size());
json::value arr1 = json::value::parse(U("[// A comment in the middle of an empty array\n]"));
VERIFY_IS_TRUE(arr1.is_array());
VERIFY_ARE_EQUAL(0u, arr1.size());
json::value arr2 = json::value::parse(U("[/* A comment in the middle of an empty array */]"));
VERIFY_IS_TRUE(arr2.is_array());
VERIFY_ARE_EQUAL(0u, arr2.size());
json::value arr3 = json::value::parse(U("[ 1, // A comment in the middle of a non-array\n 2]"));
VERIFY_IS_TRUE(arr3.is_array());
VERIFY_ARE_EQUAL(2u, arr3.size());
json::value arr4 = json::value::parse(U("[ 1, /* A comment in the middle of a non-empty array */ 2]"));
VERIFY_IS_TRUE(arr4.is_array());
VERIFY_ARE_EQUAL(2u, arr4.size());
}
TEST(comments_stream)
{
// Nothing but a comment
{
std::basic_stringstream<utility::char_t> stream;
stream << U(" /* There's nothing but a comment here */ ");
VERIFY_PARSING_THROW(json::value::parse(stream));
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U(" // There's nothing but a comment here\n ");
VERIFY_PARSING_THROW(json::value::parse(stream));
}
// Some invalid comments
{
std::basic_stringstream<utility::char_t> stream;
stream << U(" -22 /*/");
VERIFY_PARSING_THROW(json::value::parse(stream));
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U(" -22 /* /* nested */ */");
VERIFY_PARSING_THROW(json::value::parse(stream));
}
// Correctly placed comments
{
std::basic_stringstream<utility::char_t> stream;
stream << U("-22 // This is a trailing comment\n");
json::value num1 = json::value::parse(stream);
VERIFY_ARE_EQUAL(-22, num1.as_double());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U(" -22 /* This is a trailing comment with a // nested\n comment */");
json::value num1 = json::value::parse(stream);
VERIFY_ARE_EQUAL(-22, num1.as_double());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U("// This is a leading comment\n -22");
json::value num2 = json::value::parse(stream);
VERIFY_ARE_EQUAL(-22, num2.as_double());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U("-22 /* This is a trailing comment */");
json::value num3 = json::value::parse(stream);
VERIFY_ARE_EQUAL(-22, num3.as_double());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U("/* This is a leading comment */ -22");
json::value num4 = json::value::parse(stream);
VERIFY_ARE_EQUAL(-22, num4.as_double());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U("-22 /***/");
json::value num4 = json::value::parse(stream);
VERIFY_ARE_EQUAL(-22, num4.as_double());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U("{// A comment in the middle of an empty object\n}");
json::value obj1 = json::value::parse(stream);
VERIFY_IS_TRUE(obj1.is_object());
VERIFY_ARE_EQUAL(0u, obj1.size());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U("{/* A comment in the middle of an empty object */}");
json::value obj2 = json::value::parse(stream);
VERIFY_IS_TRUE(obj2.is_object());
VERIFY_ARE_EQUAL(0u, obj2.size());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U("{ \"test1\" : // A comment in the middle of a non-empty object\n 2}");
json::value obj3 = json::value::parse(stream);
VERIFY_IS_TRUE(obj3.is_object());
VERIFY_ARE_EQUAL(1u, obj3.size());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U("{ \"test1\" : /* A comment in the middle of a non-empty object */ 2}");
json::value obj4 = json::value::parse(stream);
VERIFY_IS_TRUE(obj4.is_object());
VERIFY_ARE_EQUAL(1u, obj4.size());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U("[// A comment in the middle of an empty array\n]");
json::value arr1 = json::value::parse(stream);
VERIFY_IS_TRUE(arr1.is_array());
VERIFY_ARE_EQUAL(0u, arr1.size());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U("[/* A comment in the middle of an empty array */]");
json::value arr2 = json::value::parse(stream);
VERIFY_IS_TRUE(arr2.is_array());
VERIFY_ARE_EQUAL(0u, arr2.size());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U("[ 1, // A comment in the middle of a non-array\n 2]");
json::value arr3 = json::value::parse(stream);
VERIFY_IS_TRUE(arr3.is_array());
VERIFY_ARE_EQUAL(2u, arr3.size());
}
{
std::basic_stringstream<utility::char_t> stream;
stream << U("[ 1, /* A comment in the middle of a non-empty array */ 2]");
json::value arr4 = json::value::parse(stream);
VERIFY_IS_TRUE(arr4.is_array());
VERIFY_ARE_EQUAL(2u, arr4.size());
}
}
TEST(empty_object_array)
{
json::value obj = json::value::parse(U("{}"));
VERIFY_IS_TRUE(obj.is_object());
VERIFY_ARE_EQUAL(0u, obj.size());
json::value arr = json::value::parse(U("[]"));
VERIFY_IS_TRUE(arr.is_array());
VERIFY_ARE_EQUAL(0u, arr.size());
}
TEST(bug_416116)
{
json::value data2 = json::value::parse(U("\"δοκιμή\""));
auto s = data2.serialize();
#if defined(_MSC_VER)
#pragma warning(push)
#pragma warning(disable : 4566)
#endif
VERIFY_ARE_EQUAL(s, U("\"δοκιμή\""));
#if defined(_MSC_VER)
#pragma warning(pop)
#endif
}
TEST(byte_ptr_parsing_array)
{
char s[] = "[ \"test1\",true]";
std::stringstream ss;
ss << s;
json::value v = json::value::parse(ss);
auto s2 = v.serialize();
VERIFY_ARE_EQUAL(s2, U("[\"test1\",true]"));
std::stringstream os;
v.serialize(os);
VERIFY_ARE_EQUAL(s2, to_string_t(os.str()));
}
TEST(byte_ptr_parsing_object)
{
char s[] = "{\"test1\":true }";
std::stringstream ss;
ss << s;
json::value v = json::value::parse(ss);
auto s2 = v.serialize();
VERIFY_ARE_EQUAL(s2, U("{\"test1\":true}"));
std::stringstream os;
v.serialize(os);
VERIFY_ARE_EQUAL(s2, to_string_t(os.str()));
}
TEST(Japanese)
{
utility::string_t ws = U("\"こんにちは\"");
std::string s = to_utf8string(ws);
std::stringstream ss;
ss << s;
json::value v = json::value::parse(ss);
auto s2 = v.serialize();
VERIFY_ARE_EQUAL(s2, ws);
std::stringstream os;
v.serialize(os);
VERIFY_ARE_EQUAL(s2, to_string_t(os.str()));
}
TEST(Russian)
{
utility::string_t ws = U("{\"results\":[{\"id\":272655310,\"name\":\"Андрей Ив´анов\"}]}");
json::value v1 = json::value::parse(ws);
auto s2 = v1.serialize();
VERIFY_ARE_EQUAL(s2, ws);
std::string s = to_utf8string(ws);
std::stringstream ss;
ss << s;
json::value v2 = json::value::parse(ss);
auto s3 = v2.serialize();
VERIFY_ARE_EQUAL(s3, ws);
}
utility::string_t make_deep_json_string(size_t depth)
{
utility::string_t strval;
for (size_t i = 0; i < depth; ++i)
{
strval += U("{ \"a\" : 10, \"b\" : ");
}
strval += U("20");
for (size_t i = 0; i < depth; ++i)
{
strval += U("}");
}
return strval;
}
TEST(deeply_nested)
{
#if defined(__APPLE__)
size_t safeDepth = 32;
size_t overDepth = 33;
#else
size_t safeDepth = 128;
size_t overDepth = 129;
#endif
// This should parse without issues:
auto strGood = make_deep_json_string(safeDepth);
json::value::parse(strGood);
// But this one should throw:
auto strBad = make_deep_json_string(overDepth);
VERIFY_PARSING_THROW(json::value::parse(strBad));
}
static bool compare_pairs(const std::pair<utility::string_t, json::value>& p1,
const std::pair<utility::string_t, json::value>& p2)
{
return p1.first < p2.first;
}
TEST(unsorted_object_parsing)
{
utility::stringstream_t ss;
ss << U("{\"z\":2, \"a\":1}");
json::value v = json::value::parse(ss);
auto& obj = v.as_object();
VERIFY_ARE_NOT_EQUAL(obj.find(U("a")), obj.end());
VERIFY_ARE_NOT_EQUAL(obj.find(U("z")), obj.end());
VERIFY_ARE_EQUAL(obj[U("a")], 1);
VERIFY_ARE_EQUAL(obj[U("z")], 2);
VERIFY_ARE_EQUAL(obj.size(), 2);
VERIFY_IS_TRUE(::std::is_sorted(obj.begin(), obj.end(), compare_pairs));
}
TEST(keep_order_while_parsing)
{
utility::stringstream_t ss;
ss << U("{\"k\":3, \"j\":2, \"i\":1}");
json::keep_object_element_order(true);
struct restore
{
~restore() { json::keep_object_element_order(false); }
} _;
json::value v = json::value::parse(ss);
auto& obj = v.as_object();
// Make sure collection stays unsorted:
auto b = obj.begin();
VERIFY_ARE_EQUAL(b[0].first, U("k"));
VERIFY_ARE_EQUAL(b[1].first, U("j"));
VERIFY_ARE_EQUAL(b[2].first, U("i"));
// Make sure lookup still works:
auto val_i = obj[U("i")];
VERIFY_ARE_EQUAL(val_i.as_integer(), 1);
auto val_j = obj[U("j")];
VERIFY_ARE_EQUAL(val_j.as_integer(), 2);
// Make sure 'a' goes to the back of the collection, and
// can be looked up
obj[U("a")] = 4;
b = obj.begin();
VERIFY_ARE_EQUAL(b[3].first, U("a"));
VERIFY_ARE_EQUAL(obj[U("a")].as_integer(), 4);
}
TEST(non_default_locale, "Ignore:Android", "Locale unsupported on Android")
{
std::string originalLocale = setlocale(LC_ALL, nullptr);
#ifdef _WIN32
std::string changedLocale("fr-FR");
#else
std::string changedLocale("fr_FR.utf8");
#endif
// If locale isn't installed on system just silently pass.
if (setlocale(LC_ALL, changedLocale.c_str()) != nullptr)
{
// string serialize
utility::string_t str(U("[true,false,-1.55,5,null,{\"abc\":5555}]"));
json::value v = json::value::parse(str);
VERIFY_ARE_EQUAL(changedLocale, setlocale(LC_ALL, nullptr));
VERIFY_ARE_EQUAL(str, v.serialize());
VERIFY_ARE_EQUAL(changedLocale, setlocale(LC_ALL, nullptr));
setlocale(LC_ALL, originalLocale.c_str());
setlocale(LC_NUMERIC, changedLocale.c_str());
// cpprestsdk stream serialize
utility::stringstream_t stream;
stream << v;
utility::string_t serializedStr;
stream >> serializedStr;
VERIFY_ARE_EQUAL(str, serializedStr);
// std stream serialize
std::stringstream stdStream;
v.serialize(stdStream);
std::string stdStr;
stdStream >> stdStr;
VERIFY_ARE_EQUAL(str, utility::conversions::to_string_t(stdStr));
setlocale(LC_ALL, originalLocale.c_str());
}
}
template<typename T>
void error_code_helper(T & jsonData)
{
std::error_code err;
auto parsedObject = web::json::value::parse(jsonData, err);
VERIFY_IS_TRUE(err.value() == 0);
VERIFY_IS_TRUE(!parsedObject.is_null());
}
TEST(parse_overload_success)
{
std::error_code err;
utility::string_t valueStr(U("\"JSONString\""));
utility::string_t arrStr(U("[true,false,-1.55,5,null,{\"abc\":5555}]"));
utility::string_t objStr(U("{\"k\":3, \"j\":2, \"i\":1}"));
error_code_helper(valueStr);
error_code_helper(arrStr);
error_code_helper(objStr);
utility::stringstream_t valueStringStream;
utility::stringstream_t arrayStringStream;
utility::stringstream_t objStringStream;
valueStringStream << valueStr;
arrayStringStream << arrStr;
objStringStream << objStr;
error_code_helper(valueStringStream);
error_code_helper(arrayStringStream);
error_code_helper(objStringStream);
#ifdef _WIN32
std::wstringbuf buf;
buf.sputn(valueStr.c_str(), valueStr.size());
std::wistream valStream(&buf);
error_code_helper(valStream);
buf.sputn(arrStr.c_str(), arrStr.size());
std::wistream arrStream(&buf);
error_code_helper(arrStream);
buf.sputn(objStr.c_str(), objStr.size());
std::wistream objStream(&buf);
error_code_helper(objStream);
#endif
}
TEST(parse_overload_failed)
{
std::error_code err, streamErr, iStreamErr;
utility::string_t str(U("JSONString"));
utility::string_t arrStr(U("[true, false"));
json::value parsedObject = json::value::parse(str, err);
VERIFY_IS_TRUE(err.value() > 0);
VERIFY_IS_TRUE(parsedObject.is_null());
utility::stringstream_t stream;
stream << str;
parsedObject = json::value::parse(arrStr, streamErr);
VERIFY_IS_TRUE(streamErr.value() > 0);
VERIFY_IS_TRUE(parsedObject.is_null());
#ifdef _WIN32
std::wstringbuf buf;
buf.sputn(str.c_str(), str.size());
std::wistream iStream(&buf);
parsedObject = json::value::parse(str, iStreamErr);
VERIFY_IS_TRUE(iStreamErr.value() > 0);
VERIFY_IS_TRUE(parsedObject.is_null());
#endif
}
} // SUITE(parsing_tests)
} // namespace json_tests
} // namespace functional
} // namespace tests