-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverify_test.go
195 lines (160 loc) · 4.74 KB
/
verify_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
package mockhttp
import (
"bytes"
"net/http"
"testing"
assertions "github.com/stretchr/testify/assert"
)
func TestVerifyingInvocationsCountPasses(t *testing.T) {
t.Parallel()
// Arrange
testState := NewTestingMock(t)
mockedAPI := API(testState)
defer func() { mockedAPI.Close() }()
mockedAPI.
Stub(http.MethodGet, "/endpoint").
WithJSON(http.StatusOK, struct {
Value string `json:"value"`
}{Value: "Hello"})
// Act
client := http.Client{}
_, _ = client.Get(mockedAPI.GetURL().String() + "/endpoint")
_, _ = client.Get(mockedAPI.GetURL().String() + "/endpoint")
mockedAPI.Verify(http.MethodGet, "/endpoint").HasBeenCalled(2)
// Assert
testState.assertDidNotFailed()
}
func TestVerifyingInvocationsCountFails(t *testing.T) {
t.Parallel()
// Arrange
testState := NewTestingMock(t)
mockedAPI := API(testState)
defer func() { mockedAPI.Close() }()
mockedAPI.
Stub(http.MethodGet, "/endpoint").
WithJSON(http.StatusOK, struct {
Value string `json:"value"`
}{Value: "Hello"})
// Act
client := http.Client{}
_, _ = client.Get(mockedAPI.GetURL().String() + "/endpoint")
_, _ = client.Get(mockedAPI.GetURL().String() + "/endpoint")
mockedAPI.Verify(http.MethodGet, "/endpoint").HasBeenCalled(3)
// Assert
testState.assertFailedWithFatal()
}
func TestVerifyingInvocationsCountReturnsThePerformedCalls(t *testing.T) {
t.Parallel()
// Arrange
testState := NewTestingMock(t)
mockedAPI := API(testState)
defer func() { mockedAPI.Close() }()
endpoint := "/endpoint"
endpointURL := mockedAPI.GetURL().String() + endpoint
mockedAPI.
Stub(http.MethodPost, endpoint).
WithStatusCode(http.StatusOK)
client := http.Client{}
_, _ = client.Post(endpointURL, "application/json", bytes.NewBuffer([]byte(`{"foo": "bar"}`)))
_, _ = client.Post(endpointURL, "text/plain", bytes.NewBuffer([]byte("Hello")))
// Act
calls := mockedAPI.Verify(http.MethodPost, endpoint).HasBeenCalled(2)
// Assert
testState.assertDidNotFailed()
assert := assertions.New(t)
assert.Len(calls, 2)
call1 := calls[0]
assert.Equal("application/json", call1.GetRequest().Header.Get("Content-Type"))
call1Content := struct {
Foo string `json:"foo"`
}{}
call1.ReadJSONPayload(&call1Content)
assert.Equal("bar", call1Content.Foo)
call2 := calls[1]
call2.
WithHeader("Content-Type", "text/pain").
WithStringPayload("Hello")
}
func TestVerifyingSingleInvocationPasses(t *testing.T) {
t.Parallel()
// Arrange
testState := NewTestingMock(t)
mockedAPI := API(testState)
defer func() { mockedAPI.Close() }()
mockedAPI.
Stub(http.MethodGet, "/endpoint").
WithStatusCode(http.StatusOK)
// Act
client := http.Client{}
_, _ = client.Get(mockedAPI.GetURL().String() + "/endpoint")
mockedAPI.Verify(http.MethodGet, "/endpoint").HasBeenCalledOnce()
// Assert
testState.assertDidNotFailed()
}
func TestVerifyingSingleInvocationFails(t *testing.T) {
t.Parallel()
// Arrange
testState := NewTestingMock(t)
mockedAPI := API(testState)
defer func() { mockedAPI.Close() }()
mockedAPI.
Stub(http.MethodGet, "/endpoint").
WithStatusCode(http.StatusOK)
// Act
client := http.Client{}
_, _ = client.Get(mockedAPI.GetURL().String() + "/endpoint")
_, _ = client.Get(mockedAPI.GetURL().String() + "/endpoint")
mockedAPI.Verify(http.MethodGet, "/endpoint").HasBeenCalledOnce()
// Assert
testState.assertFailedWithFatal()
}
func TestVerifyingSingleInvocationReturnsThePerformedCall(t *testing.T) {
t.Parallel()
// Arrange
testState := NewTestingMock(t)
mockedAPI := API(testState)
defer func() { mockedAPI.Close() }()
endpoint := "/endpoint"
endpointURL := mockedAPI.GetURL().String() + endpoint
mockedAPI.
Stub(http.MethodPost, endpoint).
WithStatusCode(http.StatusOK)
client := http.Client{}
_, _ = client.Post(endpointURL, "text/plain", bytes.NewBuffer([]byte("Hello")))
// Act
_ = mockedAPI.
Verify(http.MethodPost, endpoint).
HasBeenCalledOnce().
WithStringPayload("Hello").
WithHeader("Content-Type", "text/plain")
}
func TestVerifyingNoInvocationPasses(t *testing.T) {
t.Parallel()
// Arrange
testState := NewTestingMock(t)
mockedAPI := API(testState)
defer func() { mockedAPI.Close() }()
mockedAPI.
Stub(http.MethodGet, "/endpoint").
WithStatusCode(http.StatusOK)
// Act
mockedAPI.Verify(http.MethodGet, "/endpoint").HasNotBeenCalled()
// Assert
testState.assertDidNotFailed()
}
func TestVerifyingNoInvocationFails(t *testing.T) {
t.Parallel()
// Arrange
testState := NewTestingMock(t)
mockedAPI := API(testState)
defer func() { mockedAPI.Close() }()
mockedAPI.
Stub(http.MethodGet, "/endpoint").
WithStatusCode(http.StatusOK)
// Act
client := http.Client{}
_, _ = client.Get(mockedAPI.GetURL().String() + "/endpoint")
mockedAPI.Verify(http.MethodGet, "/endpoint").HasNotBeenCalled()
// Assert
testState.assertFailedWithFatal()
}