forked from matryer/m
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathset_test.go
96 lines (92 loc) · 2.8 KB
/
set_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
package m_test
import (
"testing"
"github.com/cheekybits/is"
"github.com/cheekybits/m"
)
var setTests = []struct {
M map[string]interface{}
K string
V interface{}
X map[string]interface{}
OK bool
}{
{
map[string]interface{}{"name": "Tylor"},
"name",
"Ryon",
map[string]interface{}{"name": "Ryon"},
true,
},
{
map[string]interface{}{},
"name",
"added",
map[string]interface{}{"name": "added"},
true,
},
{
map[string]interface{}{"address": map[string]interface{}{"city": "London"}},
"address.city",
"San Francisco",
map[string]interface{}{"address": map[string]interface{}{"city": "San Francisco"}},
true,
},
{
nil,
"address.postcode.inner",
nil,
nil,
false,
},
{
map[string]interface{}{"address": map[string]interface{}{"city": "London"}},
"address.country",
"UK",
map[string]interface{}{"address": map[string]interface{}{"city": "London", "country": "UK"}},
true,
}, {
map[string]interface{}{"places": []interface{}{map[string]interface{}{"city": "London"}, map[string]interface{}{"city": "San Francisco"}}},
"places",
[]interface{}{map[string]interface{}{"city": "London Town"}, map[string]interface{}{"city": "San Francisco Town"}},
map[string]interface{}{"places": []interface{}{map[string]interface{}{"city": "London Town"}, map[string]interface{}{"city": "San Francisco Town"}}},
true,
}, {
map[string]interface{}{"places": []interface{}{map[string]interface{}{"city": "London"}, map[string]interface{}{"city": "San Francisco"}}},
"places[0]",
map[string]interface{}{"city": "Mansfield"},
map[string]interface{}{"places": []interface{}{map[string]interface{}{"city": "Mansfield"}, 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]",
map[string]interface{}{"city": "San Francisco Town"},
map[string]interface{}{"places": []interface{}{map[string]interface{}{"city": "London"}, map[string]interface{}{"city": "San Francisco Town"}}},
true,
}, {
map[string]interface{}{"places": []interface{}{map[string]interface{}{"city": "London"}, map[string]interface{}{"city": "San Francisco"}}},
"places[1].city",
"San Francisco Town",
map[string]interface{}{"places": []interface{}{map[string]interface{}{"city": "London"}, map[string]interface{}{"city": "San Francisco Town"}}},
true,
}, {
map[string]interface{}{},
"person.name",
"David",
map[string]interface{}{"person": map[string]interface{}{"name": "David"}},
true,
},
}
func TestSet(t *testing.T) {
is := is.New(t)
for _, test := range setTests {
//log.Println(test)
ok := m.SetOK(test.M, test.K, test.V)
if test.X == nil {
is.Nil(test.M)
} else {
is.Equal(test.M, test.X)
}
is.Equal(test.OK, ok)
}
}