-
Notifications
You must be signed in to change notification settings - Fork 1
/
smockerclient.go
296 lines (237 loc) · 7.77 KB
/
smockerclient.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
package smockerclient
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
)
// MockDefinition Allows multiple styles of mock creation to be used and custom extension.
// ToMockDefinitionJson must return json conforming to the smocker mock definition
// https://smocker.dev/technical-documentation/mock-definition.html as bytes.
type MockDefinition interface {
ToMockDefinitionJson() ([]byte, error)
}
type Instance struct {
Url string
HttpClient *http.Client
}
// Deprecated: Use zero value struct initialisation instead, e.g. Instance{}
// DefaultInstance Creates an instance that will connect to the default smocker server location, http://localhost:8081
func DefaultInstance() Instance {
return Instance{
Url: "http://localhost:8081",
HttpClient: http.DefaultClient,
}
}
// Deprecated: Use struct initialisation instead, e.g. Instance{Url: "http://localhost:9090" }
// NewInstance Creates an instance that will connect to the smocker server using the url provided.
func NewInstance(url string) Instance {
return Instance{
Url: url,
HttpClient: http.DefaultClient,
}
}
// DefaultUrl The default url to use for the smocker admin server
var DefaultUrl = "http://localhost:8081"
func (i Instance) url() string {
if i.Url == "" {
return DefaultUrl
}
return i.Url
}
// DefaultHttpClient The default http client to use to send requests to the smocker server
var DefaultHttpClient = http.DefaultClient
func (i Instance) httpClient() *http.Client {
if i.HttpClient == nil {
return DefaultHttpClient
}
return i.HttpClient
}
// StartSession Starts a new session on the Smocker server with the given name. New mocks will be added to the latest
// session started.
func (i Instance) StartSession(name string) error {
resp, err := i.sendStartSessionRequest(name)
if err != nil {
return fmt.Errorf("smockerclient unable to create a new session named %s. %w", name, err)
}
err = handleNon200Response(resp)
if err != nil {
return fmt.Errorf("smockerclient unable to create a new session named %s. %w", name, err)
}
return nil
}
func (i Instance) sendStartSessionRequest(name string) (*http.Response, error) {
req, err := i.createSessionRequest(name)
if err != nil {
return nil, fmt.Errorf("unable to create request. %w", err)
}
resp, err := i.httpClient().Do(req)
if err != nil {
return nil, fmt.Errorf("unable to send request. %w", err)
}
return resp, nil
}
func (i Instance) createSessionRequest(name string) (*http.Request, error) {
url := i.url() + "/sessions"
req, err := http.NewRequest(http.MethodPost, url, nil)
if err != nil {
return nil, err
}
query := req.URL.Query()
query.Add("name", name)
req.URL.RawQuery = query.Encode()
return req, nil
}
// AddMock Adds a new mock to the latest session on the Smocker server.
func (i Instance) AddMock(mock MockDefinition) error {
resp, err := i.sendAddMockRequest(mock)
if err != nil {
return fmt.Errorf("smockerclient unable to add a new mock. %w", err)
}
err = handleNon200Response(resp)
if err != nil {
return fmt.Errorf("smockerclient unable to add mock. %w", err)
}
return nil
}
func (i Instance) sendAddMockRequest(mock MockDefinition) (*http.Response, error) {
req, err := i.createAddMockRequest(mock)
if err != nil {
return nil, fmt.Errorf("unable to create request. %w", err)
}
resp, err := i.httpClient().Do(req)
if err != nil {
return nil, fmt.Errorf("unable to send request. %w", err)
}
return resp, nil
}
func (i Instance) createAddMockRequest(mock MockDefinition) (*http.Request, error) {
body, err := createAddMockRequestBody(mock)
if err != nil {
return nil, err
}
url := i.url() + "/mocks"
req, err := http.NewRequest(http.MethodPost, url, body)
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", "application/json")
return req, nil
}
func createAddMockRequestBody(mock MockDefinition) (*bytes.Buffer, error) {
mockJson, err := mock.ToMockDefinitionJson()
if err != nil {
return nil, fmt.Errorf("unable to convert mock to json when running ToMockDefinitionJson. %w", err)
}
// Smocker API always expects a list of mocks to be sent
mocks := []json.RawMessage{mockJson}
body := &bytes.Buffer{}
err = json.NewEncoder(body).Encode(mocks)
if err != nil {
return nil, fmt.Errorf("unable to create request body bytes from mock. %w", err)
}
return body, nil
}
// ResetAllSessionsAndMocks Clears the Smocker server of all sessions and mocks. Leaving it in a clean state
func (i Instance) ResetAllSessionsAndMocks() error {
resp, err := i.sendResetAllSessionsAndMocksRequest()
if err != nil {
return fmt.Errorf("smockerclient unable to reset all the sessions and mocks. %w", err)
}
err = handleNon200Response(resp)
if err != nil {
return fmt.Errorf("smockerclient unable to reset all the sessions and mocks. %w", err)
}
return nil
}
func (i Instance) sendResetAllSessionsAndMocksRequest() (*http.Response, error) {
request, err := i.createResetAllSessionAndMocksRequest()
if err != nil {
return nil, fmt.Errorf("unable to create request. %w", err)
}
resp, err := i.httpClient().Do(request)
if err != nil {
return nil, fmt.Errorf("unable to send request. %w", err)
}
return resp, nil
}
func (i Instance) createResetAllSessionAndMocksRequest() (*http.Request, error) {
url := i.url() + "/reset"
request, err := http.NewRequest(http.MethodPost, url, nil)
if err != nil {
return nil, err
}
return request, nil
}
// VerifyMocksInCurrentSession Checks all the mocks in the session have been called and that no other calls have been
// made
func (i Instance) VerifyMocksInCurrentSession() error {
resp, err := i.sendVerifySessionRequest()
if err != nil {
return fmt.Errorf("smockerclient unable to verify the mocks in the current session. %w", err)
}
err = handleNon200Response(resp)
if err != nil {
return fmt.Errorf("smockerclient unable to verify mocks in current session. %w", err)
}
bodyBytes, err := io.ReadAll(resp.Body)
if err != nil {
return fmt.Errorf("smockerclient unable to read response body to verify mocks in current session. %w", err)
}
defer resp.Body.Close()
var verifiedResp verifiedResponse
err = json.Unmarshal(bodyBytes, &verifiedResp)
if err != nil {
return fmt.Errorf("smockerclient unable to read json response to verify mocks in current session. %w", err)
}
if !verifiedResp.Mocks.AllUsed {
return fmt.Errorf("not all the mocks setup in the current session have been used. smocker response: %s", bodyBytes)
}
if !verifiedResp.History.Verified {
return fmt.Errorf("unexpected calls have been made in the current session. smocker response: %s", bodyBytes)
}
return nil
}
func (i Instance) sendVerifySessionRequest() (*http.Response, error) {
request, err := i.createVerifySessionRequest()
if err != nil {
return nil, err
}
response, err := i.httpClient().Do(request)
if err != nil {
return nil, fmt.Errorf("unable to send request. %w", err)
}
return response, nil
}
func (i Instance) createVerifySessionRequest() (*http.Request, error) {
url := i.url() + "/sessions/verify"
request, err := http.NewRequest(http.MethodPost, url, nil)
if err != nil {
return nil, err
}
return request, nil
}
func handleNon200Response(resp *http.Response) error {
if resp.StatusCode == http.StatusOK {
return nil
}
body, err := io.ReadAll(resp.Body)
if err != nil {
return fmt.Errorf("unable to read response message received status:%d", resp.StatusCode)
}
return fmt.Errorf("received status:%d and message:%s", resp.StatusCode, body)
}
type verifiedResponse struct {
Mocks verifiedResponseMocks `json:"mocks"`
History verifiedResponseHistory `json:"history"`
}
type verifiedResponseMocks struct {
Verified bool `json:"verified"`
AllUsed bool `json:"all_used"`
Message string `json:"message"`
}
type verifiedResponseHistory struct {
Verified bool `json:"verified"`
Message string `json:"message"`
}