-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwith_hooks_test.go
200 lines (199 loc) · 4.72 KB
/
with_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
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
package dal
//
//import (
// "context"
// "testing"
//)
//
//func TestWithHooks2(t *testing.T) {
// type args struct {
// options []func(bag *Hooks)
// }
// tests := []struct {
// name string
// args args
// assertHooks func(tt *testing.T, hooks *Hooks)
// }{
// {
// name: "nil",
// args: args{
// options: nil,
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.beforeGet != nil {
// tt.Error("beforeGet is not nil")
// }
// },
// },
// {
// name: "beforeGet",
// args: args{
// options: []func(bag *Hooks){
// BeforeGet(func(ctx context.Context, record Record) error { return nil }),
// },
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.beforeGet == nil {
// tt.Error("beforeGet is nil")
// }
// },
// },
// {
// name: "afterGet",
// args: args{
// options: []func(bag *Hooks){
// AfterGet(func(ctx context.Context, record Record, err error) error { return nil }),
// },
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.afterGet == nil {
// tt.Error("afterGet is nil")
// }
// },
// },
// {
// name: "beforeGetMulti",
// args: args{
// options: []func(bag *Hooks){
// BeforeGetMulti(func(ctx context.Context, records []Record) error { return nil }),
// },
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.beforeGetMulti == nil {
// tt.Error("beforeGetMulti is nil")
// }
// },
// },
// {
// name: "afterGetMulti",
// args: args{
// options: []func(bag *Hooks){
// AfterGetMulti(func(ctx context.Context, records []Record, err error) error { return nil }),
// },
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.afterGetMulti == nil {
// tt.Error("afterGetMulti is nil")
// }
// },
// },
// {
// name: "beforeInsert",
// args: args{
// options: []func(bag *Hooks){
// BeforeInsert(func(ctx context.Context, record Record) error { return nil }),
// },
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.beforeInsert == nil {
// tt.Error("beforeInsert is nil")
// }
// },
// },
// {
// name: "afterInsert",
// args: args{
// options: []func(bag *Hooks){
// AfterInsert(func(ctx context.Context, record Record, err error) error { return nil }),
// },
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.afterInsert == nil {
// tt.Error("afterInsert is nil")
// }
// },
// },
// {
// name: "beforeSet",
// args: args{
// options: []func(bag *Hooks){
// BeforeSet(func(ctx context.Context, record Record) error { return nil }),
// },
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.beforeSet == nil {
// tt.Error("beforeSet is nil")
// }
// },
// },
// {
// name: "afterSet",
// args: args{
// options: []func(bag *Hooks){
// AfterSet(func(ctx context.Context, record Record, err error) error { return nil }),
// },
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.afterSet == nil {
// tt.Error("afterSet is nil")
// }
// },
// },
// {
// name: "beforeUpdate",
// args: args{
// options: []func(bag *Hooks){
// BeforeUpdate(func(ctx context.Context, key *Key, updates []update, preconditions ...Precondition) error {
// return nil
// }),
// },
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.beforeUpdate == nil {
// tt.Error("beforeUpdate is nil")
// }
// },
// },
// {
// name: "afterUpdate",
// args: args{
// options: []func(bag *Hooks){
// AfterUpdate(func(ctx context.Context, key *Key, err error) error {
// return nil
// }),
// },
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.afterUpdate == nil {
// tt.Error("afterUpdate is nil")
// }
// },
// },
// {
// name: "beforeDelete",
// args: args{
// options: []func(bag *Hooks){
// BeforeDelete(func(ctx context.Context, key *Key) error {
// return nil
// }),
// },
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.beforeDelete == nil {
// tt.Error("beforeDelete is nil")
// }
// },
// },
// {
// name: "afterDelete",
// args: args{
// options: []func(bag *Hooks){
// AfterDelete(func(ctx context.Context, key *Key, err error) error {
// return nil
// }),
// },
// },
// assertHooks: func(tt *testing.T, hooks *Hooks) {
// if hooks.afterDelete == nil {
// tt.Error("afterDelete is nil")
// }
// },
// },
// }
// for _, tt := range tests {
// t.Run(tt.name, func(t *testing.T) {
// hooks := WithHooks(tt.args.options...)
// tt.assertHooks(t, hooks)
// })
// }
//}