-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtpp_test.go
66 lines (49 loc) · 1.38 KB
/
tpp_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
package tpp
import (
"testing"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
)
type mockImpl struct {
mock.Mock
}
func (m *mockImpl) DoSomething(x int) bool {
args := m.Called(x)
return args.Bool(0)
}
func TestUnexpected(t *testing.T) {
is := require.New(t)
mockObj := new(mockImpl)
// Create an argument matcher
isEven := func(x int) bool {
return x%2 == 0
}
argMatcher := mock.MatchedBy(isEven)
t.Run("Unsets a call with an argument matcher", func(t *testing.T) {
call := mockObj.On("DoSomething", argMatcher).Return(true)
unexpected := Unexpected()
unexpected.Expectorise(call)
mockObj.AssertExpectations(t)
is.Empty(mockObj.ExpectedCalls)
})
t.Run("Unsets a wrapped call with an argument matcher", func(t *testing.T) {
call := mockObj.On("DoSomething", argMatcher).Return(true)
// WrappedMockCallObject is a wrapper around a mock.Call, which resembles what
// we get from mockery.
type WrappedMockCallObject struct {
*mock.Call
}
fm := WrappedMockCallObject{call}
unexpected := Unexpected()
unexpected.Expectorise(fm)
mockObj.AssertExpectations(t)
is.Empty(mockObj.ExpectedCalls)
})
t.Run("Unsets a call", func(t *testing.T) {
call := mockObj.On("DoSomething", 42).Return(true)
unexpected := Unexpected()
unexpected.Expectorise(call)
mockObj.AssertExpectations(t)
is.Empty(mockObj.ExpectedCalls)
})
}