-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck.go
435 lines (385 loc) · 10.5 KB
/
check.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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
package subtest
import (
"encoding/json"
"errors"
"fmt"
"io"
"reflect"
"regexp"
"time"
)
// Check describes the interface for a check.
type Check interface {
Check(vf ValueFunc) error
}
// CheckFunc is a function that return an error on failure.
type CheckFunc func(got interface{}) error
// Check runs the check function against a value function.
func (f CheckFunc) Check(vf ValueFunc) error {
return check(vf, f)
}
func check(vf ValueFunc, cf CheckFunc) error {
if vf == nil {
return FailGot("missing value function", vf)
}
got, err := vf()
if err != nil {
return fmt.Errorf("value function: %w", err)
}
return cf(got)
}
// Any returns a no-operation check function that never fails.
func Any() CheckFunc {
return func(got interface{}) error { return nil }
}
// AllOf is a Check type that fails if any of it's members fails.
type AllOf []Check
// Check runs all member checks and returns an aggregated error of at least one
// check fails.
func (cs AllOf) Check(vf ValueFunc) error {
var errs Errors
for _, c := range cs {
err := c.Check(vf)
if err != nil {
errs = append(errs, err)
}
}
if len(errs) > 0 {
return errs
}
return nil
}
// LessThan returns a check function that fails when the test value is not a
// numeric value less than expect.
func LessThan(expect float64) CheckFunc {
return func(got interface{}) error {
f, ok := asFloat64(got)
if !ok {
return FailGot(msgNotFloat64, got)
}
if !(f < expect) {
msg := fmt.Sprintf("%s %f", msgLessThan, expect)
return FailGot(msg, got)
}
return nil
}
}
// LessThanOrEqual returns a check function that fails when the test value is
// not a numeric value less than or equal to expect.
func LessThanOrEqual(expect float64) CheckFunc {
return func(got interface{}) error {
f, ok := asFloat64(got)
if !ok {
return FailGot(msgNotFloat64, got)
}
if !(f <= expect) {
msg := fmt.Sprintf("%s %f", msgLessThanOrEqual, expect)
return FailGot(msg, got)
}
return nil
}
}
// GreaterThan returns a check function that fails when the test value is not a
// numeric value greater than expect.
func GreaterThan(expect float64) CheckFunc {
return func(got interface{}) error {
f, ok := asFloat64(got)
if !ok {
return FailGot(msgNotFloat64, got)
}
if !(f > expect) {
msg := fmt.Sprintf("%s %f", msgGreaterThan, expect)
return FailGot(msg, got)
}
return nil
}
}
// GreaterThanOrEqual returns a check function that fails when the test value is
// not a numeric value greater than or equal to expect.
func GreaterThanOrEqual(expect float64) CheckFunc {
return func(got interface{}) error {
f, ok := asFloat64(got)
if !ok {
return FailGot(msgNotFloat64, got)
}
if !(f >= expect) {
msg := fmt.Sprintf("%s %f", msgGreaterThanOrEqual, expect)
return FailGot(msg, got)
}
return nil
}
}
// NotNumericEqual returns a check function that fails when the test value is
// a numeric value equal to expect.
func NotNumericEqual(expect float64) CheckFunc {
return func(got interface{}) error {
f, ok := asFloat64(got)
if !ok {
return FailGot(msgNotFloat64, got)
}
if f == expect {
return FailReject(msgNotNumericEqual, got, expect)
}
return nil
}
}
// NumericEqual returns a check function that fails when the test value is
// not a numeric value equal to expect.
func NumericEqual(expect float64) CheckFunc {
return func(got interface{}) error {
f, ok := asFloat64(got)
if !ok {
return FailGot(msgNotFloat64, got)
}
if f != expect {
return FailExpect(msgNumericEqual, got, expect)
}
return nil
}
}
// NotBefore returns a check function that fails when the test value is before
// expect. Accepts type time.Time and *time.Time.
func NotBefore(expect time.Time) CheckFunc {
return func(got interface{}) error {
t, ok := asTime(got)
if !ok {
return FailGot(msgNotTimeType, got)
}
if t.Before(expect) {
msg := fmt.Sprintf("%s %v", msgNotBefore, expect)
return FailGot(msg, got)
}
return nil
}
}
// Before returns a check function that fails when the test value is not before
// expect. Accepts type time.Time and *time.Time.
func Before(expect time.Time) CheckFunc {
return func(got interface{}) error {
t, ok := asTime(got)
if !ok {
return FailGot(msgNotTimeType, got)
}
if !t.Before(expect) {
msg := fmt.Sprintf("%s %v", msgBefore, expect)
return FailGot(msg, got)
}
return nil
}
}
// NotTimeEqual returns a check function that fails when the test value is a
// time semantically equal to expect. Accepts type time.Time and *time.Time.
func NotTimeEqual(expect time.Time) CheckFunc {
return func(got interface{}) error {
t, ok := asTime(got)
if !ok {
return FailGot(msgNotTimeType, got)
}
if t.Equal(expect) {
return FailReject(msgNotTimeEqual, got, expect)
}
return nil
}
}
// TimeEqual returns a check function that fails when the test value is not a
// time semantically equal to expect. Accepts type time.Time and *time.Time.
func TimeEqual(expect time.Time) CheckFunc {
return func(got interface{}) error {
t, ok := asTime(got)
if !ok {
return FailGot(msgNotTimeType, got)
}
if !t.Equal(expect) {
return FailExpect(msgTimeEqual, got, expect)
}
return nil
}
}
func asTime(got interface{}) (time.Time, bool) {
switch gt := got.(type) {
case time.Time:
return gt, true
case *time.Time:
if gt != nil {
return *gt, true
}
}
return time.Time{}, false
}
// NotDeepEqual returns a check function that fails when the test value deep
// equals to reject.
func NotDeepEqual(reject interface{}) CheckFunc {
return func(got interface{}) error {
if reflect.DeepEqual(reject, got) {
return FailReject(msgNotDeepEqual, got, reject)
}
return nil
}
}
// DeepEqual returns a check function that fails when the test value does not
// deep equals to expect.
func DeepEqual(expect interface{}) CheckFunc {
return func(got interface{}) error {
if !reflect.DeepEqual(expect, got) {
return FailExpect(msgDeepEqual, got, expect)
}
return nil
}
}
// NotCompareEqual returns a check function that fails when the test value
// compare equals to reject.
func NotCompareEqual(reject interface{}) CheckFunc {
return func(got interface{}) error {
if reject == got {
return FailReject(msgNotCompareEqual, got, reject)
}
return nil
}
}
// CompareEqual returns a check function that fails when the test value does not
// compare equals to expect.
func CompareEqual(expect interface{}) CheckFunc {
return func(got interface{}) error {
if expect != got {
return FailExpect(msgCompareEqual, got, expect)
}
return nil
}
}
// NotReflectNil returns a check function that fails when the test value is
// either an untyped nil value or reflects to a pointer with a nil value.
func NotReflectNil() CheckFunc {
return func(got interface{}) error {
rv := reflect.ValueOf(got)
if got == nil || (rv.Kind() == reflect.Ptr && rv.IsNil()) {
return FailGot(msgNotReflectNil, got)
}
return nil
}
}
// ReflectNil returns a check function that fails when the test value is
// neither an untyped nil value nor reflects to a pointer with a nil value.
func ReflectNil() CheckFunc {
return func(got interface{}) error {
rv := reflect.ValueOf(got)
if got != nil && !(rv.Kind() == reflect.Ptr && rv.IsNil()) {
return FailGot(msgReflectNil, got)
}
return nil
}
}
// MatchRegexp returns a check function that fails if the test value does not
// match r. Allowed test value types are string, []byte, json.RawMessage,
// io.RuneReader and error.
func MatchRegexp(r *regexp.Regexp) CheckFunc {
return func(got interface{}) error {
var match bool
switch gt := got.(type) {
case string:
match = r.MatchString(gt)
case []byte:
match = r.Match(gt)
case json.RawMessage:
match = r.Match([]byte(gt))
case io.RuneReader:
match = r.MatchReader(gt)
case error:
match = gt != nil && r.MatchString(gt.Error())
default:
return FailGot(msgNotRegexpType, got)
}
if !match {
return FailExpect(msgMatchRegexp, got, r)
}
return nil
}
}
// MatchPattern is a short-hand for MatchRegexp(regexp.MustCompile(pattern)).
func MatchPattern(pattern string) CheckFunc {
return MatchRegexp(regexp.MustCompile(pattern))
}
// NoError returns a check function that fails when the test value is a non-nill
// error, or if it's not an error type.
func NoError() CheckFunc {
return func(got interface{}) error {
err, ok := got.(error)
if !ok && got != nil { // nil never converts to an error interface.
return FailGot(msgNotErrorType, got)
}
if ok && err != nil {
return FailGot(msgNoError, err)
}
return nil
}
}
// Error returns a check function that fails if the test value is nil or not an
// error type.
func Error() CheckFunc {
return func(got interface{}) error {
err, ok := got.(error)
if !ok && got != nil { // nil never converts to an error interface.
return FailGot(msgNotErrorType, got)
}
if err == nil {
return FailGot(msgError, err)
}
return nil
}
}
// ErrorIsNot returns a check function that fails if the test value is an error
// matching target, or not an error type.
func ErrorIsNot(target error) CheckFunc {
return func(got interface{}) error {
err, ok := got.(error)
if !ok && got != nil {
return FailGot(msgNotErrorType, got)
}
if errors.Is(err, target) {
return FailReject(msgErrorIsNot, err, target)
}
return nil
}
}
// ErrorIs returns a check function that fails if the test value is not an error
// matching target, or not an error type.
func ErrorIs(target error) CheckFunc {
return func(got interface{}) error {
err, ok := got.(error)
if !ok && got != nil {
return FailGot(msgNotErrorType, got)
}
if !errors.Is(err, target) {
return FailExpect(msgErrorIs, err, target)
}
return nil
}
}
// ContainsMatch returns a check function that fails if the test value does not
// contain the check. Accepts input of type array and slice.
func ContainsMatch(c Check) CheckFunc {
return func(got interface{}) error {
rv := reflect.ValueOf(got)
switch rv.Kind() {
case reflect.Array, reflect.Slice:
default:
return FailGot(msgNotSliceArrType, got)
}
var subfail Failure
for j := 0; j < rv.Len(); j++ {
err := c.Check(Index(got, j))
switch {
case err == nil:
return nil
case errors.As(err, &subfail):
}
}
fail := FailGot(msgContainsMatch, got)
fail.Expect = subfail.Expect // may be empty
return fail
}
}
// Contains returns a check function that fails if the test value does not
// contain the input. Accepts input of type array and slice.
func Contains(v interface{}) CheckFunc {
return ContainsMatch(DeepEqual(v))
}