comparison ext/json11/test.cpp @ 150:bf8e3e7dd7de

Move some things around, and add overall test script
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 20 Jan 2017 17:45:54 +0000
parents
children d607ae858682
comparison
equal deleted inserted replaced
149:70bf40743d6a 150:bf8e3e7dd7de
1 #include <string>
2 #include <cstdio>
3 #include <cstring>
4 #include <iostream>
5 #include <sstream>
6 #include "json11.hpp"
7 #include <cassert>
8 #include <list>
9 #include <set>
10 #include <unordered_map>
11
12 using namespace json11;
13 using std::string;
14
15 // Check that Json has the properties we want.
16 #include <type_traits>
17 #define CHECK_TRAIT(x) static_assert(std::x::value, #x)
18 CHECK_TRAIT(is_nothrow_constructible<Json>);
19 CHECK_TRAIT(is_nothrow_default_constructible<Json>);
20 CHECK_TRAIT(is_copy_constructible<Json>);
21 CHECK_TRAIT(is_nothrow_move_constructible<Json>);
22 CHECK_TRAIT(is_copy_assignable<Json>);
23 CHECK_TRAIT(is_nothrow_move_assignable<Json>);
24 CHECK_TRAIT(is_nothrow_destructible<Json>);
25
26 void parse_from_stdin() {
27 string buf;
28 string line;
29 while (std::getline(std::cin, line)) {
30 buf += line + "\n";
31 }
32
33 string err;
34 auto json = Json::parse(buf, err);
35 if (!err.empty()) {
36 printf("Failed: %s\n", err.c_str());
37 } else {
38 printf("Result: %s\n", json.dump().c_str());
39 }
40 }
41
42 int main(int argc, char **argv) {
43 if (argc == 2 && argv[1] == string("--stdin")) {
44 parse_from_stdin();
45 return 0;
46 }
47
48 const string simple_test =
49 R"({"k1":"v1", "k2":42, "k3":["a",123,true,false,null]})";
50
51 string err;
52 auto json = Json::parse(simple_test, err);
53
54 std::cout << "k1: " << json["k1"].string_value() << "\n";
55 std::cout << "k3: " << json["k3"].dump() << "\n";
56
57 for (auto &k : json["k3"].array_items()) {
58 std::cout << " - " << k.dump() << "\n";
59 }
60
61 const string comment_test = R"({
62 // comment /* with nested comment */
63 "a": 1,
64 // comment
65 // continued
66 "b": "text",
67 /* multi
68 line
69 comment */
70 // and single-line comment
71 "c": [1, 2, 3]
72 })";
73
74 string err_comment;
75 auto json_comment = Json::parse(
76 comment_test, err_comment, JsonParse::COMMENTS);
77 if (!err_comment.empty()) {
78 printf("Failed: %s\n", err_comment.c_str());
79 } else {
80 printf("Result: %s\n", json_comment.dump().c_str());
81 }
82
83 string failing_comment_test = R"({
84 /* bad comment
85 "a": 1,
86 })";
87
88 string err_failing_comment;
89 auto json_failing_comment = Json::parse(
90 failing_comment_test, err_failing_comment, JsonParse::COMMENTS);
91 if (!err_failing_comment.empty()) {
92 printf("Failed: %s\n", err_failing_comment.c_str());
93 } else {
94 printf("Result: %s\n", json_failing_comment.dump().c_str());
95 }
96
97 failing_comment_test = R"({
98 / / bad comment })";
99
100 json_failing_comment = Json::parse(
101 failing_comment_test, err_failing_comment, JsonParse::COMMENTS);
102 if (!err_failing_comment.empty()) {
103 printf("Failed: %s\n", err_failing_comment.c_str());
104 } else {
105 printf("Result: %s\n", json_failing_comment.dump().c_str());
106 }
107
108 failing_comment_test = R"({// bad comment })";
109
110 json_failing_comment = Json::parse(
111 failing_comment_test, err_failing_comment, JsonParse::COMMENTS);
112 if (!err_failing_comment.empty()) {
113 printf("Failed: %s\n", err_failing_comment.c_str());
114 } else {
115 printf("Result: %s\n", json_failing_comment.dump().c_str());
116 }
117
118 failing_comment_test = R"({
119 "a": 1
120 }/)";
121
122 json_failing_comment = Json::parse(
123 failing_comment_test, err_failing_comment, JsonParse::COMMENTS);
124 if (!err_failing_comment.empty()) {
125 printf("Failed: %s\n", err_failing_comment.c_str());
126 } else {
127 printf("Result: %s\n", json_failing_comment.dump().c_str());
128 }
129
130 failing_comment_test = R"({/* bad
131 comment *})";
132
133 json_failing_comment = Json::parse(
134 failing_comment_test, err_failing_comment, JsonParse::COMMENTS);
135 if (!err_failing_comment.empty()) {
136 printf("Failed: %s\n", err_failing_comment.c_str());
137 } else {
138 printf("Result: %s\n", json_failing_comment.dump().c_str());
139 }
140
141 std::list<int> l1 { 1, 2, 3 };
142 std::vector<int> l2 { 1, 2, 3 };
143 std::set<int> l3 { 1, 2, 3 };
144 assert(Json(l1) == Json(l2));
145 assert(Json(l2) == Json(l3));
146
147 std::map<string, string> m1 { { "k1", "v1" }, { "k2", "v2" } };
148 std::unordered_map<string, string> m2 { { "k1", "v1" }, { "k2", "v2" } };
149 assert(Json(m1) == Json(m2));
150
151 // Json literals
152 Json obj = Json::object({
153 { "k1", "v1" },
154 { "k2", 42.0 },
155 { "k3", Json::array({ "a", 123.0, true, false, nullptr }) },
156 });
157
158 std::cout << "obj: " << obj.dump() << "\n";
159
160 assert(Json("a").number_value() == 0);
161 assert(Json("a").string_value() == "a");
162 assert(Json().number_value() == 0);
163
164 assert(obj == json);
165 assert(Json(42) == Json(42.0));
166 assert(Json(42) != Json(42.1));
167
168 const string unicode_escape_test =
169 R"([ "blah\ud83d\udca9blah\ud83dblah\udca9blah\u0000blah\u1234" ])";
170
171 const char utf8[] = "blah" "\xf0\x9f\x92\xa9" "blah" "\xed\xa0\xbd" "blah"
172 "\xed\xb2\xa9" "blah" "\0" "blah" "\xe1\x88\xb4";
173
174 Json uni = Json::parse(unicode_escape_test, err);
175 assert(uni[0].string_value().size() == (sizeof utf8) - 1);
176 assert(std::memcmp(uni[0].string_value().data(), utf8, sizeof utf8) == 0);
177
178 // Demonstrates the behavior change in Xcode 7 / Clang 3.7 described
179 // here: https://llvm.org/bugs/show_bug.cgi?id=23812
180 Json nested_array = Json::array { Json::array { 1, 2, 3 } };
181 assert(nested_array.is_array());
182 assert(nested_array.array_items().size() == 1);
183 assert(nested_array.array_items()[0].is_array());
184 assert(nested_array.array_items()[0].array_items().size() == 3);
185
186 Json my_json = Json::object {
187 { "key1", "value1" },
188 { "key2", false },
189 { "key3", Json::array { 1, 2, 3 } },
190 };
191 std::string json_str = my_json.dump();
192 printf("%s\n", json_str.c_str());
193
194 class Point {
195 public:
196 int x;
197 int y;
198 Point (int x, int y) : x(x), y(y) {}
199 Json to_json() const { return Json::array { x, y }; }
200 };
201
202 std::vector<Point> points = { { 1, 2 }, { 10, 20 }, { 100, 200 } };
203 std::string points_json = Json(points).dump();
204 printf("%s\n", points_json.c_str());
205 }