forked from matryer/m
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathget_test.go
87 lines (83 loc) · 1.88 KB
/
get_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
package m_test
import (
"testing"
"github.com/cheekybits/is"
"github.com/cheekybits/m"
)
var getTests = []struct {
M map[string]interface{}
K string
V interface{}
OK bool
}{
{
map[string]interface{}{"name": "Tylor"},
"name",
"Tylor",
true,
},
{
map[string]interface{}{"name": nil},
"name",
nil,
false,
},
{
map[string]interface{}{"address": map[string]interface{}{"city": "London"}},
"address.city",
"London",
true,
},
{
map[string]interface{}{
"address": map[string]interface{}{
"postcode": map[string]interface{}{
"inner": "NG19",
},
},
},
"address.postcode.inner",
"NG19",
true,
},
{
nil,
"address.postcode.inner",
nil,
false,
},
{
map[string]interface{}{"address": map[string]interface{}{"city": "London"}},
"address.country",
nil,
false,
}, {
map[string]interface{}{"places": []interface{}{map[string]interface{}{"city": "London"}, map[string]interface{}{"city": "San Francisco"}}},
"places",
[]interface{}{map[string]interface{}{"city": "London"}, map[string]interface{}{"city": "San Francisco"}},
true,
}, {
map[string]interface{}{"places": []interface{}{map[string]interface{}{"city": "London"}, map[string]interface{}{"city": "San Francisco"}}},
"places[0]",
map[string]interface{}{"city": "London"},
true,
}, {
map[string]interface{}{"places": []interface{}{map[string]interface{}{"city": "London"}, map[string]interface{}{"city": "San Francisco"}}},
"places[1]",
map[string]interface{}{"city": "San Francisco"},
true,
}, {
map[string]interface{}{"places": []interface{}{map[string]interface{}{"city": "London"}, map[string]interface{}{"city": "San Francisco"}}},
"places[1].city",
"San Francisco",
true,
},
}
func TestGet(t *testing.T) {
is := is.New(t)
for _, test := range getTests {
actual, ok := m.GetOK(test.M, test.K)
is.Equal(actual, test.V)
is.Equal(ok, test.OK)
}
}