-
Notifications
You must be signed in to change notification settings - Fork 58
/
feature_test.go
140 lines (111 loc) · 3.21 KB
/
feature_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
package geojson
import (
"bytes"
"encoding/json"
"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":{}`)) {
t.Errorf("json should set properties to empty object if there are none")
}
}
func TestFeatureMarshal(t *testing.T) {
f := NewFeature(NewPointGeometry([]float64{1, 2}))
blob, err := json.Marshal(f)
if err != nil {
t.Fatalf("should marshal to json just fine but got %v", err)
}
if !bytes.Contains(blob, []byte(`"properties":{}`)) {
t.Errorf("json should set properties to empty object if there are none")
}
}
func TestFeatureMarshalValue(t *testing.T) {
f := NewFeature(NewPointGeometry([]float64{1, 2}))
blob, err := json.Marshal(*f)
if err != nil {
t.Fatalf("should marshal to json just fine but got %v", err)
}
if !bytes.Contains(blob, []byte(`"properties":{}`)) {
t.Errorf("json should set properties to empty object if there are none")
}
}
func TestUnmarshalFeature(t *testing.T) {
rawJSON := `
{ "type": "Feature",
"bbox": [1, 2, 3, 4],
"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))
}
if len(f.BoundingBox) != 4 {
t.Errorf("should have unmarshalled bounding box")
}
}
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":{}}`)) {
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":{}}`)) {
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)
}
}