-
Notifications
You must be signed in to change notification settings - Fork 89
/
mockserver.js
413 lines (358 loc) · 10.2 KB
/
mockserver.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
const fs = require('fs');
const path = require('path');
const colors = require('colors');
const join = path.join;
const Combinatorics = require('js-combinatorics');
const normalizeHeader = require('header-case-normalizer');
const Monad = require('./monad');
const importHandler = require('./handlers/importHandler');
const headerHandler = require('./handlers/headerHandler');
const evalHandler = require('./handlers/evalHandler');
/**
* Returns the status code out of the
* first line of an HTTP response
* (ie. HTTP/1.1 200 Ok)
*/
function parseStatus(header) {
const regex = /(?<=HTTP\/\d.\d\s{1,1})(\d{3,3})(?=[a-z0-9\s]+)/gi;
if (!regex.test(header)) throw new Error('Response code should be valid string');
const res = header.match(regex);
return res.join('');
}
/**
* Parses an HTTP header, splitting
* by colon.
*/
const parseHeader = function (header, context, request) {
header = header.split(': ');
return { key: normalizeHeader(header[0]), value: parseValue(header[1], context, request) };
};
const parseValue = function(value, context, request) {
return Monad
.of(value)
.map((value) => importHandler(value, context, request))
.map((value) => headerHandler(value, request))
.map((value) => evalHandler(value, request))
.join();
};
/**
* Prepares headers to watch, no duplicates, non-blanks.
* Priority exports over ENV definition.
*/
const prepareWatchedHeaders = function() {
const exportHeaders =
module.exports.headers && module.exports.headers.toString();
const headers = (exportHeaders || process.env.MOCK_HEADERS || '').split(',');
return headers.filter(function(item, pos, self) {
return item && self.indexOf(item) == pos;
});
};
/**
* Combining the identically named headers
*/
const addHeader = function(headers, line) {
const { key, value } = parseHeader(line);
if (headers[key]) {
headers[key] = [...(Array.isArray(headers[key]) ? headers[key] : [headers[key]]), value];
} else {
headers[key] = value;
}
}
/**
* Parser the content of a mockfile
* returning an HTTP-ish object with
* status code, headers and body.
*/
const parse = function(content, file, request) {
const context = path.parse(file).dir + '/';
const headers = {};
let body;
const bodyContent = [];
content = content.split(/\r?\n/);
const status = Monad
.of(content[0])
.map((value) => importHandler(value, context, request))
.map((value) => evalHandler(value, context, request))
.map(parseStatus)
.join();
let headerEnd = false;
delete content[0];
content.forEach(function(line) {
switch (true) {
case headerEnd:
bodyContent.push(line);
break;
case line === '' || line === '\r':
headerEnd = true;
break;
default:
addHeader(headers, line);
break;
}
});
body = Monad
.of(bodyContent.join('\n'))
.map((value) => importHandler(value, context, request))
.map((value) => evalHandler(value, context, request))
.join();
return { status: status, headers: headers, body: body };
};
function removeBlanks(array) {
return array.filter(function(i) {
return i;
});
}
/**
* This method will look for a header named Response-Delay. When set it
* delay the response in that number of milliseconds simulating latency
* for HTTP calls.
*
* Example from a file:
* Response-Delay: 5000
*
* @param {mock.headers} headers : {
* 'Response-Delay': is the property name,
* 'value': Positive integer value
*/
const getResponseDelay = function(headers) {
if (headers && headers.hasOwnProperty('Response-Delay')) {
let delayVal = parseInt(headers['Response-Delay'], 10);
delayVal = isNaN(delayVal) || delayVal < 0 ? 0 : delayVal;
return delayVal;
}
return 0;
};
function getWildcardPath(dir) {
let steps = removeBlanks(dir.split('/'));
let testPath;
let newPath;
let exists = false;
while (steps.length) {
steps.pop();
testPath = join(steps.join('/'), '/__');
exists = fs.existsSync(join(mockserver.directory, testPath));
if (exists) {
newPath = testPath;
}
}
const res = getDirectoriesRecursive(mockserver.directory)
.filter(dir => {
const directories = dir.split(path.sep);
return directories.includes('__');
})
.sort((a, b) => {
const aLength = a.split(path.sep);
const bLength = b.split(path.sep);
if (aLength == bLength) return 0;
// Order from longest file path to shortest.
return aLength > bLength ? -1 : 1;
})
.map(dir => {
const steps = dir.split(path.sep);
const baseDir = mockserver.directory.split(path.sep);
steps.splice(0, baseDir.length);
return steps.join(path.sep);
});
steps = removeBlanks(dir.split('/'));
newPath = matchWildcardPaths(res, steps) || newPath;
return newPath;
}
function matchWildcardPaths(res, steps) {
for (let resIndex = 0; resIndex < res.length; resIndex++) {
const dirSteps = res[resIndex].split(/\/|\\/);
if (dirSteps.length !== steps.length) {
continue;
}
const result = matchWildcardPath(steps, dirSteps);
if (result) {
return result;
}
}
return null;
}
function matchWildcardPath(steps, dirSteps) {
for (let stepIndex = 1; stepIndex <= steps.length; stepIndex++) {
const step = steps[steps.length - stepIndex];
const dirStep = dirSteps[dirSteps.length - stepIndex];
if (step !== dirStep && dirStep != '__') {
return null;
}
}
return '/' + dirSteps.join('/');
}
function flattenDeep(directories) {
return directories.reduce(
(acc, val) =>
Array.isArray(val) ? acc.concat(flattenDeep(val)) : acc.concat(val),
[]
);
}
function getDirectories(srcpath) {
return fs
.readdirSync(srcpath)
.map(file => path.join(srcpath, file))
.filter(path => fs.statSync(path).isDirectory());
}
function getDirectoriesRecursive(srcpath) {
const nestedDirectories = getDirectories(srcpath).map(
getDirectoriesRecursive
);
const directories = flattenDeep(nestedDirectories);
directories.push(srcpath);
return directories;
}
/**
* Returns the body or query string to be used in
* the mock name.
*
* In any case we will prepend the value with a double
* dash so that the mock files will look like:
*
* POST--My-Body=123.mock
*
* or
*
* GET--query=string&hello=hella.mock
*/
function getBodyOrQueryString(body, query) {
if (query) {
return '--' + query;
}
if (body && body !== '') {
return '--' + body;
}
return body;
}
/**
* Ghetto way to get the body
* out of the request.
*
* There are definitely better
* ways to do this (ie. npm/body
* or npm/body-parser) but for
* the time being this does it's work
* (ie. we don't need to support
* fancy body parsing in mockserver
* for now).
*/
function getBody(req, callback) {
let body = '';
req.on('data', function(b) {
body = body + b.toString();
});
req.on('end', function() {
callback(body);
});
}
function getMockedContent(path, prefix, body, query) {
const mockName = prefix + (getBodyOrQueryString(body, query) || '') + '.mock';
const mockFile = join(mockserver.directory, path, mockName);
let content;
try {
content = fs.readFileSync(mockFile, { encoding: 'utf8' });
if (mockserver.verbose) {
console.log(
'Reading from ' + mockFile.yellow + ' file: ' + 'Matched'.green
);
}
} catch (err) {
if (mockserver.verbose) {
console.log(
'Reading from ' + mockFile.yellow + ' file: ' + 'Not matched'.red
);
}
content = (body || query) && getMockedContent(path, prefix);
}
return content;
}
function getContentFromPermutations(path, method, body, query, permutations) {
let content, prefix;
while (permutations.length) {
prefix = method + permutations.pop().join('');
content = getMockedContent(path, prefix, body, query) || content;
}
return { content: content, prefix: prefix };
}
const mockserver = {
directory: '.',
verbose: false,
headers: [],
init: function(directory, verbose) {
this.directory = directory;
this.verbose = !!verbose;
this.headers = prepareWatchedHeaders();
},
handle: function(req, res) {
getBody(req, function(body) {
req.body = body;
const url = req.url;
let path = url;
const queryIndex = url.indexOf('?'),
query =
queryIndex >= 0 ? url.substring(queryIndex).replace(/\?/g, '') : '',
method = req.method.toUpperCase(),
headers = [];
if (queryIndex > 0) {
path = url.substring(0, queryIndex);
}
if (req.headers && mockserver.headers.length) {
mockserver.headers.forEach(function(header) {
header = header.toLowerCase();
if (req.headers[header]) {
headers.push(
'_' + normalizeHeader(header) + '=' + req.headers[header]
);
}
});
}
// Now, permute the possible headers, and look for any matching files, prioritizing on
// both # of headers and the original header order
let matched,
permutations = [[]];
if (headers.length) {
permutations = Combinatorics.permutationCombination(headers)
.toArray()
.sort(function(a, b) {
return b.length - a.length;
});
permutations.push([]);
}
matched = getContentFromPermutations(
path,
method,
body,
query,
permutations.slice(0)
);
if (!matched.content && (path = getWildcardPath(path))) {
matched = getContentFromPermutations(
path,
method,
body,
query,
permutations.slice(0)
);
}
if (matched.content) {
const mock = parse(
matched.content,
join(mockserver.directory, path, matched.prefix),
req
);
const delay = getResponseDelay(mock.headers);
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 0, 0, delay);
res.writeHead(mock.status, mock.headers);
return res.end(mock.body);
} else {
res.writeHead(404);
res.end('Not Mocked');
}
});
},
};
module.exports = function(directory, silent) {
mockserver.init(directory, silent);
return mockserver.handle;
};
module.exports.headers = null;
module.exports.getResponseDelay = getResponseDelay;