forked from paulmach/go.geojson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeature_test.go
More file actions
108 lines (86 loc) · 2.4 KB
/
feature_test.go
File metadata and controls
108 lines (86 loc) · 2.4 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
package geojson
import (
"bytes"
"testing"
)
func TestNewFeature(t *testing.T) {
f := NewFeature(NewPointGeometry([]float64{1, 2}))
if f.Type != "Feature" {
t.Errorf("should have type of Feature, got %v", f.Type)
}
}
func TestFeatureMarshalJSON(t *testing.T) {
f := NewFeature(NewPointGeometry([]float64{1, 2}))
blob, err := f.MarshalJSON()
if err != nil {
t.Fatalf("should marshal to json just fine but got %v", err)
}
if !bytes.Contains(blob, []byte(`"properties":null`)) {
t.Errorf("json should set properties to null if there are none")
}
}
func TestUnmarshalFeature(t *testing.T) {
rawJSON := `
{ "type": "Feature",
"geometry": {"type": "Point", "coordinates": [102.0, 0.5]},
"properties": {"prop0": "value0"}
}`
f, err := UnmarshalFeature([]byte(rawJSON))
if err != nil {
t.Fatalf("should unmarshal feature without issue, err %v", err)
}
if f.Type != "Feature" {
t.Errorf("should have type of Feature, got %v", f.Type)
}
if len(f.Properties) != 1 {
t.Errorf("should have 1 property but got %d", len(f.Properties))
}
}
func TestMarshalFeatureID(t *testing.T) {
f := &Feature{
ID: "asdf",
}
data, err := f.MarshalJSON()
if err != nil {
t.Fatalf("should marshal, %v", err)
}
if !bytes.Equal(data, []byte(`{"id":"asdf","type":"Feature","geometry":null,"properties":null}`)) {
t.Errorf("data not correct")
t.Logf("%v", string(data))
}
f.ID = 123
data, err = f.MarshalJSON()
if err != nil {
t.Fatalf("should marshal, %v", err)
}
if !bytes.Equal(data, []byte(`{"id":123,"type":"Feature","geometry":null,"properties":null}`)) {
t.Errorf("data not correct")
t.Logf("%v", string(data))
}
}
func TestUnmarshalFeatureID(t *testing.T) {
rawJSON := `
{ "type": "Feature",
"id": 123,
"geometry": {"type": "Point", "coordinates": [102.0, 0.5]}
}`
f, err := UnmarshalFeature([]byte(rawJSON))
if err != nil {
t.Fatalf("should unmarshal feature without issue, err %v", err)
}
if v, ok := f.ID.(float64); !ok || v != 123 {
t.Errorf("should parse id as number, got %T %f", f.ID, v)
}
rawJSON = `
{ "type": "Feature",
"id": "abcd",
"geometry": {"type": "Point", "coordinates": [102.0, 0.5]}
}`
f, err = UnmarshalFeature([]byte(rawJSON))
if err != nil {
t.Fatalf("should unmarshal feature without issue, err %v", err)
}
if v, ok := f.ID.(string); !ok || v != "abcd" {
t.Errorf("should parse id as string, got %T %s", f.ID, v)
}
}