This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal_test.go
224 lines (188 loc) · 5.34 KB
/
local_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
package httpdog_test
import (
"bytes"
"io/ioutil"
"net/http"
"net/http/httptest"
"testing"
"github.com/bool64/httpdog"
"github.com/cucumber/godog"
"github.com/stretchr/testify/assert"
"github.com/swaggest/rest/resttest"
)
func TestLocal_RegisterSteps(t *testing.T) {
mock, srvURL := resttest.NewServerMock()
mock.OnError = func(err error) {
assert.NoError(t, err)
}
defer mock.Close()
concurrencyLevel := 5
setExpectations(mock, concurrencyLevel)
local := httpdog.NewLocal(srvURL)
local.Headers = map[string]string{
"X-Foo": "bar",
}
local.ConcurrencyLevel = concurrencyLevel
suite := godog.TestSuite{
ScenarioInitializer: func(s *godog.ScenarioContext) {
local.RegisterSteps(s)
},
Options: &godog.Options{
Format: "pretty",
Strict: true,
Paths: []string{"_testdata/Local.feature"},
},
}
if suite.Run() != 0 {
t.Fatal("test failed")
}
assert.NoError(t, mock.ExpectationsWereMet())
}
func setExpectations(mock *resttest.ServerMock, concurrencyLevel int) {
mock.Expect(resttest.Expectation{
Method: http.MethodGet,
RequestURI: "/get-something?foo=bar",
ResponseBody: []byte(`[{"some":"json"}]`),
ResponseHeader: map[string]string{
"Content-Type": "application/json",
},
})
mock.Expect(resttest.Expectation{
Method: http.MethodDelete,
RequestURI: "/bad-request",
RequestHeader: map[string]string{
"X-Foo": "bar",
},
RequestCookie: map[string]string{
"c1": "v1",
"c2": "v2",
},
ResponseBody: []byte(`{"error":"oops"}`),
Status: http.StatusBadRequest,
})
mock.Expect(resttest.Expectation{
Method: http.MethodPost,
RequestURI: "/with-body",
RequestHeader: map[string]string{
"X-Foo": "bar",
},
RequestBody: []byte(`[{"some":"json"}]`),
ResponseBody: []byte(`{"status":"ok"}`),
ResponseHeader: map[string]string{
"Content-Type": "application/json",
},
})
del := resttest.Expectation{
Method: http.MethodDelete,
RequestURI: "/delete-something",
Status: http.StatusNoContent,
ResponseHeader: map[string]string{
"Content-Type": "application/json",
},
}
// Expecting 2 similar requests.
mock.Expect(del)
mock.Expect(del)
// Due to idempotence testing several more requests should be expected.
delNotFound := del
delNotFound.Status = http.StatusNotFound
delNotFound.ResponseBody = []byte(`{"status":"failed"}`)
for i := 0; i < concurrencyLevel-1; i++ {
mock.Expect(delNotFound)
}
// Expecting request containing json5 comments
mock.Expect(resttest.Expectation{
Method: http.MethodPost,
RequestURI: "/with-json5-body",
RequestHeader: map[string]string{
"X-Foo": "bar",
},
RequestBody: []byte(`[{"some":"json5"}]`),
ResponseBody: []byte(`{"status":"ok"}`),
ResponseHeader: map[string]string{
"Content-Type": "application/json",
},
})
// Expecting request does not contain a valid json
mock.Expect(resttest.Expectation{
Method: http.MethodGet,
RequestURI: "/with-csv-body",
RequestBody: []byte(`a,b,c`),
ResponseBody: []byte(`a,b,c`),
})
}
func TestLocal_RegisterSteps_unexpectedOtherResp(t *testing.T) {
mock, srvURL := resttest.NewServerMock()
mock.OnError = func(err error) {
assert.NoError(t, err)
}
defer mock.Close()
concurrencyLevel := 5
del := resttest.Expectation{
Method: http.MethodDelete,
RequestURI: "/delete-something",
Status: http.StatusNoContent,
ResponseHeader: map[string]string{
"Content-Type": "application/json",
},
}
mock.Expect(del)
// Due to idempotence testing several more requests should be expected.
delNotFound := del
delNotFound.Status = http.StatusNotFound
delNotFound.ResponseBody = []byte(`{"status":"failed"}`)
for i := 0; i < concurrencyLevel-1; i++ {
mock.Expect(delNotFound)
}
local := httpdog.NewLocal(srvURL)
local.ConcurrencyLevel = concurrencyLevel
out := bytes.NewBuffer(nil)
suite := godog.TestSuite{
ScenarioInitializer: func(s *godog.ScenarioContext) {
local.RegisterSteps(s)
},
Options: &godog.Options{
Output: out,
Format: "pretty",
NoColors: true,
Strict: true,
Paths: []string{"_testdata/LocalFail1.feature"},
},
}
assert.Equal(t, 1, suite.Run())
assert.NoError(t, mock.ExpectationsWereMet())
assert.Contains(t, out.String(), "Error: after scenario hook failed: no other responses expected: unexpected response status, expected: 204 (No Content), received: 404 (Not Found)")
}
func TestLocal_RegisterSteps_dynamic(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path == "/user" {
_, err := w.Write([]byte(`{"id":12345,"name": "John Doe","created_at":"any","updated_at": "any"}`))
assert.NoError(t, err)
return
}
if r.URL.Path == "/order" {
b, err := ioutil.ReadAll(r.Body)
assert.NoError(t, err)
assert.NoError(t, r.Body.Close())
assert.Equal(t, `{"user_id":12345,"item_name":"Watermelon"}`, string(b))
_, err = w.Write([]byte(`{"id":54321,"created_at":"any","updated_at": "any","user_id":12345}`))
assert.NoError(t, err)
return
}
}))
defer srv.Close()
local := httpdog.NewLocal(srv.URL)
suite := godog.TestSuite{
ScenarioInitializer: func(s *godog.ScenarioContext) {
local.RegisterSteps(s)
},
Options: &godog.Options{
Format: "pretty",
Strict: true,
Paths: []string{"_testdata/Dynamic.feature"},
},
}
if suite.Run() != 0 {
t.Fatal("test failed")
}
}