-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathFeatureTests.cs
More file actions
589 lines (474 loc) · 21 KB
/
FeatureTests.cs
File metadata and controls
589 lines (474 loc) · 21 KB
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
using GeoJSON.Text.Geometry;
using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
namespace GeoJSON.Text.Tests.Feature
{
[TestFixture]
public class FeatureTests : TestBase
{
[Test]
public void Can_Deserialize_Point_Feature()
{
var json = GetExpectedJson();
var feature = JsonSerializer.Deserialize<Text.Feature.Feature>(json);
Assert.IsNotNull(feature);
Assert.IsNotNull(feature.Properties);
Assert.IsTrue(feature.Properties.Any());
Assert.IsTrue(feature.Properties.ContainsKey("name"));
Assert.AreEqual(feature.Properties["name"].ToString(), "Dinagat Islands");
Assert.AreEqual("test-id", feature.Id);
Assert.AreEqual(GeoJSONObjectType.Point, feature.Geometry.Type);
}
[Test]
public void Can_Deserialize_Point_Feature_With_Numeric_Id()
{
var json = GetExpectedJson();
var feature = JsonSerializer.Deserialize<Text.Feature.Feature>(json);
Assert.IsNotNull(feature);
Assert.IsNotNull(feature.Properties);
Assert.IsTrue(feature.Properties.Any());
Assert.IsTrue(feature.Properties.ContainsKey("name"));
Assert.AreEqual(feature.Properties["name"].ToString(), "Dinagat Islands");
Assert.AreEqual(17, feature.Id);
Assert.AreEqual(GeoJSONObjectType.Point, feature.Geometry.Type);
}
[Test]
public void Can_Serialize_LineString_Feature()
{
var coordinates = new[]
{
new List<IPosition>
{
new Position(52.370725881211314, 4.889259338378906),
new Position(52.3711451105601, 4.895267486572266),
new Position(52.36931095278263, 4.892091751098633),
new Position(52.370725881211314, 4.889259338378906)
},
new List<IPosition>
{
new Position(52.370725881211314, 4.989259338378906),
new Position(52.3711451105601, 4.995267486572266),
new Position(52.36931095278263, 4.992091751098633),
new Position(52.370725881211314, 4.989259338378906)
}
};
var geometry = new LineString(coordinates[0]);
var actualJson = JsonSerializer.Serialize(new Text.Feature.Feature(geometry));
Console.WriteLine(actualJson);
var expectedJson = GetExpectedJson();
JsonAssert.AreEqual(expectedJson, actualJson);
}
[Test]
public void Can_Serialize_MultiLineString_Feature()
{
var geometry = new MultiLineString(new List<LineString>
{
new LineString(new List<IPosition>
{
new Position(52.370725881211314, 4.889259338378906),
new Position(52.3711451105601, 4.895267486572266),
new Position(52.36931095278263, 4.892091751098633),
new Position(52.370725881211314, 4.889259338378906)
}),
new LineString(new List<IPosition>
{
new Position(52.370725881211314, 4.989259338378906),
new Position(52.3711451105601, 4.995267486572266),
new Position(52.36931095278263, 4.992091751098633),
new Position(52.370725881211314, 4.989259338378906)
})
});
var expectedJson = GetExpectedJson();
var actualJson = JsonSerializer.Serialize(new Text.Feature.Feature(geometry));
JsonAssert.AreEqual(expectedJson, actualJson);
}
[Test]
public void Can_Serialize_Point_Feature()
{
var geometry = new Point(new Position(1, 2));
var expectedJson = GetExpectedJson();
var actualJson = JsonSerializer.Serialize(new Text.Feature.Feature(geometry));
JsonAssert.AreEqual(expectedJson, actualJson);
}
[Test]
public void Can_Serialize_Polygon_Feature()
{
var coordinates = new List<IPosition>
{
new Position(52.370725881211314, 4.889259338378906),
new Position(52.3711451105601, 4.895267486572266),
new Position(52.36931095278263, 4.892091751098633),
new Position(52.370725881211314, 4.889259338378906)
};
var polygon = new Polygon(new List<LineString> { new LineString(coordinates) });
var properties = new Dictionary<string, object> { { "Name", "Foo" } };
var feature = new Text.Feature.Feature(polygon, properties);
var expectedJson = GetExpectedJson();
var actualJson = JsonSerializer.Serialize(feature);
JsonAssert.AreEqual(expectedJson, actualJson);
}
[Test]
public void Can_Serialize_MultiPolygon_Feature()
{
var multiPolygon = new MultiPolygon(new List<Polygon>
{
new Polygon(new List<LineString>
{
new LineString(new List<IPosition>
{
new Position(0, 0),
new Position(0, 1),
new Position(1, 1),
new Position(1, 0),
new Position(0, 0)
})
}),
new Polygon(new List<LineString>
{
new LineString(new List<IPosition>
{
new Position(70, 70),
new Position(70, 71),
new Position(71, 71),
new Position(71, 70),
new Position(70, 70)
}),
new LineString(new List<IPosition>
{
new Position(80, 80),
new Position(80, 81),
new Position(81, 81),
new Position(81, 80),
new Position(80, 80)
})
})
});
var feature = new Text.Feature.Feature(multiPolygon);
var expectedJson = GetExpectedJson();
var actualJson = JsonSerializer.Serialize(feature);
JsonAssert.AreEqual(expectedJson, actualJson);
}
[Test]
public void Can_Serialize_Dictionary_Subclass()
{
var properties =
new TestFeaturePropertyDictionary()
{
BooleanProperty = true,
DoubleProperty = 1.2345d,
EnumProperty = TestFeatureEnum.Value1,
IntProperty = -1,
StringProperty = "Hello, GeoJSON !"
};
Text.Feature.Feature feature = new Text.Feature.Feature(new Point(new Position(10, 10)), properties);
var expectedJson = this.GetExpectedJson();
var actualJson = JsonSerializer.Serialize(feature);
Assert.False(string.IsNullOrEmpty(expectedJson));
JsonAssert.AreEqual(expectedJson, actualJson);
}
[Test]
public void Ctor_Can_Add_Properties_Using_Object()
{
var properties = new TestFeatureProperty
{
BooleanProperty = true,
DateTimeProperty = DateTime.Now,
DoubleProperty = 1.2345d,
EnumProperty = TestFeatureEnum.Value1,
IntProperty = -1,
StringProperty = "Hello, GeoJSON !"
};
Text.Feature.Feature feature = new Text.Feature.Feature(new Point(new Position(10, 10)), properties);
Assert.IsNotNull(feature.Properties);
Assert.IsTrue(feature.Properties.Count > 1);
Assert.AreEqual(feature.Properties.Count, 6);
}
[Test]
public void Ctor_Can_Add_Properties_Using_Object_Inheriting_Dictionary()
{
int expectedProperties = 6;
var properties = new TestFeaturePropertyDictionary()
{
BooleanProperty = true,
DateTimeProperty = DateTime.Now,
DoubleProperty = 1.2345d,
EnumProperty = TestFeatureEnum.Value1,
IntProperty = -1,
StringProperty = "Hello, GeoJSON !"
};
Text.Feature.Feature feature = new Text.Feature.Feature(new Point(new Position(10, 10)), properties);
Assert.IsNotNull(feature.Properties);
Assert.IsTrue(feature.Properties.Count > 1);
Assert.AreEqual(
feature.Properties.Count,
expectedProperties,
$"Expected: {expectedProperties} Actual: {feature.Properties.Count}");
}
[Test]
public void Ctor_Creates_Properties_Collection_When_Passed_Null_Proper_Object()
{
Text.Feature.Feature feature = new Text.Feature.Feature(new Point(new Position(10, 10)), (object)null);
Assert.IsNotNull(feature.Properties);
CollectionAssert.IsEmpty(feature.Properties);
}
[Test]
public void Feature_Equals_GetHashCode_Contract_Properties_Of_Objects()
{
// order of keys should not matter
var leftProp = new TestFeatureProperty
{
StringProperty = "Hello, GeoJSON !",
EnumProperty = TestFeatureEnum.Value1,
IntProperty = -1,
BooleanProperty = true,
DateTimeProperty = DateTime.Now,
DoubleProperty = 1.2345d
};
var left = new Text.Feature.Feature(new Point(new Position(10, 10)), leftProp);
var rightProp = new TestFeatureProperty
{
BooleanProperty = true,
DateTimeProperty = DateTime.Now,
DoubleProperty = 1.2345d,
EnumProperty = TestFeatureEnum.Value1,
IntProperty = -1,
StringProperty = "Hello, GeoJSON !"
};
var right = new Text.Feature.Feature(new Point(new Position(10, 10)), rightProp);
Assert_Are_Equal(left, right);
}
[Test]
public void Feature_Equals_GetHashCode_Contract_Dictionary()
{
var leftDictionary = GetPropertiesInRandomOrder();
var rightDictionary = GetPropertiesInRandomOrder();
var geometry10 = new Position(10, 10);
var geometry20 = new Position(20, 20);
var left = new Text.Feature.Feature(new Point(
geometry10),
leftDictionary,
"abc");
var right = new Text.Feature.Feature(new Point(
geometry20),
rightDictionary,
"abc");
Assert_Are_Not_Equal(left, right); // different geometries
left = new Text.Feature.Feature(new Point(
geometry10),
leftDictionary,
"abc");
right = new Text.Feature.Feature(new Point(
geometry10),
rightDictionary,
"abc"); // identical geometries, different ids and or properties or not compared
Assert_Are_Equal(left, right);
}
[Test]
public void Serialized_And_Deserialized_Feature_Equals_And_Share_HashCode()
{
var geometry = GetGeometry();
var leftFeature = new Text.Feature.Feature(geometry);
var leftJson = JsonSerializer.Serialize(leftFeature);
var left = JsonSerializer.Deserialize<Text.Feature.Feature>(leftJson);
var rightFeature = new Text.Feature.Feature(geometry);
var rightJson = JsonSerializer.Serialize(rightFeature);
var right = JsonSerializer.Deserialize<Text.Feature.Feature>(rightJson);
Assert_Are_Equal(left, right);
leftFeature = new Text.Feature.Feature(geometry, GetPropertiesInRandomOrder());
leftJson = JsonSerializer.Serialize(leftFeature);
left = JsonSerializer.Deserialize<Text.Feature.Feature>(leftJson);
rightFeature = new Text.Feature.Feature(geometry, GetPropertiesInRandomOrder());
rightJson = JsonSerializer.Serialize(rightFeature);
right = JsonSerializer.Deserialize<Text.Feature.Feature>(rightJson);
Assert_Are_Equal(left, right); // assert properties doesn't influence comparison and hashcode
leftFeature = new Text.Feature.Feature(geometry, null, "abc_abc");
leftJson = JsonSerializer.Serialize(leftFeature);
left = JsonSerializer.Deserialize<Text.Feature.Feature>(leftJson);
rightFeature = new Text.Feature.Feature(geometry, null, "xyz_XYZ");
rightJson = JsonSerializer.Serialize(rightFeature);
right = JsonSerializer.Deserialize<Text.Feature.Feature>(rightJson);
Assert_Are_Equal(left, right); // assert id's doesn't influence comparison and hashcode
leftFeature = new Text.Feature.Feature(geometry, GetPropertiesInRandomOrder(), "abc");
leftJson = JsonSerializer.Serialize(leftFeature);
left = JsonSerializer.Deserialize<Text.Feature.Feature>(leftJson);
rightFeature = new Text.Feature.Feature(geometry, GetPropertiesInRandomOrder(), "abc");
rightJson = JsonSerializer.Serialize(rightFeature);
right = JsonSerializer.Deserialize<Text.Feature.Feature>(rightJson);
Assert_Are_Equal(left, right); // assert id's + properties doesn't influence comparison and hashcode
}
[Test]
public void Serialized_And_Deserialized_Feature_With_Numeric_Id_Equals_And_Share_HashCode()
{
var geometry = GetGeometry();
var leftFeature = new Text.Feature.Feature(geometry, null, 42);
var leftJson = JsonSerializer.Serialize(leftFeature);
var left = JsonSerializer.Deserialize<Text.Feature.Feature>(leftJson);
var rightFeature = new Text.Feature.Feature(geometry, null, 42);
var rightJson = JsonSerializer.Serialize(rightFeature);
var right = JsonSerializer.Deserialize<Text.Feature.Feature>(rightJson);
Assert_Are_Equal(left, right); // assert id's doesn't influence comparison and hashcode
leftFeature = new Text.Feature.Feature(geometry, GetPropertiesInRandomOrder(), uint.MaxValue);
leftJson = JsonSerializer.Serialize(leftFeature);
left = JsonSerializer.Deserialize<Text.Feature.Feature>(leftJson);
rightFeature = new Text.Feature.Feature(geometry, GetPropertiesInRandomOrder(), uint.MaxValue);
rightJson = JsonSerializer.Serialize(rightFeature);
right = JsonSerializer.Deserialize<Text.Feature.Feature>(rightJson);
Assert_Are_Equal(left, right); // assert id's + properties doesn't influence comparison and hashcode
}
[Test]
public void Feature_Equals_Null_Issue94()
{
bool equal1 = true;
bool equal2 = true;
var feature = new Text.Feature.Feature(new Point(new Position(12, 123)));
Assert.DoesNotThrow(() =>
{
equal1 = feature.Equals(null);
equal2 = feature == null;
});
Assert.IsFalse(equal1);
Assert.IsFalse(equal2);
}
[Test]
public void Feature_Null_Instance_Equals_Null_Issue94()
{
var equal1 = true;
Text.Feature.Feature feature = null;
Assert.DoesNotThrow(() =>
{
equal1 = feature != null;
});
Assert.IsFalse(equal1);
}
[Test]
public void Feature_Equals_Itself_Issue94()
{
bool equal1 = false;
bool equal2 = false;
var feature = new Text.Feature.Feature(new Point(new Position(12, 123)));
Assert.DoesNotThrow(() =>
{
#pragma warning disable CS1718 // Comparison made to same variable
equal1 = feature == feature;
#pragma warning restore CS1718 // Comparison made to same variable
equal2 = feature.Equals(feature);
});
Assert.IsTrue(equal1);
Assert.IsTrue(equal2);
}
[Test]
public void Feature_Equals_Geometry_Null_Issue115()
{
bool equal1 = false;
bool equal2 = false;
var feature1 = new Text.Feature.Feature(null);
var feature2 = new Text.Feature.Feature(new Point(new Position(12, 123)));
Assert.DoesNotThrow(() =>
{
equal1 = feature1 == feature2;
equal2 = feature1.Equals(feature2);
});
Assert.IsFalse(equal1);
Assert.IsFalse(equal2);
}
[Test]
public void Feature_Equals_Other_Geometry_Null_Issue115()
{
bool equal1 = false;
bool equal2 = false;
var feature1 = new Text.Feature.Feature(new Point(new Position(12, 123)));
var feature2 = new Text.Feature.Feature(null);
Assert.DoesNotThrow(() =>
{
equal1 = feature1 == feature2;
equal2 = feature1.Equals(feature2);
});
Assert.IsFalse(equal1);
Assert.IsFalse(equal2);
}
[Test]
public void Feature_Equals_All_Geometry_Null_Issue115()
{
bool equal1 = false;
bool equal2 = false;
var feature1 = new Text.Feature.Feature(null);
var feature2 = new Text.Feature.Feature(null);
Assert.DoesNotThrow(() =>
{
equal1 = feature1 == feature2;
equal2 = feature1.Equals(feature2);
});
Assert.IsTrue(equal1);
Assert.IsTrue(equal2);
}
private static IGeometryObject GetGeometry()
{
var coordinates = new List<LineString>
{
new LineString(new List<IPosition>
{
new Position(52.370725881211314, 4.889259338378906),
new Position(52.3711451105601, 4.895267486572266),
new Position(52.36931095278263, 4.892091751098633),
new Position(52.370725881211314, 4.889259338378906)
}),
new LineString(new List<IPosition>
{
new Position(52.370725881211314, 4.989259338378906),
new Position(52.3711451105601, 4.995267486572266),
new Position(52.36931095278263, 4.992091751098633),
new Position(52.370725881211314, 4.989259338378906)
})
};
var multiLine = new MultiLineString(coordinates);
return multiLine;
}
public static IDictionary<string, object> GetPropertiesInRandomOrder()
{
var properties = new Dictionary<string, object>()
{
{ "DateTimeProperty", DateTime.Now },
{ "IntProperty", -1 },
{ "EnumProperty", TestFeatureEnum.Value1 },
{ "BooleanProperty", true },
{ "DoubleProperty", 1.2345d },
{ "StringProperty", "Hello, GeoJSON !" }
};
var randomlyOrdered = new Dictionary<string, object>();
var randomlyOrderedKeys = properties.Keys.Select(k => Guid.NewGuid() + k).OrderBy(k => k).ToList();
foreach (var key in randomlyOrderedKeys)
{
var theKey = key.Substring(36);
randomlyOrdered.Add(theKey, properties[theKey]);
}
return randomlyOrdered;
}
private void Assert_Are_Equal(Text.Feature.Feature left, Text.Feature.Feature right)
{
Assert.AreEqual(left, right);
Assert.IsTrue(left.Equals(right));
Assert.IsTrue(right.Equals(left));
Assert.IsTrue(left.Equals(left));
Assert.IsTrue(right.Equals(right));
Assert.IsTrue(left == right);
Assert.IsTrue(right == left);
Assert.IsFalse(left != right);
Assert.IsFalse(right != left);
Assert.AreEqual(left.GetHashCode(), right.GetHashCode());
}
private void Assert_Are_Not_Equal(Text.Feature.Feature left, Text.Feature.Feature right)
{
Assert.AreNotEqual(left, right);
Assert.IsFalse(left.Equals(right));
Assert.IsFalse(right.Equals(left));
Assert.IsFalse(left == right);
Assert.IsFalse(right == left);
Assert.IsTrue(left != right);
Assert.IsTrue(right != left);
Assert.AreNotEqual(left.GetHashCode(), right.GetHashCode());
}
}
}