-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdummyserver-config.js
431 lines (425 loc) · 12.2 KB
/
dummyserver-config.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
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
/* jshint -W020 */
if(typeof window === 'undefined') {
window = {};
} else {
global = window;
}
if(typeof location === 'undefined') {
location = {};
}
/* jshint +W020 */
window._httpinvoke = window.httpinvoke;
// basic
window._cfg = {
dummyserverPort: 1337,
dummyserverPortAlternative: 1338,
crossOriginUrl: null,
sameOriginUrl: null,
setCookie: function(cookie) {
'use strict';
if(global.document) {
global.document.cookie = cookie;
}
},
/* # Statuses from RFC 2616
*
* ## Not tested statuses, with reasons
*
* 100 Continue: technical status, not semantic, irrelevant for practical use
* 101 Switching Protocols: technical status, not semantic, irrelevant for practical use
* 205 Reset Content: Roy T. Fielding: "The most common use of 205 is within custom HTTP systems, not browsers.": http://w3-org.9356.n7.nabble.com/p2-deprecating-205-Reset-Content-tp253298p253354.html
* 401 Unauthorized: Chrome 29.0 throws an authorization dialog, when the mandatory header 'WWW-Authenticate' is set
* 407 Proxy Authentication Required: not useful, Chrome 29.0 sends "some type" of network error
* 411 Length Required: Content-Length is always sent by browsers
* 417 Expectation Failed: the required header 'Expect' is not allowed by browsers
*
* ## Statuses that should work, but should not be used, with reasons
*
* ### 3XX with Location header set
*
* Causes various unexpected behaviors - browsers are supposed to redirect,
* also Karma test runner proxy failure.
*
* ### 3XX without Location header set
*
* 301, 302, 303, 307 GET same-origin:
* - IE 8.0 returns status 12150, which is WinInet error code ERROR_HTTP_HEADER_NOT_FOUND The requested header could not be located
*
* 301, 302, 303, 307 POST:
* - fails ("write EPIPE" error) on node
*
* 300, 305 POST:
* - Karma test runner proxy failure
*
* 305 GET:
* - Opera 12.10 responseText: <HTML><HEAD><TITLE>Redirect to alternative proxy</TITLE></HEAD><BODY>The server tried to redirect Opera to the alternative proxy "". For security reasons this is no longer supported.<BR><BR><HR>Generated by Opera ©</BODY></HTML>
*
* 300 GET:
* - Opera 12.10 times out
*
* 304 POST:
* - By RFC2616 impossible
*
*/
status: {
// OK
'200': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: true
}]
},
// Created
'201': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: true
}]
},
// Accepted
'202': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: true
}]
},
// Non-Authoritative Information
'203': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: true
}]
},
// No Content
'204': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}],
PATCH: [{
requestEntity: true,
partialResponse: false,
responseEntity: false
}]
},
// Partial Content
'206': {
GET: [{
requestEntity: false,
partialResponse: true,
responseEntity: true
}]
},
// Not Modified
'304': {
GET: [{
ifModified: true,
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Bad Request
'400': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Payment Required
'402': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Forbidden
'403': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Not Found
'404': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Method Not Allowed
'405': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Not Acceptable
'406': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Request Timeout
'408': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Conflict
'409': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Gone
'410': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Precondition Failed
'412': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Request Entity Too Large
'413': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Request-URI Too Long
'414': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Unsupported Media Type
'415': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Requested Range Not Satisfiable
'416': {
GET: [{
requestEntity: false,
partialResponse: true,
responseEntity: false
}]
},
// Internal Server Error
'500': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Not Implemented
'501': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Bad Gateway
'502': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Service Unavailable
'503': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// Gateway Timeout
'504': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
},
// HTTP Version Not Supported
'505': {
GET: [{
requestEntity: false,
partialResponse: false,
responseEntity: false
}]
}
},
makeTextFinished: function(done) {
'use strict';
var cfg = require('./dummyserver-config');
return function(err, output) {
if(err) {
return done(err);
}
if(typeof output !== 'string') {
return done(new Error('Received output is not a string'));
}
if(output !== cfg.textTest()) {
return done(new Error('Received output ' + output + ' is not equal to expected output ' + cfg.textTest()));
}
done();
};
},
makeByteArrayFinished: function(done) {
'use strict';
var cfg = require('./dummyserver-config');
return function(err, output) {
if(err) {
return done(err);
}
var expected = cfg.bytearrayTest();
if(typeof output !== 'object' || output === null) {
return done(new Error('Received output is not a non-null object'));
}
if(output.length !== expected.length) {
return done(new Error('Received output length ' + output.length + ' is not equal to expected output length ' + expected.length));
}
var failures = [];
for(var i = 0; i < output.length; i += 1) {
if(output[i] !== expected[i]) {
failures.push(i + 'th byte: ' + output[i] + ' !== ' + expected[i]);
}
}
if(failures.length > 0) {
return done(new Error('Some received bytes differ from expected: ' + failures.join(',')));
}
done();
};
},
eachBase: function(fn) {
'use strict';
if(this.sameOriginUrl) {
try {
fn(' (same-origin)', this.sameOriginUrl, false);
} catch(_) {
}
}
if(this.crossOriginUrl) {
try {
fn(' (cross-origin)', this.crossOriginUrl, true);
} catch(_) {
}
}
},
jsonTest: function() {
'use strict';
return [{
a: 0,
b: false,
c: 'false',
d: null
}];
},
jsonTestPasses: function(json) {
'use strict';
if(typeof json !== 'object' || json === null) {
return false;
}
if(!(json instanceof Array)) {
return false;
}
if(typeof json[0] !== 'object' || json === null) {
return false;
}
if(!(json[0] instanceof Object)) {
return false;
}
if(json[0].a !== 0) {
return false;
}
if(json[0].b !== false) {
return false;
}
if(json[0].c !== 'false') {
return false;
}
if(json[0].d !== null) {
return false;
}
return true;
},
textTest: function() {
'use strict';
return 'ąčęėįšųū„“–ž1234567890-=!@#$%^&*()_+´¬¿,./;[]';
},
bytearrayTest: function() {
'use strict';
var i, bytes = [];
for(i = 0; i < 64; i += 1) {
bytes.push(0);
}
for(i = 255; i >= 0; i -= 1) {
bytes.push(i);
}
for(i = 0; i <= 255; i += 1) {
bytes.push(i);
}
return bytes;
}
};
if(location.protocol === 'http:' || location.protocol === 'https:') {
window._cfg.sameOriginUrl = location.protocol + '//' + location.hostname + ':' + window._cfg.dummyserverPort + '/';
window._cfg.crossOriginUrl = location.protocol + '//' + location.hostname + ':' + window._cfg.dummyserverPortAlternative + '/';
} else {
window._cfg.crossOriginUrl = 'http://127.0.0.1:' + window._cfg.dummyserverPort + '/';
}
window.require = function(module) {
'use strict';
if(module === '../dummyserver-config' || module === './dummyserver-config') {
return window._cfg;
}
return window._httpinvoke;
};
if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports = window._cfg;
}
if(!global.console) {
global.console = {
_log: [],
log: function() {
'use strict';
this._log.push([].slice.call(arguments));
}
};
}