forked from valhalla/valhalla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson.cc
82 lines (71 loc) · 4.13 KB
/
json.cc
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
#include "baldr/json.h"
#include "baldr/rapidjson_utils.h"
#include <cstdint>
#include "test.h"
namespace {
TEST(JSON, Serialize) {
using namespace std;
using namespace valhalla::baldr;
stringstream result;
result << *json::map(
{{"hint_data",
json::map(
{{"locations",
json::array({string("_____38_SADaFQQAKwEAABEAAAAAAAAAdgAAAFfLwga4tW0C4P6W-wAARAA"),
string("fzhIAP____8wFAQA1AAAAC8BAAAAAAAAAAAAAP____9Uu20CGAiX-wAAAAA")})},
{"checksum", static_cast<uint64_t>(2875622111)}})},
{"route_name", json::array({string("West 26th Street"), string("Madison Avenue")})},
{"via_indices", json::array({uint64_t(0), uint64_t(9)})},
{"found_alternative", bool(false)},
{"route_summary", json::map({{"end_point", string("West 29th Street")},
{"start_point", string("West 26th Street")},
{"total_time", uint64_t(145)},
{"total_distance", uint64_t(878)}})},
{"via_points",
json::array({json::array({json::fixed_t{40.744377, 3}, json::fixed_t{-73.990433, 3}}),
json::array({json::fixed_t{40.745811, 3}, json::fixed_t{-73.988075, 3}})})},
{"route_instructions",
json::array(
{json::array({string("10"), string("West 26th Street"), uint64_t(216), uint64_t(0),
uint64_t(52), string("215m"), string("SE"), uint64_t(118)}),
json::array({string("1"), string("East 26th Street"), uint64_t(153), uint64_t(2),
uint64_t(29), string("153m"), string("SE"), uint64_t(120)}),
json::array({string("7"), string("Madison Avenue"), uint64_t(237), uint64_t(3),
uint64_t(25), string("236m"), string("NE"), uint64_t(29)}),
json::array({string("7"), string("East 29th Street"), uint64_t(155), uint64_t(6),
uint64_t(29), string("154m"), string("NW"), uint64_t(299)}),
json::array({string("1"), string("West 29th Street"), uint64_t(118), uint64_t(7),
uint64_t(21), string("117m"), string("NW"), uint64_t(299)}),
json::array({string("15"), string(""), uint64_t(0), uint64_t(8), uint64_t(0),
string("0m"), string("N"), uint64_t(0)})})},
{"route_geometry", string("ozyulA~p_clCfc@ywApTar@li@ybBqe@c[ue@e[ue@i[ci@dcB}^rkA")},
{"status_message", string("Found route between points")},
{"status", uint64_t(0)},
{"escaped_string", string("\"\t\r\n\\\a")}});
stringstream answer;
answer << "{\"escaped_string\":\"\\\"\\t\\r\\n\\\\\\u0007\",\"hint_data\":{\"checksum\":"
"2875622111,\"locations\":[\"_____38_SADaFQQAKwEAABEAAAAAAAAAdgAAAFfLwga4tW0C4P6W-"
"wAARAA\",\"fzhIAP____8wFAQA1AAAAC8BAAAAAAAAAAAAAP____9Uu20CGAiX-wAAAAA\"]},\"route_"
"name\":[\"West 26th Street\",\"Madison "
"Avenue\"],\"found_alternative\":false,\"route_summary\":{\"total_distance\":878,"
"\"total_time\":145,\"start_point\":\"West 26th Street\",\"end_point\":\"West 29th "
"Street\"},\"via_points\":[[40.744,-73.990],[40.746,-73.988]],\"route_instructions\":[["
"\"10\",\"West 26th Street\",216,0,52,\"215m\",\"SE\",118],[\"1\",\"East 26th "
"Street\",153,2,29,\"153m\",\"SE\",120],[\"7\",\"Madison "
"Avenue\",237,3,25,\"236m\",\"NE\",29],[\"7\",\"East 29th "
"Street\",155,6,29,\"154m\",\"NW\",299],[\"1\",\"West 29th "
"Street\",118,7,21,\"117m\",\"NW\",299],[\"15\",\"\",0,8,0,\"0m\",\"N\",0]],\"route_"
"geometry\":\"ozyulA~p_clCfc@ywApTar@li@ybBqe@c[ue@e[ue@i[ci@dcB}^rkA\",\"status_"
"message\":\"Found route between points\",\"via_indices\":[0,9],\"status\":0}";
rapidjson::Document res, ans;
res.Parse(result.str());
EXPECT_FALSE(res.HasParseError());
ans.Parse(answer.str());
EXPECT_FALSE(ans.HasParseError());
EXPECT_EQ(res, ans) << "Wrong json";
}
} // namespace
int main(int argc, char* argv[]) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}