This repository was archived by the owner on Dec 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 628
/
Copy pathCentroidTests.cs
222 lines (187 loc) · 5.54 KB
/
CentroidTests.cs
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
using System;
using System.Collections.Generic;
using NUnit.Framework;
namespace ServiceStack.Text.Tests.UseCases
{
/// <summary>
/// Solution in response to:
/// http://stackoverflow.com/questions/5057684/json-c-deserializing-a-changing-content-or-a-piece-of-json-response
/// </summary>
public class CentroidTests
{
public class Centroid
{
public Centroid(decimal latitude, decimal longitude)
{
Latitude = latitude;
Longitude = longitude;
}
public string LatLon
{
get
{
return String.Format("{0};{1}", Latitude, Longitude);
}
}
public decimal Latitude { get; set; }
public decimal Longitude { get; set; }
}
public class BoundingBox
{
public Centroid SouthWest { get; set; }
public Centroid NorthEast { get; set; }
}
public class Place
{
public int WoeId { get; set; }
public string PlaceTypeName { get; set; }
public string Name { get; set; }
public Dictionary<string, string> PlaceTypeNameAttrs { get; set; }
public string Country { get; set; }
public Dictionary<string, string> CountryAttrs { get; set; }
public string Admin1 { get; set; }
public Dictionary<string, string> Admin1Attrs { get; set; }
public string Admin2 { get; set; }
public string Admin3 { get; set; }
public string Locality1 { get; set; }
public string Locality2 { get; set; }
public string Postal { get; set; }
public Centroid Centroid { get; set; }
public BoundingBox BoundingBox { get; set; }
public int AreaRank { get; set; }
public int PopRank { get; set; }
public string Uri { get; set; }
public string Lang { get; set; }
}
private const string JsonCentroid = @"{
""place"":{
""woeid"":12345,
""placeTypeName"":""State"",
""placeTypeName attrs"":{
""code"":8
},
""name"":""My Region"",
""country"":"""",
""country attrs"":{
""type"":""Country"",
""code"":""XX""
},
""admin1"":""My Region"",
""admin1 attrs"":{
""type"":""Region"",
""code"":""""
},
""admin2"":"""",
""admin3"":"""",
""locality1"":"""",
""locality2"":"""",
""postal"":"""",
""centroid"":{
""latitude"":30.12345,
""longitude"":40.761292
},
""boundingBox"":{
""southWest"":{
""latitude"":32.2799,
""longitude"":50.715958
},
""northEast"":{
""latitude"":29.024891,
""longitude"":12.1234
}
},
""areaRank"":10,
""popRank"":0,
""uri"":""http:\/\/where.yahooapis.com"",
""lang"":""en-US""
}
}";
[Test]
public void Can_Parse_Centroid_using_JsonObject()
{
Func<JsonObject, Centroid> toCentroid = map =>
new Centroid(map.Get<decimal>("latitude"), map.Get<decimal>("longitude"));
var place = JsonObject.Parse(JsonCentroid)
.Object("place")
.ConvertTo(x => new Place
{
WoeId = x.Get<int>("woeid"),
PlaceTypeName = x.Get(""),
PlaceTypeNameAttrs = x.Object("placeTypeName attrs"),
Name = x.Get("Name"),
Country = x.Get("Country"),
CountryAttrs = x.Object("country attrs"),
Admin1 = x.Get("admin1"),
Admin1Attrs = x.Object("admin1 attrs"),
Admin2 = x.Get("admin2"),
Admin3 = x.Get("admin3"),
Locality1 = x.Get("locality1"),
Locality2 = x.Get("locality2"),
Postal = x.Get("postal"),
Centroid = x.Object("centroid")
.ConvertTo(toCentroid),
BoundingBox = x.Object("boundingBox")
.ConvertTo(y => new BoundingBox
{
SouthWest = y.Object("southWest").ConvertTo(toCentroid),
NorthEast = y.Object("northEast").ConvertTo(toCentroid)
}),
AreaRank = x.Get<int>("areaRank"),
PopRank = x.Get<int>("popRank"),
Uri = x.Get("uri"),
Lang = x.Get("lang"),
});
Console.WriteLine(place.Dump());
/*Outputs:
{
WoeId: 12345,
PlaceTypeNameAttrs:
{
code: 8
},
CountryAttrs:
{
type: Country,
code: XX
},
Admin1: My Region,
Admin1Attrs:
{
type: Region,
code:
},
Admin2: ,
Admin3: ,
Locality1: ,
Locality2: ,
Postal: ,
Centroid:
{
LatLon: 30.12345;40.761292,
Latitude: 30.12345,
Longitude: 40.761292
},
BoundingBox:
{
SouthWest:
{
LatLon: 32.2799;50.715958,
Latitude: 32.2799,
Longitude: 50.715958
},
NorthEast:
{
LatLon: 29.024891;12.1234,
Latitude: 29.024891,
Longitude: 12.1234
}
},
AreaRank: 10,
PopRank: 0,
Uri: "http://where.yahooapis.com",
Lang: en-US
}
**/
}
}
}