-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathle_test.go
209 lines (195 loc) · 3.6 KB
/
le_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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
package connor_test
import (
"fmt"
"time"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
. "github.com/SierraSoftworks/connor"
)
var _ = Describe("$le", func() {
now := time.Now()
It("should be registered as an operator", func() {
Expect(Operators()).To(ContainElement("le"))
})
Describe("Basic Cases", func() {
cases := TestCases{
`{ "x": 1, "y": 2 }`: []TestCase{
{
"not match numbers which are greater",
`{ "x": { "$le": 0 } }`,
false,
false,
},
{
"match numbers which are equal",
`{ "x": { "$le": 1 } }`,
true,
false,
},
{
"match numbers which are less",
`{ "x": { "$le": 2 } }`,
true,
false,
},
{
"match numbers by up-casting them as necessary",
`{ "x": { "$le": 1.3 } }`,
true,
false,
},
},
`{ "a": { "x": 1 }, "y": 2 }`: []TestCase{
{
"match nested object properties",
`{ "a.x": { "$le": 2 } }`,
true,
false,
},
{
"not match nested object properties which are less",
`{ "a": { "$le": 0 } }`,
false,
false,
},
},
`{ "x": "5", "y": 2 }`: []TestCase{
{
"not match strings logically when they are lexicographically less",
`{ "x": { "$le": "3" } }`,
false,
false,
},
{
"not match across different value types",
`{ "x": { "$le": 10 } }`,
false,
false,
},
},
`{ "x": "b", "y": 2 }`: []TestCase{
{
"match strings which are lexicographically larger",
`{ "x": { "$le": "c" } }`,
true,
false,
},
{
"not match strings which are lexicographically smaller",
`{ "x": { "$le": "a" } }`,
false,
false,
},
},
}
cases.Generate(nil)
})
Describe("Different Types", func() {
cases := []struct {
con interface{}
data interface{}
match bool
hasErr bool
}{
{
"abc", "def",
false, false,
},
{
"abc", "abc",
true, false,
},
{
"abc", "aaa",
true, false,
},
{
"test", 1,
false, false,
},
{
int8(10), 10,
true, false,
},
{
int16(10), 10,
true, false,
},
{
int32(10), 10,
true, false,
},
{
int64(10), 10,
true, false,
},
{
int64(10), 12,
false, false,
},
{
float32(10), 9,
true, false,
},
{
int64(10), float32(10),
true, false,
},
{
int64(10), "test",
false, false,
},
{
now, now,
true, false,
},
{
now, now.Add(time.Second),
false, false,
},
{
now, now.Add(-time.Second),
true, false,
},
{
now, 10,
false, false,
},
{
[]int{10}, []int{12},
false, true,
},
}
for _, c := range cases {
conds := c.con
data := c.data
match := c.match
hasErr := c.hasErr
Describe(fmt.Sprintf("%T(%v) == %T(%v)", c.con, c.con, c.data, c.data), func() {
m, err := Match(map[string]interface{}{
"x": map[string]interface{}{"$le": conds},
}, map[string]interface{}{
"x": data,
})
if hasErr {
It("should return an error", func() {
Expect(err).ToNot(Succeed())
})
} else {
It("should not return an error", func() {
Expect(err).To(Succeed())
})
}
if match {
It("should match", func() {
Expect(m).To(BeTrue())
})
} else {
It("should not match", func() {
Expect(m).To(BeFalse())
})
}
})
}
})
})