-
Notifications
You must be signed in to change notification settings - Fork 68
/
reader_test.go
527 lines (486 loc) · 11.1 KB
/
reader_test.go
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
package shp
import (
"bytes"
"io"
"io/ioutil"
"testing"
)
func pointsEqual(a, b []float64) bool {
if len(a) != len(b) {
return false
}
for k, v := range a {
if v != b[k] {
return false
}
}
return true
}
func getShapesFromFile(prefix string, t *testing.T) (shapes []Shape) {
filename := prefix + ".shp"
file, err := Open(filename)
if err != nil {
t.Fatal("Failed to open shapefile: " + filename + " (" + err.Error() + ")")
}
defer file.Close()
for file.Next() {
_, shape := file.Shape()
shapes = append(shapes, shape)
}
if file.Err() != nil {
t.Errorf("Error while getting shapes for %s: %v", prefix, file.Err())
}
return shapes
}
type shapeGetterFunc func(string, *testing.T) []Shape
type identityTestFunc func(*testing.T, [][]float64, []Shape)
func testPoint(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*Point)
if !ok {
t.Fatal("Failed to type assert.")
}
if !pointsEqual([]float64{p.X, p.Y}, points[n]) {
t.Error("Points did not match.")
}
}
}
func testPolyLine(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*PolyLine)
if !ok {
t.Fatal("Failed to type assert.")
}
for k, point := range p.Points {
if !pointsEqual(points[n*3+k], []float64{point.X, point.Y}) {
t.Error("Points did not match.")
}
}
}
}
func testPolygon(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*Polygon)
if !ok {
t.Fatal("Failed to type assert.")
}
for k, point := range p.Points {
if !pointsEqual(points[n*3+k], []float64{point.X, point.Y}) {
t.Error("Points did not match.")
}
}
}
}
func testMultiPoint(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*MultiPoint)
if !ok {
t.Fatal("Failed to type assert.")
}
for k, point := range p.Points {
if !pointsEqual(points[n*3+k], []float64{point.X, point.Y}) {
t.Error("Points did not match.")
}
}
}
}
func testPointZ(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*PointZ)
if !ok {
t.Fatal("Failed to type assert.")
}
if !pointsEqual([]float64{p.X, p.Y, p.Z}, points[n]) {
t.Error("Points did not match.")
}
}
}
func testPolyLineZ(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*PolyLineZ)
if !ok {
t.Fatal("Failed to type assert.")
}
for k, point := range p.Points {
if !pointsEqual(points[n*3+k], []float64{point.X, point.Y, p.ZArray[k]}) {
t.Error("Points did not match.")
}
}
}
}
func testPolygonZ(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*PolygonZ)
if !ok {
t.Fatal("Failed to type assert.")
}
for k, point := range p.Points {
if !pointsEqual(points[n*3+k], []float64{point.X, point.Y, p.ZArray[k]}) {
t.Error("Points did not match.")
}
}
}
}
func testMultiPointZ(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*MultiPointZ)
if !ok {
t.Fatal("Failed to type assert.")
}
for k, point := range p.Points {
if !pointsEqual(points[n*3+k], []float64{point.X, point.Y, p.ZArray[k]}) {
t.Error("Points did not match.")
}
}
}
}
func testPointM(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*PointM)
if !ok {
t.Fatal("Failed to type assert.")
}
if !pointsEqual([]float64{p.X, p.Y, p.M}, points[n]) {
t.Error("Points did not match.")
}
}
}
func testPolyLineM(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*PolyLineM)
if !ok {
t.Fatal("Failed to type assert.")
}
for k, point := range p.Points {
if !pointsEqual(points[n*3+k], []float64{point.X, point.Y, p.MArray[k]}) {
t.Error("Points did not match.")
}
}
}
}
func testPolygonM(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*PolygonM)
if !ok {
t.Fatal("Failed to type assert.")
}
for k, point := range p.Points {
if !pointsEqual(points[n*3+k], []float64{point.X, point.Y, p.MArray[k]}) {
t.Error("Points did not match.")
}
}
}
}
func testMultiPointM(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*MultiPointM)
if !ok {
t.Fatal("Failed to type assert.")
}
for k, point := range p.Points {
if !pointsEqual(points[n*3+k], []float64{point.X, point.Y, p.MArray[k]}) {
t.Error("Points did not match.")
}
}
}
}
func testMultiPatch(t *testing.T, points [][]float64, shapes []Shape) {
for n, s := range shapes {
p, ok := s.(*MultiPatch)
if !ok {
t.Fatal("Failed to type assert.")
}
for k, point := range p.Points {
if !pointsEqual(points[n*3+k], []float64{point.X, point.Y, p.ZArray[k]}) {
t.Error("Points did not match.")
}
}
}
}
func testshapeIdentity(t *testing.T, prefix string, getter shapeGetterFunc) {
shapes := getter(prefix, t)
d := dataForReadTests[prefix]
if len(shapes) != d.count {
t.Errorf("Number of shapes for %s read was wrong. Wanted %d, got %d.", prefix, d.count, len(shapes))
}
d.tester(t, d.points, shapes)
}
func TestReadBBox(t *testing.T) {
tests := []struct {
filename string
want Box
}{
{"test_files/multipatch.shp", Box{0, 0, 10, 10}},
{"test_files/multipoint.shp", Box{0, 5, 10, 10}},
{"test_files/multipointm.shp", Box{0, 5, 10, 10}},
{"test_files/multipointz.shp", Box{0, 5, 10, 10}},
{"test_files/point.shp", Box{0, 5, 10, 10}},
{"test_files/pointm.shp", Box{0, 5, 10, 10}},
{"test_files/pointz.shp", Box{0, 5, 10, 10}},
{"test_files/polygon.shp", Box{0, 0, 5, 5}},
{"test_files/polygonm.shp", Box{0, 0, 5, 5}},
{"test_files/polygonz.shp", Box{0, 0, 5, 5}},
{"test_files/polyline.shp", Box{0, 0, 25, 25}},
{"test_files/polylinem.shp", Box{0, 0, 25, 25}},
{"test_files/polylinez.shp", Box{0, 0, 25, 25}},
}
for _, tt := range tests {
r, err := Open(tt.filename)
if err != nil {
t.Fatalf("%v", err)
}
if got := r.BBox().MinX; got != tt.want.MinX {
t.Errorf("got MinX = %v, want %v", got, tt.want.MinX)
}
if got := r.BBox().MinY; got != tt.want.MinY {
t.Errorf("got MinY = %v, want %v", got, tt.want.MinY)
}
if got := r.BBox().MaxX; got != tt.want.MaxX {
t.Errorf("got MaxX = %v, want %v", got, tt.want.MaxX)
}
if got := r.BBox().MaxY; got != tt.want.MaxY {
t.Errorf("got MaxY = %v, want %v", got, tt.want.MaxY)
}
}
}
type testCaseData struct {
points [][]float64
tester identityTestFunc
count int
}
var dataForReadTests = map[string]testCaseData{
"test_files/polygonm": {
points: [][]float64{
{0, 0, 0},
{0, 5, 5},
{5, 5, 10},
{5, 0, 15},
{0, 0, 0},
},
tester: testPolygonM,
count: 1,
},
"test_files/multipointm": {
points: [][]float64{
{10, 10, 100},
{5, 5, 50},
{0, 10, 75},
},
tester: testMultiPointM,
count: 1,
},
"test_files/multipatch": {
points: [][]float64{
{0, 0, 0},
{10, 0, 0},
{10, 10, 0},
{0, 10, 0},
{0, 0, 0},
{0, 10, 0},
{0, 10, 10},
{0, 0, 10},
{0, 0, 0},
{0, 10, 0},
{10, 0, 0},
{10, 0, 10},
{10, 10, 10},
{10, 10, 0},
{10, 0, 0},
{0, 0, 0},
{0, 0, 10},
{10, 0, 10},
{10, 0, 0},
{0, 0, 0},
{10, 10, 0},
{10, 10, 10},
{0, 10, 10},
{0, 10, 0},
{10, 10, 0},
{0, 0, 10},
{0, 10, 10},
{10, 10, 10},
{10, 0, 10},
{0, 0, 10},
},
tester: testMultiPatch,
count: 1,
},
"test_files/point": {
points: [][]float64{
{10, 10},
{5, 5},
{0, 10},
},
tester: testPoint,
count: 3,
},
"test_files/polyline": {
points: [][]float64{
{0, 0},
{5, 5},
{10, 10},
{15, 15},
{20, 20},
{25, 25},
},
tester: testPolyLine,
count: 2,
},
"test_files/polygon": {
points: [][]float64{
{0, 0},
{0, 5},
{5, 5},
{5, 0},
{0, 0},
},
tester: testPolygon,
count: 1,
},
"test_files/multipoint": {
points: [][]float64{
{10, 10},
{5, 5},
{0, 10},
},
tester: testMultiPoint,
count: 1,
},
"test_files/pointz": {
points: [][]float64{
{10, 10, 100},
{5, 5, 50},
{0, 10, 75},
},
tester: testPointZ,
count: 3,
},
"test_files/polylinez": {
points: [][]float64{
{0, 0, 0},
{5, 5, 5},
{10, 10, 10},
{15, 15, 15},
{20, 20, 20},
{25, 25, 25},
},
tester: testPolyLineZ,
count: 2,
},
"test_files/polygonz": {
points: [][]float64{
{0, 0, 0},
{0, 5, 5},
{5, 5, 10},
{5, 0, 15},
{0, 0, 0},
},
tester: testPolygonZ,
count: 1,
},
"test_files/multipointz": {
points: [][]float64{
{10, 10, 100},
{5, 5, 50},
{0, 10, 75},
},
tester: testMultiPointZ,
count: 1,
},
"test_files/pointm": {
points: [][]float64{
{10, 10, 100},
{5, 5, 50},
{0, 10, 75},
},
tester: testPointM,
count: 3,
},
"test_files/polylinem": {
points: [][]float64{
{0, 0, 0},
{5, 5, 5},
{10, 10, 10},
{15, 15, 15},
{20, 20, 20},
{25, 25, 25},
},
tester: testPolyLineM,
count: 2,
},
}
func TestReadPoint(t *testing.T) {
testshapeIdentity(t, "test_files/point", getShapesFromFile)
}
func TestReadPolyLine(t *testing.T) {
testshapeIdentity(t, "test_files/polyline", getShapesFromFile)
}
func TestReadPolygon(t *testing.T) {
testshapeIdentity(t, "test_files/polygon", getShapesFromFile)
}
func TestReadMultiPoint(t *testing.T) {
testshapeIdentity(t, "test_files/multipoint", getShapesFromFile)
}
func TestReadPointZ(t *testing.T) {
testshapeIdentity(t, "test_files/pointz", getShapesFromFile)
}
func TestReadPolyLineZ(t *testing.T) {
testshapeIdentity(t, "test_files/polylinez", getShapesFromFile)
}
func TestReadPolygonZ(t *testing.T) {
testshapeIdentity(t, "test_files/polygonz", getShapesFromFile)
}
func TestReadMultiPointZ(t *testing.T) {
testshapeIdentity(t, "test_files/multipointz", getShapesFromFile)
}
func TestReadPointM(t *testing.T) {
testshapeIdentity(t, "test_files/pointm", getShapesFromFile)
}
func TestReadPolyLineM(t *testing.T) {
testshapeIdentity(t, "test_files/polylinem", getShapesFromFile)
}
func TestReadPolygonM(t *testing.T) {
testshapeIdentity(t, "test_files/polygonm", getShapesFromFile)
}
func TestReadMultiPointM(t *testing.T) {
testshapeIdentity(t, "test_files/multipointm", getShapesFromFile)
}
func TestReadMultiPatch(t *testing.T) {
testshapeIdentity(t, "test_files/multipatch", getShapesFromFile)
}
func newReadSeekCloser(b []byte) readSeekCloser {
return struct {
io.Closer
io.ReadSeeker
}{
ioutil.NopCloser(nil),
bytes.NewReader(b),
}
}
func TestReadInvalidShapeType(t *testing.T) {
record := []byte{
0, 0, 0, 0,
0, 0, 0, 0,
255, 255, 255, 255, // shape type
}
tests := []struct {
r interface {
Next() bool
Err() error
}
name string
}{
{&Reader{shp: newReadSeekCloser(record), filelength: int64(len(record))}, "reader"},
{&seqReader{shp: newReadSeekCloser(record), filelength: int64(len(record))}, "seqReader"},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
if test.r.Next() {
t.Fatal("read unsupported shape type without stopping")
}
if test.r.Err() == nil {
t.Fatal("read unsupported shape type without error")
}
})
}
}