-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgeo_test.go
101 lines (81 loc) · 1.85 KB
/
geo_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
/*
* Author Linvon
*/
package geohelper
import (
_ "embed"
"testing"
)
//go:embed testdata/China.json
var jsonChina []byte
//go:embed testdata/Peking.json
var jsonPeking []byte
func TestNewGeoMap(t *testing.T) {
_, err := NewGeoMap("testdata/China.json", "name")
if err != nil {
t.Fatal(err)
}
}
func TestNewGeoMaoFromBytes(t *testing.T) {
_, err := NewGeoMapFromBytes(jsonChina, "name")
if err != nil {
t.Fatal(err)
}
}
func TestNewGeoMapFormat(t *testing.T) {
ff := func(ks []string) string {
return ks[0] + "-" + ks[1]
}
_, err := NewGeoMapFormat("testdata/Peking.json", []string{"name", "level"}, ff)
if err != nil {
t.Fatal(err)
}
}
func TestNewGeoMapFormatFromBytes(t *testing.T) {
ff := func(ks []string) string {
return ks[0] + "-" + ks[1]
}
_, err := NewGeoMapFormatFromBytes(jsonPeking, []string{"name", "level"}, ff)
if err != nil {
t.Fatal(err)
}
}
func TestGeoMap_FindLoc(t *testing.T) {
m, err := NewGeoMap("testdata/China.json", "name")
if err != nil {
t.Fatal(err)
}
if m.FindLoc(39.905241, 116.397682) != "北京市" {
t.Error("loc not match")
}
if m.FindLoc(53.467057, 108.156513) != StrNotFound {
t.Error("loc not match")
}
}
func TestGeoMap_FindLocFormat(t *testing.T) {
ff := func(ks []string) string {
return ks[0] + "-" + ks[1]
}
m, err := NewGeoMapFormat("testdata/Peking.json", []string{"name", "level"}, ff)
if err != nil {
t.Fatal(err)
}
if m.FindLoc(39.905241, 116.397682) != "东城区-district" {
t.Error("loc not match")
}
if m.FindLoc(53.467057, 108.156513) != StrNotFound {
t.Error("loc not match")
}
}
func TestGeoMap_ContainLoc(t *testing.T) {
m, err := NewGeoMap("testdata/China.json", "name")
if err != nil {
t.Fatal(err)
}
if !m.ContainLoc(39.905241, 116.397682) {
t.Error("loc not match")
}
if m.ContainLoc(53.467057, 108.156513) {
t.Error("loc not match")
}
}