-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcommon_test.go
317 lines (302 loc) · 7.79 KB
/
common_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
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
package test_test
import (
"regexp"
"github.com/stretchr/testify/assert"
"github.com/tkrop/go-testing/internal/sync"
"github.com/tkrop/go-testing/mock"
"github.com/tkrop/go-testing/test"
)
// ParamParam is a test parameter type for the test runner to test evaluation
// of default test parameter names from the test parameter set.
type ParamParam struct {
name string
expect bool
}
// TestParam is a generic test parameter type for testing the test context as
// well as the test runner using the same parameter sets.
type TestParam struct {
name test.Name
setup mock.SetupFunc
test func(test.Test)
expect test.Expect
consumed bool
}
// TestParamMap is a map of test parameters for testing the test context as
// well as the test runner.
type TestParamMap map[string]TestParam
// FilterBy filters the test parameters by the given pattern to test the
// filtering of the test runner.
func (m TestParamMap) FilterBy(pattern string) TestParamMap {
filter := regexp.MustCompile(pattern)
params := TestParamMap{}
for key, value := range m {
if filter.MatchString(key) {
params[key] = value
}
}
return params
}
// GetSlice returns the test parameters as a slice of test parameters sets.
func (m TestParamMap) GetSlice() []TestParam {
params := make([]TestParam, 0, len(m))
for name, param := range m {
params = append(params, TestParam{
name: test.Name(name),
test: param.test,
expect: param.expect,
})
}
return params
}
var (
// TestEmpty is a test function that does nothing.
TestEmpty = func(test.Test) {}
// TestSkip is a test function that skips the test.
TestSkip = func(t test.Test) { t.Skip("skip") }
// TestSkipf is a test function that skips the test with a formatted message.
TestSkipf = func(t test.Test) { t.Skipf("skip") }
// TestSkipNow is a test function that skips the test immediately.
TestSkipNow = func(t test.Test) { t.SkipNow() }
// TestLog is a test function that logs a message.
TestLog = func(t test.Test) { t.Log("log") }
// TestLogf is a test function that logs a formatted message.
TestLogf = func(t test.Test) { t.Logf("log") }
// TestError is a test function that fails with an error message.
TestError = func(t test.Test) { t.Error("fail") }
// TestErrorf is a test function that fails with a formatted error message.
TestErrorf = func(t test.Test) { t.Errorf("fail") }
// TestFatal is a test function that fails with a fatal error message.
TestFatal = func(t test.Test) {
// Duplicate terminal failures are ignored.
go func() { t.Fatal("fail") }()
t.Fatal("fail")
}
// TestFatalf is a test function that fails with a fatal formatted error
// message.
TestFatalf = func(t test.Test) {
// Duplicate terminal failures are ignored.
go func() { t.Fatalf("fail") }()
t.Fatalf("fail")
}
// TestFail is a test function that fails.
TestFail = func(t test.Test) {
// Duplicate terminal failures are ignored.
go func() { t.Fail() }()
t.Fail()
}
// TestFailNow is a test function that fails immediately.
TestFailNow = func(t test.Test) {
// Duplicate terminal failures are ignored.
go func() { t.FailNow() }()
t.FailNow()
}
// TestPanic is a test function that panics.
TestPanic = func(test.Test) {
// Duplicate terminal failures are ignored.
go func() {
// Recover from panic to avoid test abort.
defer func() {
if r := recover(); r != "fail" {
panic(r)
}
}()
panic("fail")
}()
panic("fail")
}
)
// testParams is the generic map of test parameters for testing the test
// context as well as the test runner.
var testParams = TestParamMap{
"base nothing": {
test: TestEmpty,
expect: test.Success,
},
"base skip": {
test: TestSkip,
expect: test.Success,
},
"base skipf": {
test: TestSkipf,
expect: test.Success,
},
"base skipnow": {
test: TestSkipNow,
expect: test.Success,
},
"base log": {
test: TestLog,
expect: test.Success,
},
"base logf": {
test: TestLogf,
expect: test.Success,
},
"base error": {
test: TestError,
expect: test.Failure,
},
"base errorf": {
test: TestErrorf,
expect: test.Failure,
},
"base fatal": {
test: TestFatal,
expect: test.Failure,
consumed: true,
},
"base fatalf": {
test: TestFatalf,
expect: test.Failure,
consumed: true,
},
"base fail": {
test: TestFail,
expect: test.Failure,
consumed: true,
},
"base failnow": {
test: TestFailNow,
expect: test.Failure,
consumed: true,
},
"base panic": {
test: TestPanic,
expect: test.Failure,
consumed: true,
},
"inrun success": {
test: test.InRun(test.Success, TestEmpty),
expect: test.Success,
},
"inrun success with skip": {
test: test.InRun(test.Success, TestSkip),
expect: test.Success,
},
"inrun success with skipf": {
test: test.InRun(test.Success, TestSkipf),
expect: test.Success,
},
"inrun success with skipnow": {
test: test.InRun(test.Success, TestSkipNow),
expect: test.Success,
},
"inrun success with log": {
test: test.InRun(test.Success, TestLog),
expect: test.Success,
},
"inrun success with logf": {
test: test.InRun(test.Success, TestLogf),
expect: test.Success,
},
"inrun success with error": {
test: test.InRun(test.Success, TestError),
expect: test.Failure,
},
"inrun success with errorf": {
test: test.InRun(test.Success, TestErrorf),
expect: test.Failure,
},
"inrun success with fatal": {
test: test.InRun(test.Success, TestFatal),
expect: test.Failure,
consumed: true,
},
"inrun success with fatalf": {
test: test.InRun(test.Success, TestFatalf),
expect: test.Failure,
consumed: true,
},
"inrun success with fail": {
test: test.InRun(test.Success, TestFail),
expect: test.Failure,
consumed: true,
},
"inrun success with failnow": {
test: test.InRun(test.Success, TestFailNow),
expect: test.Failure,
consumed: true,
},
"inrun success with panic": {
test: test.InRun(test.Success, TestPanic),
expect: test.Failure,
consumed: true,
},
"inrun failure": {
test: test.InRun(test.Failure, TestEmpty),
expect: test.Failure,
},
"inrun failure with skip": {
test: test.InRun(test.Failure, TestSkip),
expect: test.Failure,
},
"inrun failure with skipf": {
test: test.InRun(test.Failure, TestSkipf),
expect: test.Failure,
},
"inrun failure with skipnow": {
test: test.InRun(test.Failure, TestSkipNow),
expect: test.Failure,
},
"inrun failure with log": {
test: test.InRun(test.Failure, TestLog),
expect: test.Failure,
},
"inrun failure with logf": {
test: test.InRun(test.Failure, TestLogf),
expect: test.Failure,
},
"inrun failure with error": {
test: test.InRun(test.Failure, TestError),
expect: test.Success,
},
"inrun failure with errorf": {
test: test.InRun(test.Failure, TestErrorf),
expect: test.Success,
},
"inrun failure with fatal": {
test: test.InRun(test.Failure, TestFatal),
expect: test.Success,
consumed: true,
},
"inrun failure with fatalf": {
test: test.InRun(test.Failure, TestFatalf),
expect: test.Success,
consumed: true,
},
"inrun failure with fail": {
test: test.InRun(test.Failure, TestFail),
expect: test.Success,
consumed: true,
},
"inrun failure with failnow": {
test: test.InRun(test.Failure, TestFailNow),
expect: test.Success,
consumed: true,
},
"inrun failure with panic": {
test: test.InRun(test.Failure, TestPanic),
expect: test.Success,
consumed: true,
},
}
// ExecTest is the generic function to execute a test with the given test
// parameters.
func ExecTest(t test.Test, param TestParam) {
// Given
if param.setup != nil {
mock.NewMocks(t).Expect(param.setup)
}
wg := sync.NewLenientWaitGroup()
t.(*test.Context).WaitGroup(wg)
if param.consumed {
wg.Add(1)
}
// When
param.test(t)
// Then
wg.Wait()
if param.expect == test.Failure {
assert.True(t, t.Failed())
}
}