-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhooks_test.go
94 lines (89 loc) · 1.67 KB
/
hooks_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
package dal
import (
"context"
"errors"
"github.com/stretchr/testify/assert"
"reflect"
"testing"
)
type testValidateData struct {
isValid bool
}
func (t testValidateData) Validate() error {
if t.isValid {
return nil
}
return errors.New("invalid")
}
func TestBeforeSave(t *testing.T) {
type test struct {
name string
data testValidateData
}
tests := []test{
{
name: "valid",
data: testValidateData{isValid: true},
},
{
name: "invalid",
data: testValidateData{isValid: false},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
data := test.data
err := BeforeSave(context.Background(), nil, NewRecordWithIncompleteKey("test", reflect.Struct, data).SetError(NoError))
if data.isValid {
assert.Nil(t, err)
} else {
assert.NotNil(t, err)
}
})
}
}
func TestCallRecordHooks(t *testing.T) {
for _, tt := range []struct {
name string
hooks []RecordHook
expectsErr bool
}{
{
name: "nil_hooks",
hooks: nil,
expectsErr: false,
},
{
name: "empty_hooks",
hooks: []RecordHook{},
expectsErr: false,
},
{
name: "one_hook_with_no_error",
hooks: []RecordHook{
func(ctx context.Context, record Record) error {
return nil
},
},
expectsErr: false,
},
{
name: "one_hook_with_error",
hooks: []RecordHook{
func(ctx context.Context, record Record) error {
return errors.New("error")
},
},
expectsErr: true,
},
} {
t.Run(tt.name, func(t *testing.T) {
err := callRecordHooks(context.Background(), nil, tt.hooks)
if tt.expectsErr {
assert.NotNil(t, err)
} else {
assert.Nil(t, err)
}
})
}
}