-
Notifications
You must be signed in to change notification settings - Fork 28
/
dsl.go
586 lines (518 loc) · 17.4 KB
/
dsl.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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
// Copyright 2015 Peter Goetz
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package pegomock
import (
"bytes"
"fmt"
"reflect"
"sort"
"sync"
"testing"
"time"
"github.com/onsi/gomega/format"
"github.com/petergtz/pegomock/v4/internal/verify"
)
var GlobalFailHandler FailHandler
func RegisterMockFailHandler(handler FailHandler) {
GlobalFailHandler = handler
}
func RegisterMockTestingT(t *testing.T) {
RegisterMockFailHandler(BuildTestingTFailHandler(t))
}
var (
lastInvocation *invocation
lastInvocationMutex sync.Mutex
)
var globalArgMatchers Matchers
func RegisterMatcher(matcher ArgumentMatcher) {
globalArgMatchers.append(matcher)
}
type invocation struct {
genericMock *GenericMock
MethodName string
Params []Param
ReturnTypes []reflect.Type
}
type GenericMock struct {
sync.Mutex
mockedMethods map[string]*mockedMethod
fail FailHandler
}
func (genericMock *GenericMock) Invoke(methodName string, params []Param, returnTypes []reflect.Type) ReturnValues {
lastInvocationMutex.Lock()
lastInvocation = &invocation{
genericMock: genericMock,
MethodName: methodName,
Params: params,
ReturnTypes: returnTypes,
}
lastInvocationMutex.Unlock()
return genericMock.getOrCreateMockedMethod(methodName).Invoke(params)
}
func (genericMock *GenericMock) stub(methodName string, paramMatchers []ArgumentMatcher, returnValues ReturnValues) {
genericMock.stubWithCallback(methodName, paramMatchers, func([]Param) ReturnValues { return returnValues })
}
func (genericMock *GenericMock) stubWithCallback(methodName string, paramMatchers []ArgumentMatcher, callback func([]Param) ReturnValues) {
genericMock.getOrCreateMockedMethod(methodName).stub(paramMatchers, callback)
}
func (genericMock *GenericMock) getOrCreateMockedMethod(methodName string) *mockedMethod {
genericMock.Lock()
defer genericMock.Unlock()
if _, ok := genericMock.mockedMethods[methodName]; !ok {
genericMock.mockedMethods[methodName] = &mockedMethod{name: methodName}
}
return genericMock.mockedMethods[methodName]
}
func (genericMock *GenericMock) reset(methodName string, paramMatchers []ArgumentMatcher) {
genericMock.getOrCreateMockedMethod(methodName).reset(paramMatchers)
}
func (genericMock *GenericMock) Verify(
inOrderContext *InOrderContext,
invocationCountMatcher InvocationCountMatcher,
methodName string,
params []Param,
options ...interface{},
) []MethodInvocation {
var timeout time.Duration
if len(options) == 1 {
timeout = options[0].(time.Duration)
}
if genericMock.fail == nil && GlobalFailHandler == nil {
panic("No FailHandler set. Please use either RegisterMockFailHandler or RegisterMockTestingT or TODO to set a fail handler.")
}
fail := GlobalFailHandler
if genericMock.fail != nil {
fail = genericMock.fail
}
defer func() { globalArgMatchers = nil }() // We don't want a panic somewhere during verification screw our global argMatchers
if len(globalArgMatchers) != 0 {
verifyArgMatcherUse(globalArgMatchers, params)
}
startTime := time.Now()
// timeoutLoop:
for {
genericMock.Lock()
methodInvocations := genericMock.methodInvocations(methodName, params, globalArgMatchers)
genericMock.Unlock()
if inOrderContext != nil {
for _, methodInvocation := range methodInvocations {
if methodInvocation.orderingInvocationNumber <= inOrderContext.invocationCounter {
// TODO: should introduce the following, in case we decide support "inorder" and "eventually"
// if time.Since(startTime) < timeout {
// continue timeoutLoop
// }
fail(fmt.Sprintf("Expected function call %v(%v) before function call %v(%v)",
methodName, formatParams(params), inOrderContext.lastInvokedMethodName, formatParams(inOrderContext.lastInvokedMethodParams)))
}
inOrderContext.invocationCounter = methodInvocation.orderingInvocationNumber
inOrderContext.lastInvokedMethodName = methodName
inOrderContext.lastInvokedMethodParams = params
}
}
if !invocationCountMatcher.Matches(len(methodInvocations)) {
if time.Since(startTime) < timeout {
time.Sleep(10 * time.Millisecond)
continue
}
var paramsOrMatchers interface{} = formatParams(params)
if len(globalArgMatchers) != 0 {
paramsOrMatchers = formatMatchers(globalArgMatchers)
}
timeoutInfo := ""
if timeout > 0 {
timeoutInfo = fmt.Sprintf(" after timeout of %v", timeout)
}
fail(fmt.Sprintf(
"Mock invocation count for %v(%v) does not match expectation%v.\n\n\t%v\n\n\t%v",
methodName, paramsOrMatchers, timeoutInfo, invocationCountMatcher.FailureMessage(), formatInteractions(genericMock.allInteractions())))
}
return methodInvocations
}
}
// TODO this doesn't need to be a method, can be a free function
func (genericMock *GenericMock) GetInvocationParams(methodInvocations []MethodInvocation) [][]Param {
if len(methodInvocations) == 0 {
return nil
}
result := make([][]Param, len(methodInvocations[len(methodInvocations)-1].params))
for i, invocation := range methodInvocations {
for u, param := range invocation.params {
if result[u] == nil {
result[u] = make([]Param, len(methodInvocations))
}
result[u][i] = param
}
}
return result
}
func (genericMock *GenericMock) methodInvocations(methodName string, params []Param, matchers []ArgumentMatcher) []MethodInvocation {
var invocations []MethodInvocation
if method, exists := genericMock.mockedMethods[methodName]; exists {
method.Lock()
for _, invocation := range method.invocations {
if len(matchers) != 0 {
if Matchers(matchers).Matches(invocation.params) {
invocations = append(invocations, invocation)
}
} else {
if reflect.DeepEqual(params, invocation.params) ||
(len(params) == 0 && len(invocation.params) == 0) {
invocations = append(invocations, invocation)
}
}
}
method.Unlock()
}
return invocations
}
func formatInteractions(interactions map[string][]MethodInvocation) string {
if len(interactions) == 0 {
return "There were no other interactions with this mock"
}
result := "Actual interactions with this mock were:\n"
for _, methodName := range sortedMethodNames(interactions) {
result += formatInvocations(methodName, interactions[methodName])
}
return result
}
func formatInvocations(methodName string, invocations []MethodInvocation) (result string) {
for _, invocation := range invocations {
result += "\t" + methodName + "(" + formatParams(invocation.params) + ")\n"
}
return
}
func formatParams(params []Param) (result string) {
for i, param := range params {
if i > 0 {
result += ", "
}
result += fmt.Sprintf("%#v", param)
}
return
}
func formatMatchers(matchers []ArgumentMatcher) (result string) {
for i, matcher := range matchers {
if i > 0 {
result += ", "
}
result += fmt.Sprintf("%v", matcher)
}
return
}
func sortedMethodNames(interactions map[string][]MethodInvocation) []string {
methodNames := make([]string, len(interactions))
i := 0
for key := range interactions {
methodNames[i] = key
i++
}
sort.Strings(methodNames)
return methodNames
}
func (genericMock *GenericMock) allInteractions() map[string][]MethodInvocation {
interactions := make(map[string][]MethodInvocation)
for methodName := range genericMock.mockedMethods {
for _, invocation := range genericMock.mockedMethods[methodName].invocations {
interactions[methodName] = append(interactions[methodName], invocation)
}
}
return interactions
}
type mockedMethod struct {
sync.Mutex
name string
invocations []MethodInvocation
stubbings Stubbings
}
func (method *mockedMethod) Invoke(params []Param) ReturnValues {
method.Lock()
method.invocations = append(method.invocations, MethodInvocation{params, globalInvocationCounter.nextNumber()})
method.Unlock()
stubbing := method.stubbings.find(params)
if stubbing == nil {
return ReturnValues{}
}
return stubbing.Invoke(params)
}
func (method *mockedMethod) stub(paramMatchers Matchers, callback func([]Param) ReturnValues) {
stubbing := method.stubbings.findByMatchers(paramMatchers)
if stubbing == nil {
stubbing = &Stubbing{paramMatchers: paramMatchers}
method.stubbings = append(method.stubbings, stubbing)
}
stubbing.callbackSequence = append(stubbing.callbackSequence, callback)
}
func (method *mockedMethod) removeLastInvocation() {
method.invocations = method.invocations[:len(method.invocations)-1]
}
func (method *mockedMethod) reset(paramMatchers Matchers) {
method.stubbings.removeByMatchers(paramMatchers)
}
type Counter struct {
count int
sync.Mutex
}
func (counter *Counter) nextNumber() (nextNumber int) {
counter.Lock()
defer counter.Unlock()
nextNumber = counter.count
counter.count++
return
}
var globalInvocationCounter = Counter{count: 1}
type MethodInvocation struct {
params []Param
orderingInvocationNumber int
}
type Stubbings []*Stubbing
func (stubbings Stubbings) find(params []Param) *Stubbing {
for i := len(stubbings) - 1; i >= 0; i-- {
if stubbings[i].paramMatchers.Matches(params) {
return stubbings[i]
}
}
return nil
}
func (stubbings Stubbings) findByMatchers(paramMatchers Matchers) *Stubbing {
for _, stubbing := range stubbings {
if matchersEqual(stubbing.paramMatchers, paramMatchers) {
return stubbing
}
}
return nil
}
func (stubbings *Stubbings) removeByMatchers(paramMatchers Matchers) {
for i, stubbing := range *stubbings {
if matchersEqual(stubbing.paramMatchers, paramMatchers) {
*stubbings = append((*stubbings)[:i], (*stubbings)[i+1:]...)
}
}
}
func matchersEqual(a, b Matchers) bool {
if len(a) != len(b) {
return false
}
for i := range a {
if !reflect.DeepEqual(a[i], b[i]) {
return false
}
}
return true
}
type Stubbing struct {
paramMatchers Matchers
callbackSequence []func([]Param) ReturnValues
sequencePointer int
}
func (stubbing *Stubbing) Invoke(params []Param) ReturnValues {
defer func() {
if stubbing.sequencePointer < len(stubbing.callbackSequence)-1 {
stubbing.sequencePointer++
}
}()
return stubbing.callbackSequence[stubbing.sequencePointer](params)
}
type Matchers []ArgumentMatcher
func (matchers Matchers) Matches(params []Param) bool {
if len(matchers) != len(params) { // Technically, this is not an error. Variadic arguments can cause this
return false
}
for i := range params {
if !matchers[i].Matches(params[i]) {
return false
}
}
return true
}
func (matchers *Matchers) append(matcher ArgumentMatcher) {
*matchers = append(*matchers, matcher)
}
type ongoingStubbing struct {
genericMock *GenericMock
MethodName string
ParamMatchers []ArgumentMatcher
returnTypes []reflect.Type
}
func When(invocation ...interface{}) *ongoingStubbing {
callIfIsFunc(invocation)
verify.Argument(lastInvocation != nil,
"When() requires an argument which has to be 'a method call on a mock'.")
defer func() {
lastInvocationMutex.Lock()
lastInvocation = nil
lastInvocationMutex.Unlock()
globalArgMatchers = nil
}()
lastInvocation.genericMock.mockedMethods[lastInvocation.MethodName].removeLastInvocation()
paramMatchers := paramMatchersFromArgMatchersOrParams(globalArgMatchers, lastInvocation.Params)
lastInvocation.genericMock.reset(lastInvocation.MethodName, paramMatchers)
return &ongoingStubbing{
genericMock: lastInvocation.genericMock,
MethodName: lastInvocation.MethodName,
ParamMatchers: paramMatchers,
returnTypes: lastInvocation.ReturnTypes,
}
}
func callIfIsFunc(invocation []interface{}) {
if len(invocation) == 1 {
actualType := actualTypeOf(invocation[0])
if actualType != nil && actualType.Kind() == reflect.Func && !reflect.ValueOf(invocation[0]).IsNil() {
if !(actualType.NumIn() == 0 && actualType.NumOut() == 0) {
panic("When using 'When' with function that does not return a value, " +
"it expects a function with no arguments and no return value.")
}
reflect.ValueOf(invocation[0]).Call([]reflect.Value{})
}
}
}
// Deals with nils without panicking
func actualTypeOf(iface interface{}) reflect.Type {
defer func() { recover() }()
return reflect.TypeOf(iface)
}
func paramMatchersFromArgMatchersOrParams(argMatchers []ArgumentMatcher, params []Param) []ArgumentMatcher {
if len(argMatchers) != 0 {
verifyArgMatcherUse(argMatchers, params)
return argMatchers
}
return transformParamsIntoEqMatchers(params)
}
func verifyArgMatcherUse(argMatchers []ArgumentMatcher, params []Param) {
verify.Argument(len(argMatchers) == len(params),
"Invalid use of matchers!\n\n %v matchers expected, %v recorded.\n\n"+
"This error may occur if matchers are combined with raw values:\n"+
" //incorrect:\n"+
" someFunc(Any[int](), \"raw String\")\n"+
"When using matchers, all arguments have to be provided by matchers.\n"+
"For example:\n"+
" //correct:\n"+
" someFunc(Any[int](), Eq(\"String by matcher\"))",
len(params), len(argMatchers),
)
}
func transformParamsIntoEqMatchers(params []Param) []ArgumentMatcher {
paramMatchers := make([]ArgumentMatcher, len(params))
for i, param := range params {
paramMatchers[i] = &EqMatcher{Value: param}
}
return paramMatchers
}
var (
genericMocksMutex sync.Mutex
genericMocks = make(map[Mock]*GenericMock)
)
func GetGenericMockFrom(mock Mock) *GenericMock {
genericMocksMutex.Lock()
defer genericMocksMutex.Unlock()
if genericMocks[mock] == nil {
genericMocks[mock] = &GenericMock{
mockedMethods: make(map[string]*mockedMethod),
fail: mock.FailHandler(),
}
}
return genericMocks[mock]
}
func (stubbing *ongoingStubbing) ThenReturn(values ...ReturnValue) *ongoingStubbing {
checkAssignabilityOf(values, stubbing.returnTypes)
stubbing.genericMock.stub(stubbing.MethodName, stubbing.ParamMatchers, values)
return stubbing
}
func checkAssignabilityOf(stubbedReturnValues []ReturnValue, expectedReturnTypes []reflect.Type) {
verify.Argument(len(stubbedReturnValues) == len(expectedReturnTypes),
"Different number of return values")
for i := range stubbedReturnValues {
if stubbedReturnValues[i] == nil {
switch expectedReturnTypes[i].Kind() {
case reflect.Bool, reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint,
reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr, reflect.Float32,
reflect.Float64, reflect.Complex64, reflect.Complex128, reflect.Array, reflect.String,
reflect.Struct:
panic("Return value 'nil' not assignable to return type " + expectedReturnTypes[i].Kind().String())
}
} else {
verify.Argument(reflect.TypeOf(stubbedReturnValues[i]).AssignableTo(expectedReturnTypes[i]),
"Return value of type %T not assignable to return type %v", stubbedReturnValues[i], expectedReturnTypes[i])
}
}
}
func (stubbing *ongoingStubbing) ThenPanic(v interface{}) *ongoingStubbing {
stubbing.genericMock.stubWithCallback(
stubbing.MethodName,
stubbing.ParamMatchers,
func([]Param) ReturnValues { panic(v) })
return stubbing
}
func (stubbing *ongoingStubbing) Then(callback func([]Param) ReturnValues) *ongoingStubbing {
stubbing.genericMock.stubWithCallback(
stubbing.MethodName,
stubbing.ParamMatchers,
callback)
return stubbing
}
type InOrderContext struct {
invocationCounter int
lastInvokedMethodName string
lastInvokedMethodParams []Param
}
// ArgumentMatcher can be used to match arguments.
type ArgumentMatcher interface {
Matches(param Param) bool
fmt.Stringer
}
// InvocationCountMatcher can be used to match invocation counts. It is guaranteed that
// FailureMessage will always be called after Matches so an implementation can save state.
type InvocationCountMatcher interface {
Matches(param Param) bool
FailureMessage() string
}
// Matcher can be used to match arguments as well as invocation counts.
// Note that support for overlapping embedded interfaces was added in Go 1.14, which is why
// ArgumentMatcher and InvocationCountMatcher are not embedded here.
type Matcher interface {
Matches(param Param) bool
FailureMessage() string
fmt.Stringer
}
func DumpInvocationsFor(mock Mock) {
fmt.Print(SDumpInvocationsFor(mock))
}
func SDumpInvocationsFor(mock Mock) string {
result := &bytes.Buffer{}
for _, mockedMethod := range GetGenericMockFrom(mock).mockedMethods {
for _, invocation := range mockedMethod.invocations {
fmt.Fprintf(result, "Method invocation: %v (\n", mockedMethod.name)
for _, param := range invocation.params {
fmt.Fprint(result, format.Object(param, 1), ",\n")
}
fmt.Fprintln(result, ")")
}
}
return result.String()
}
// InterceptMockFailures runs a given callback and returns an array of
// failure messages generated by any Pegomock verifications within the callback.
//
// This is accomplished by temporarily replacing the *global* fail handler
// with a fail handler that simply annotates failures. The original fail handler
// is reset when InterceptMockFailures returns.
func InterceptMockFailures(f func()) []string {
originalHandler := GlobalFailHandler
failures := []string{}
RegisterMockFailHandler(func(message string, callerSkip ...int) {
failures = append(failures, message)
})
f()
RegisterMockFailHandler(originalHandler)
return failures
}