-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpassthrough_test.js
More file actions
441 lines (372 loc) · 11.3 KB
/
Copy pathpassthrough_test.js
File metadata and controls
441 lines (372 loc) · 11.3 KB
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
var originalXMLHttpRequest;
var describe = QUnit.module;
var it = QUnit.test;
describe('passthrough requests', function (config) {
config.beforeEach(function () {
originalXMLHttpRequest = window.XMLHttpRequest;
this.pretender = new Pretender();
});
config.afterEach(function () {
this.pretender.shutdown();
window.XMLHttpRequest = originalXMLHttpRequest;
});
it('allows matched paths to be pass-through', function (assert) {
var pretender = this.pretender;
var done = assert.async();
pretender.post('/some/:route', pretender.passthrough);
var passthroughInvoked = false;
pretender.passthroughRequest = function (verb, path, request) {
passthroughInvoked = true;
assert.equal(verb, 'POST');
assert.equal(path, '/some/path');
assert.equal(request.requestBody, 'some=data');
};
$.ajax({
url: '/some/path',
method: 'POST',
headers: {
'test-header': 'value',
},
data: {
some: 'data',
},
error: function (xhr) {
assert.equal(xhr.status, 404);
assert.ok(passthroughInvoked);
done();
},
});
});
it(
'asynchronous request with pass-through has timeout,' +
'withCredentials and onprogress event',
function (assert) {
var pretender = this.pretender;
var done = assert.async();
function testXHR() {
this.pretender = pretender;
this.open = function () {};
this.setRequestHeader = function () {};
this.upload = {};
this.send = {
pretender: pretender,
apply: function (xhr /*, argument*/) {
assert.ok('timeout' in xhr);
assert.ok('withCredentials' in xhr);
assert.ok('onprogress' in xhr);
this.pretender.resolve(xhr);
done();
},
};
}
pretender._nativeXMLHttpRequest = testXHR;
pretender.post('/some/path', pretender.passthrough);
var xhr = new window.XMLHttpRequest();
xhr.open('POST', '/some/path');
xhr.timeout = 1000;
xhr.withCredentials = true;
xhr.send('some data');
}
);
it(
'asynchronous request with pass-through and ' +
'arraybuffer as responseType',
function (assert) {
var pretender = this.pretender;
var done = assert.async();
function testXHR() {
this.pretender = pretender;
this.open = function () {};
this.setRequestHeader = function () {};
this.upload = {};
this.responseType = '';
this.send = {
pretender: pretender,
apply: function (xhr /*, argument*/) {
assert.equal(xhr.responseType, 'arraybuffer');
this.pretender.resolve(xhr);
done();
},
};
}
pretender._nativeXMLHttpRequest = testXHR;
pretender.get('/some/path', pretender.passthrough);
var xhr = new window.XMLHttpRequest();
xhr.open('GET', '/some/path');
xhr.responseType = 'arraybuffer';
xhr.send();
}
);
it(
'asynchronous request with pass-through and ' +
'blob as responseType',
function(assert) {
var pretender = this.pretender;
var done = assert.async();
function testXHR() {
this.pretender = pretender;
this.open = function() {};
this.setRequestHeader = function() {};
this.upload = {};
this.responseType = '';
this.send = {
pretender: pretender,
apply: function(xhr, argument) {
assert.equal(xhr.responseType, 'blob');
this.pretender.resolve(xhr);
done();
}
};
}
pretender._nativeXMLHttpRequest = testXHR;
pretender.get('/some/path', pretender.passthrough);
var xhr = new window.XMLHttpRequest();
xhr.open('GET', '/some/path');
xhr.responseType = 'blob';
xhr.send();
}
);
it('synchronous request has timeout=0, withCredentials and onprogress event', function (assert) {
var pretender = this.pretender;
var done = assert.async();
function testXHR() {
this.open = function () {};
this.setRequestHeader = function () {};
this.upload = {};
this.send = {
pretender: pretender,
apply: function (xhr /*, argument*/) {
assert.equal(xhr.timeout, 0);
assert.ok(!('withCredentials' in xhr));
assert.ok(!('onprogress' in xhr));
this.pretender.resolve(xhr);
done();
},
};
}
Object.defineProperty(testXHR, 'timeout', {
get() {
return 0;
},
set() {
throw new Error(
'Timeouts cannot be set for synchronous requests made from a document.'
);
},
});
pretender._nativeXMLHttpRequest = testXHR;
pretender.post('/some/path', pretender.passthrough);
var xhr = new window.XMLHttpRequest();
xhr.open('POST', '/some/path', false);
xhr.withCredentials = true;
xhr.send('some data');
});
it('synchronous request has timeout missing will set to 0', function (assert) {
var pretender = this.pretender;
var done = assert.async();
function testXHR() {
this.open = function () {};
this.setRequestHeader = function () {};
this.upload = {};
this.send = {
pretender: pretender,
apply: function (xhr /*, argument*/) {
assert.equal(xhr.timeout, 0);
assert.ok(!('withCredentials' in xhr));
assert.ok(!('onprogress' in xhr));
this.pretender.resolve(xhr);
done();
},
};
}
pretender._nativeXMLHttpRequest = testXHR;
pretender.post('/some/path', pretender.passthrough);
var xhr = new window.XMLHttpRequest();
xhr.open('POST', '/some/path', false);
xhr.withCredentials = true;
xhr.send('some data');
});
it('asynchronous request fires events', function (assert) {
assert.expect(6);
var pretender = this.pretender;
var done = assert.async();
pretender.post('/some/:route', pretender.passthrough);
var onEvents = {
load: false,
progress: false,
readystatechange: false,
};
var listenerEvents = {
load: false,
progress: false,
readystatechange: false,
};
var xhr = new window.XMLHttpRequest();
xhr.open('POST', '/some/otherpath');
xhr.addEventListener('progress', function _progress() {
listenerEvents.progress = true;
});
xhr.onprogress = function _onprogress() {
onEvents.progress = true;
};
xhr.addEventListener('load', function _load() {
listenerEvents.load = true;
finishNext();
});
xhr.onload = function _onload() {
onEvents.load = true;
finishNext();
};
xhr.addEventListener('readystatechange', function _load() {
if (xhr.readyState == 4) {
listenerEvents.readystatechange = true;
finishNext();
}
});
xhr.onreadystatechange = function _onload() {
if (xhr.readyState == 4) {
onEvents.readystatechange = true;
finishNext();
}
};
xhr.send();
// call `finish` in next tick to ensure both load event handlers
// have a chance to fire.
function finishNext() {
setTimeout(finishOnce, 1);
}
var finished = false;
function finishOnce() {
if (!finished) {
finished = true;
assert.ok(onEvents.load, 'onload called');
assert.ok(onEvents.progress, 'onprogress called');
assert.ok(onEvents.readystatechange, 'onreadystate called');
assert.ok(listenerEvents.load, 'load listener called');
assert.ok(listenerEvents.progress, 'progress listener called');
assert.ok(
listenerEvents.readystatechange,
'readystate listener called'
);
done();
}
}
});
it('asynchronous request fires upload progress events', function (assert) {
assert.expect(2);
var pretender = this.pretender;
var done = assert.async();
pretender.post('/some/:route', pretender.passthrough);
var onEvents = {
progress: false,
};
var listenerEvents = {
progress: false,
};
var xhr = new window.XMLHttpRequest();
xhr.open('POST', '/some/otherpath');
xhr.upload.addEventListener('progress', function _progress() {
listenerEvents.progress = true;
});
xhr.upload.onprogress = function _onprogress() {
onEvents.progress = true;
};
xhr.onload = function _onload() {
setTimeout(finish, 1);
};
xhr.send('some data');
// ensure the test ends
var failTimer = setTimeout(function () {
assert.ok(false, 'test timed out');
done();
}, 500);
var finished = false;
function finish() {
if (!finished) {
finished = true;
clearTimeout(failTimer);
assert.ok(onEvents.progress, 'onprogress called');
assert.ok(listenerEvents.progress, 'progress listener called');
done();
}
}
});
it('asynchronous request with pass-through and empty response', function (assert) {
var done = assert.async();
var pretender = this.pretender;
function testXHR() {
this.pretender = pretender;
this.open = function () {};
this.setRequestHeader = function () {};
this.responseText = '';
this.response = '';
this.onload = true;
this.send = {
pretender: pretender,
apply: function (xhr /*, argument*/) {
xhr.onload({ target: xhr, type: 'load' });
},
};
}
pretender._nativeXMLHttpRequest = testXHR;
pretender.get('/some/path', pretender.passthrough);
var xhr = new window.XMLHttpRequest();
xhr.open('GET', '/some/path');
xhr.addEventListener('load', function _onload(event) {
assert.equal(
xhr.responseText,
event.target.responseText,
'responseText for real and fake xhr are both blank strings'
);
assert.equal(
xhr.response,
event.target.response,
'response for real and fake xhr are both blank strings'
);
done();
});
xhr.send();
});
describe('the `.passthrough()` property', function () {
it('allows a passthrough on an unhandledRequest', function (assert) {
var done = assert.async();
this.pretender.unhandledRequest = function (_verb, _path, request) {
request.passthrough();
};
$.ajax({
url: '/some/path',
error: function (xhr) {
assert.equal(xhr.status, 404);
done();
},
});
});
it('returns a native xhr', function (assert) {
var done = assert.async();
var pretender = this.pretender;
function testXHR() {
this.pretender = pretender;
this.open = function () {};
this.setRequestHeader = function () {};
this.responseText = '';
this.response = '';
this.onload = true;
this.send = {
pretender: pretender,
apply: function (xhr /*, argument*/) {
xhr.onload({ target: xhr, type: 'load' });
},
};
}
pretender._nativeXMLHttpRequest = testXHR;
var xhr = new window.XMLHttpRequest();
xhr.open('GET', '/some/path');
this.pretender.unhandledRequest = function (_verb, _path, request) {
var referencedXhr = request.passthrough();
assert.ok(referencedXhr instanceof testXHR);
done();
};
xhr.send();
});
});
});