forked from swagger-api/swagger-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp.js
306 lines (267 loc) · 8.57 KB
/
http.js
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
import expect from 'expect'
import xmock from 'xmock'
import fetchMock from 'fetch-mock'
import http, {serializeHeaders, mergeInQueryOrForm, encodeFormOrQuery, serializeRes} from '../src/http'
describe('http', () => {
let xapp
afterEach(function () {
if (xapp) {
xapp.restore()
}
})
it('should be able to GET a url', () => {
xapp = xmock()
xapp.get('http://swagger.io', (req, res) => res.send('hi'))
return http({
url: 'http://swagger.io'
})
.then((res) => {
expect(res.status).toEqual(200)
expect(res.text).toEqual('hi')
})
})
it('should always load a spec as text', () => {
xapp = xmock()
xapp.get('http://swagger.io/somespec', (req, res) => {
res.set('content-type', 'application/octet-stream')
res.send('key: val')
})
return http({url: 'http://swagger.io/somespec', loadSpec: true}).then((res) => {
expect(res.status).toEqual(200)
expect(res.text).toEqual('key: val')
})
})
it('should include status code and response with HTTP Error', () => {
xapp = xmock()
xapp.get('http://swagger.io', (req, res) => res.status(400).send('hi'))
return http({
url: 'http://swagger.io'
})
.then(
(res) => {
throw new Error('Expected rejection for HTTP status 400')
},
(err) => {
expect(err.status).toEqual(400)
expect(err.statusCode).toEqual(400)
expect(err.response.text).toEqual('hi')
}
)
})
it('should apply responseInterceptor to error responses', () => {
xapp = xmock()
xapp.get('http://swagger.io', (req, res) => res.status(400).send('hi'))
return http({
url: 'http://swagger.io',
responseInterceptor: (res) => {
res.testValue = 5
}
})
.then(
(res) => {
throw new Error('Expected rejection for HTTP status 400')
},
(err) => {
expect(err.response.testValue).toEqual(5)
}
)
})
it('should set responseError on responseInterceptor Error', () => {
xapp = xmock()
xapp.get('http://swagger.io', (req, res) => res.status(400).send('hi'))
const testError = new Error()
return http({
url: 'http://swagger.io',
responseInterceptor: (res) => {
throw testError
}
})
.then(
(res) => {
throw new Error('Expected rejection for HTTP status 400')
},
(err) => {
expect(err.response).toEqual(null)
expect(err.responseError).toBe(testError)
}
)
})
describe('serializeHeaders', function () {
it('should handle FetchAPI Headers object, which is iterable', function () {
// Given
// isomorphic-fetch exposes FetchAPI methods onto global
require('isomorphic-fetch')
expect(global.Headers).toBeA(Function)
const headers = new Headers()
headers.append('Authorization', 'Basic hoop-la')
headers.append('Content-Type', 'application/oai.json')
// When
const serializedHeaders = serializeHeaders(headers)
// Then
expect(serializedHeaders).toEqual({
authorization: 'Basic hoop-la',
'content-type': 'application/oai.json'
})
})
it('should handle two of the same headers', function () {
// Given
// isomorphic-fetch exposes FetchAPI methods onto global
require('isomorphic-fetch')
expect(global.Headers).toBeA(Function)
const headers = new Headers()
headers.append('Authorization', 'Basic hoop-la')
headers.append('Authorization', 'Advanced hoop-la')
// When
const serializedHeaders = serializeHeaders(headers)
// Then
expect(serializedHeaders).toEqual({
authorization: ['Basic hoop-la', 'Advanced hoop-la'],
})
})
it('should handle multiple headers', function () {
// Given
// isomorphic-fetch exposes FetchAPI methods onto global
require('isomorphic-fetch')
expect(global.Headers).toBeA(Function)
const headers = new Headers()
headers.append('Authorization', 'Basic hoop-la')
headers.append('Authorization', 'Advanced hoop-la')
headers.append('Authorization', 'Super-Advanced hoop-la')
// When
const serializedHeaders = serializeHeaders(headers)
// Then
expect(serializedHeaders).toEqual({
authorization: ['Basic hoop-la', 'Advanced hoop-la', 'Super-Advanced hoop-la'],
})
})
})
describe('mergeInQueryOrForm', function () {
it('should add query into URL ( with exising url )', function () {
const req = {
url: 'https://swagger.io?one=1&two=1',
query: {
two: {
value: 2
},
three: {
value: 3
}
}
}
expect(mergeInQueryOrForm(req)).toEqual({
url: 'https://swagger.io?one=1&two=2&three=3'
})
})
it('should not encode form-data', function () {
const FormData = require('isomorphic-form-data')
const _append = FormData.prototype.append
FormData.prototype.append = function (k, v) {
this._entries = this._entries || {}
this._entries[k] = v
}
const req = {
headers: {
'content-type': 'multipart/form-data'
},
form: {
testJson: {
value: '{"name": "John"}'
}
}
}
mergeInQueryOrForm(req)
expect(req.body._entries.testJson).toEqual('{"name": "John"}')
FormData.prototype.append = _append
})
})
describe('encodeFormOrQuery', function () {
it('should parse a query object into a query string', function () {
const req = {
query: {
one: {
value: 1
},
two: {
value: 2
}
}
}
expect(encodeFormOrQuery(req.query)).toEqual('one=1&two=2')
})
it('should handle arrays', function () {
const req = {
query: {
id: {
value: [1, 2]
}
}
}
expect(encodeFormOrQuery(req.query)).toEqual('id=1,2')
})
it('should handle custom array serilization', function () {
// Given
fetchMock.get('*', {hello: 'world'})
const req = {
url: 'http://example.com',
method: 'GET',
query: {
anotherOne: ['one', 'two'], // No collection format
evenMore: 'hi', // string, not an array
bar: { // has a collectionFormat, so we need a way of indicating it
collectionFormat: 'ssv',
value: [1, 2, 3]
}
}
}
return http('http://example.com', req).then((response) => {
expect(response.url).toEqual('http://example.com?anotherOne=one,two&evenMore=hi&bar=1%202%203')
expect(response.status).toEqual(200)
}).then(fetchMock.restore)
})
})
describe('serializeRes', function () {
it('should serialize fetch-like response and call serializeHeaders', function () {
const headers = {
Authorization: ['Basic hoop-la', 'Advanced hoop-la']
}
const res = fetchMock.mock('http://swagger.io', {headers})
return fetch('http://swagger.io').then((_res) => {
return serializeRes(_res, 'https://swagger.io')
}).then((resSerialize) => {
expect(resSerialize.headers).toEqual({authorization: ['Basic hoop-la', 'Advanced hoop-la']})
}).then(fetchMock.restore)
})
it('should set .text and .data to body Blob or Buffer for binary response', function () {
const headers = {
'Content-Type': 'application/octet-stream'
}
const body = 'body data'
const res = fetchMock.mock('http://swagger.io', {body, headers})
return fetch('http://swagger.io').then((_res) => {
return serializeRes(_res, 'https://swagger.io')
}).then((resSerialize) => {
expect(resSerialize.data).toBe(resSerialize.text)
if (typeof Blob !== 'undefined') {
expect(resSerialize.data).toBeA(Blob)
}
else {
expect(resSerialize.data).toBeA(Buffer)
expect(resSerialize.data).toEqual(new Buffer(body))
}
}).then(fetchMock.restore)
})
it('should set .text and .data to body string for text response', function () {
const headers = {
'Content-Type': 'application/json'
}
const body = 'body data'
const res = fetchMock.mock('http://swagger.io', {body, headers})
return fetch('http://swagger.io').then((_res) => {
return serializeRes(_res, 'https://swagger.io')
}).then((resSerialize) => {
expect(resSerialize.data).toBe(resSerialize.text)
expect(resSerialize.data).toBe(body)
}).then(fetchMock.restore)
})
})
})