-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcallback_test.go
50 lines (41 loc) · 913 Bytes
/
callback_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
package validator
import (
"context"
"errors"
"testing"
"github.com/stretchr/testify/assert"
)
type TestCallback struct {
A int
B int
}
func TestCallback_ValidateValue_NoError(t *testing.T) {
rules := RuleSet{
"A": {
NewCallback(func(_ context.Context, value int) error {
return nil
}),
},
}
ctx := context.Background()
err := Validate(ctx, &TestCallback{A: 1, B: 2}, rules)
assert.NoError(t, err)
}
func TestCallback_ValidateValue_Error(t *testing.T) {
errAMustGreatB := errors.New("A must be great than B")
rules := RuleSet{
"A": {
NewCallback(func(ctx context.Context, value int) error {
if obj, ok := ExtractDataSet[*TestCallback](ctx); ok {
if obj.B > value {
return errAMustGreatB
}
}
return nil
}),
},
}
ctx := context.Background()
err := Validate(ctx, &TestCallback{A: 1, B: 2}, rules)
assert.ErrorIs(t, err, errAMustGreatB)
}