-
Notifications
You must be signed in to change notification settings - Fork 52
/
cmp.go
350 lines (316 loc) · 7.6 KB
/
cmp.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
package yql
import (
"math"
"sort"
"strconv"
)
const (
opEqual = "="
opNotEqual = "!="
opLarger = ">"
opLargerEqual = ">="
opLess = "<"
opLessEqual = "<="
opInter = "∩"
opNotInter = "!∩"
opIn = "in"
opNotIn = "!in"
)
const (
epsilon = float64(1e-10)
)
func cmpInt(actual, expect int64, op string) bool {
switch op {
case opEqual, opIn:
return actual == expect
case opNotEqual, opNotIn:
return actual != expect
case opLarger:
return actual > expect
case opLargerEqual:
return actual >= expect
case opLess:
return actual < expect
case opLessEqual:
return actual <= expect
default:
return false
}
}
func cmpFloat(actual, expect float64, op string) bool {
switch op {
case opEqual:
return floatEqual(actual, expect)
case opNotEqual:
return !floatEqual(actual, expect)
case opLarger:
return actual > expect
case opLargerEqual:
return !(actual < expect)
case opLess:
return actual < expect
case opLessEqual:
return floatLessEqual(actual, expect)
default:
return false
}
}
func cmpStr(actual, expect string, op string) bool {
switch op {
case opEqual, opIn:
return actual == expect
case opNotEqual, opNotIn:
return actual != expect
case opLarger:
return actual > expect
case opLargerEqual:
return actual >= expect
case opLess:
return actual < expect
case opLessEqual:
return actual <= expect
default:
return false
}
}
func cmpBool(actual, expect bool, op string) bool {
switch op {
case opEqual:
return actual == expect
case opNotEqual:
return actual != expect
default:
return false
}
}
func shouldCompareSet(op string) bool {
switch op {
case opEqual, opNotEqual, opInter, opNotInter, opIn, opNotIn:
return true
default:
return false
}
}
func compareSet(actual interface{}, expect []string, op string) bool {
if !shouldCompareSet(op) {
return false
}
switch actualArr := actual.(type) {
case int:
return cmpIntSet([]int64{int64(actualArr)}, expect, op)
case int64:
return cmpIntSet([]int64{actualArr}, expect, op)
case float64:
return cmpFloatSet([]float64{actualArr}, expect, op)
case string:
return cmpStringSet([]string{actualArr}, expect, op)
case []int:
return cmpIntSet(intArr2i64Arr(actualArr), expect, op)
case []int64:
return cmpIntSet(actualArr, expect, op)
case []float64:
return cmpFloatSet(actualArr, expect, op)
case []string:
return cmpStringSet(actualArr, expect, op)
default:
return false
}
}
func intArr2i64Arr(arr []int) []int64 {
length := len(arr)
if length == 0 {
return nil
}
res := make([]int64, 0, length)
for _, v := range arr {
res = append(res, int64(v))
}
return res
}
var intSetCmpFunc = map[string]func([]int64, []int64) bool{
opInter: intSetInter,
opNotInter: intSetNotInter,
opIn: intSetBelong,
opNotIn: intSetNotBelong,
}
func cmpIntSet(actualVals []int64, expectVals []string, op string) bool {
expectArr := make([]int64, 0, len(expectVals))
for _, expect := range expectVals {
v, err := strconv.ParseInt(removeQuote(expect), 10, 64)
if nil != err {
return false
}
expectArr = append(expectArr, v)
}
cmp, ok := intSetCmpFunc[op]
if ok {
return cmp(actualVals, expectArr)
}
return false
}
var floatSetCmpFunc = map[string]func([]float64, []float64) bool{
opInter: floatSetInter,
opNotInter: floatSetNotInter,
opIn: floatSetBelong,
opNotIn: floatSetNotBelong,
}
func cmpFloatSet(actualVals []float64, expectVals []string, op string) bool {
expectArr := make([]float64, 0, len(expectVals))
for _, expect := range expectVals {
v, err := strconv.ParseFloat(removeQuote(expect), 64)
if nil != err {
return false
}
expectArr = append(expectArr, v)
}
cmp, ok := floatSetCmpFunc[op]
if ok {
return cmp(actualVals, expectArr)
}
return false
}
var stringSetCmpFunc = map[string]func([]string, []string) bool{
opInter: strSetInter,
opNotInter: strSetNotInter,
opIn: strSetBelong,
opNotIn: strSetNotBelong,
}
func cmpStringSet(actual []string, expect []string, op string) bool {
cmp, ok := stringSetCmpFunc[op]
if !ok {
return false
}
expectVals := make([]string, 0, len(expect))
for _, v := range expect {
expectVals = append(expectVals, removeQuote(v))
}
return cmp(actual, expectVals)
}
func intSetBelong(actualVals []int64, expectVals []int64) bool {
length := len(expectVals)
if len(actualVals) == 0 || len(actualVals) > length {
return false
}
expectArr := i64Arr(expectVals)
sort.Sort(expectArr)
for _, actual := range actualVals {
t := sort.Search(length, func(i int) bool {
return actual <= expectArr[i]
})
if t >= length || actual != expectArr[t] {
return false
}
}
return true
}
func intSetNotBelong(actualVals []int64, expectVals []int64) bool {
return !intSetBelong(actualVals, expectVals)
}
func intSetInter(actualVals []int64, expectVals []int64) bool {
length := len(expectVals)
if len(actualVals) == 0 || length == 0 {
return false
}
expectArr := i64Arr(expectVals)
sort.Sort(expectArr)
for _, actual := range actualVals {
t := sort.Search(length, func(i int) bool {
return actual <= expectArr[i]
})
if t < length && actual == expectArr[t] {
return true
}
}
return false
}
func intSetNotInter(actualVals []int64, expectVals []int64) bool {
return !intSetInter(actualVals, expectVals)
}
type i64Arr []int64
func (arr i64Arr) Len() int {
return len(arr)
}
func (arr i64Arr) Less(i, j int) bool {
return arr[i] < arr[j]
}
func (arr i64Arr) Swap(i, j int) {
arr[i], arr[j] = arr[j], arr[i]
}
func floatSetBelong(actualVals []float64, expectVals []float64) bool {
length := len(expectVals)
if len(actualVals) == 0 || len(actualVals) > length {
return false
}
sort.Float64s(expectVals)
for _, actual := range actualVals {
t := sort.Search(length, func(i int) bool {
return floatLessEqual(actual, expectVals[i])
})
if t >= length || !floatEqual(actual, expectVals[t]) {
return false
}
}
return true
}
func floatSetNotBelong(actualVals []float64, expectVals []float64) bool {
return !floatSetBelong(actualVals, expectVals)
}
func floatSetInter(actualVals []float64, expectVals []float64) bool {
length := len(expectVals)
if len(actualVals) == 0 || length == 0 {
return false
}
sort.Float64s(expectVals)
for _, actual := range actualVals {
t := sort.Search(length, func(i int) bool {
return floatLessEqual(actual, expectVals[i])
})
if t < length && floatEqual(actual, expectVals[t]) {
return true
}
}
return false
}
func floatSetNotInter(actualVals []float64, expectVals []float64) bool {
return !floatSetInter(actualVals, expectVals)
}
func strSetBelong(actualVals []string, expectVals []string) bool {
length := len(expectVals)
if len(actualVals) == 0 || len(actualVals) > length {
return false
}
sort.Strings(expectVals)
for _, actual := range actualVals {
t := sort.SearchStrings(expectVals, actual)
if t >= length || actual != expectVals[t] {
return false
}
}
return true
}
func strSetNotBelong(actualVals []string, expectVals []string) bool {
return !strSetBelong(actualVals, expectVals)
}
func strSetInter(actualVals []string, expectVals []string) bool {
length := len(expectVals)
if len(actualVals) == 0 || length == 0 {
return false
}
sort.Strings(expectVals)
for _, actual := range actualVals {
t := sort.SearchStrings(expectVals, actual)
if t < length && actual == expectVals[t] {
return true
}
}
return false
}
func strSetNotInter(actualVals []string, expectVals []string) bool {
return !strSetInter(actualVals, expectVals)
}
func floatEqual(a, b float64) bool {
return math.Abs(a-b) < epsilon
}
func floatLessEqual(a, b float64) bool {
return a < b || floatEqual(a, b)
}