forked from paulmach/go.geojson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeature_test.go
48 lines (38 loc) · 1.06 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
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))
}
}