-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs-host.js
More file actions
477 lines (421 loc) · 15.1 KB
/
Copy pathjs-host.js
File metadata and controls
477 lines (421 loc) · 15.1 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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
'use strict';
var fs = require('fs');
var path = require('path');
var assert = require('./utils').assert;
var child_process = require('child_process');
var _ = require('lodash');
var spawnSync = require('spawn-sync'); // node 0.10.x support
var request = require('request');
var tmp = require('tmp');
var Host = require('..');
var Manager = require('../lib/Manager');
var utils = require('./utils');
var version = require('../package').version;
var postToHost = utils.postToHost;
var postToManager = utils.postToManager;
var pathToBin = path.join(__dirname, '..', 'bin', 'js-host.js');
var pathToTestConfig = path.join(__dirname, 'test_config', 'config.js');
var pathToEmptyConfig = path.join(__dirname, 'test_config', 'empty.js');
var pathToLogfileConfig = path.join(__dirname, 'test_config', 'logfile.js');
// Node 0.10.x seems to provide few details when reporting errors across processes,
// so we need to assume less helpful behaviour when testing it
var IS_NODE_ZERO_TEN = _.startsWith(process.version, 'v0.10');
describe('bin/js-host.js', function() {
it('can read in a config and start a properly configured host', function(done) {
var child = child_process.spawn(
'node', [pathToBin, pathToTestConfig]
);
child.on('error', function(err) {
throw err;
});
var host = new Host(
_.defaults({silent: true}, require('./test_config/config.js'))
);
// Wait for stdout, which should indicate the server's running
child.stdout.once('data', function(data) {
assert.equal(data.toString(), 'Host listening at 127.0.0.1:8008\n');
postToHost(host, 'echo', {data: {echo: 'echo-test'}}, function(err, res, body) {
assert.isNull(err);
assert.equal(body, 'echo-test');
postToHost(host, 'echo_async', function(err, res, body) {
assert.equal(res.statusCode, 500);
assert.include(body, '`echo` data not provided');
postToHost(host, 'echo_async', {data: {echo: 'echo_async-test'}}, function(err, res, body) {
assert.isNull(err);
assert.equal(body, 'echo_async-test');
postToHost(host, 'echo_async', function(err, res, body) {
assert.isNull(err);
assert.equal(res.statusCode, 500);
assert.include(body, '`echo` data not provided');
child.kill();
done();
});
});
});
});
});
var stderr = '';
child.stderr.on('data', function(data) {
stderr += data.toString();
});
child.on('exit', function(data) {
if (stderr) {
throw new Error(stderr);
}
});
});
it('an error thrown within a function will not take down the process', function(done) {
var child = child_process.spawn(
'node', [pathToBin, pathToTestConfig]
);
child.on('error', function(err) {
throw err;
});
var host = new Host(
_.defaults({silent: true}, require('./test_config/config.js'))
);
var stderr = '';
child.stderr.on('data', function(data) {
stderr += data.toString();
});
// Wait for stdout, which should indicate the server's running
child.stdout.once('data', function(data) {
assert.equal(data.toString(), 'Host listening at 127.0.0.1:8008\n');
postToHost(host, 'error', function(err, res, body) {
assert.equal(res.statusCode, 500);
assert.include(body, 'Error: Error function');
postToHost(host, 'echo', {data: {echo: 'echo-test'}}, function(err, res, body) {
assert.equal(body, 'echo-test');
child.kill();
assert.include(stderr, 'Error: Error function');
done();
});
});
});
});
it('an uncaught error thrown will take down the process', function(done) {
var child = child_process.spawn(
'node', [pathToBin, pathToTestConfig]
);
child.on('error', function(err) {
throw err;
});
var host = new Host(
_.defaults({silent: true}, require('./test_config/config.js'))
);
var stderr = '';
child.stderr.on('data', function(data) {
stderr += data.toString();
});
var hasCompleted = false;
var hasExited = false;
child.on('exit', function() {
if (hasCompleted) return done();
hasExited = true;
});
// Wait for stdout, which should indicate the server's running
child.stdout.once('data', function(data) {
assert.equal(data.toString(), 'Host listening at 127.0.0.1:8008\n');
postToHost(host, 'error_async', function(err, res, body) {
assert.instanceOf(err, Error);
setTimeout(function() {
assert.include(stderr, 'Error: Error function');
if (hasExited) return done();
hasCompleted = true;
}, 10);
});
});
});
it('can output the config of a host', function() {
var output = spawnSync(
'node', [pathToBin, pathToTestConfig, '--config']
);
var obj = JSON.parse(output.stdout.toString());
assert.equal(obj.version, version);
assert.equal(obj.type, 'Host');
assert.isObject(obj.config);
assert.equal(obj.config.address, '127.0.0.1');
assert.equal(obj.config.port, 8008);
assert.isArray(obj.config.functions);
assert.equal(obj.config.functions.length, 5);
});
it('can start listening and output the config as JSON', function(done) {
var child = child_process.spawn(
'node', [pathToBin, pathToTestConfig, '--json']
);
child.on('error', function(err) {
throw err;
});
child.stderr.on('data', function(data) {
throw new Error(data.toString());
});
child.stdout.once('data', function(data) {
var obj = JSON.parse(data.toString());
assert.equal(obj.version, version);
assert.equal(obj.type, 'Host');
assert.equal(obj.config.address, '127.0.0.1');
assert.equal(obj.config.port, 8008);
assert.isArray(obj.config.functions);
assert.equal(obj.config.functions.length, 5);
child.kill();
done();
});
});
it('can override the config\'s port when starting a host', function(done) {
var child = child_process.spawn(
'node', [pathToBin, pathToTestConfig, '--port', '8080', '--json']
);
child.on('error', function(err) {
throw err;
});
child.stderr.on('data', function(data) {
throw new Error(data.toString());
});
var testConfig = require(pathToTestConfig);
assert.equal(testConfig.port, 8008);
child.stdout.once('data', function(data) {
var obj = JSON.parse(data.toString());
assert.equal(obj.version, version);
assert.equal(obj.type, 'Host');
assert.equal(obj.config.address, '127.0.0.1');
assert.equal(obj.config.port, '8080');
assert.notEqual(
// Ensure both ports are coerced to the same type
'' + obj.config.port,
'' + testConfig.port
);
assert.isArray(obj.config.functions);
assert.equal(obj.config.functions.length, 5);
var host = new Host({
silent: true,
port: obj.config.port
});
assert.equal(host.getUrl(), 'http://127.0.0.1:8080');
postToHost(host, 'echo', {data: {echo: 'foo'}}, function(err, res, body) {
assert.isNull(err);
assert.equal(body, 'foo');
child.kill();
done();
});
});
});
it('can start a manager process which can start/host/stop hosts', function(done) {
this.timeout(5000);
var child = child_process.spawn(
'node', [pathToBin, pathToTestConfig, '--manager', '--json']
);
child.on('error', function(err) {
throw err;
});
child.stderr.once('data', function(data) {
throw new Error(data.toString());
});
child.stdout.once('data', function(data) {
var output = data.toString();
var obj = JSON.parse(output);
_.assign(obj.config, {
functions: null,
silent: true
});
var manager = new Manager(obj.config);
postToManager(manager, '/host/start', {config: pathToTestConfig}, function(err, res, body) {
assert.isNull(err);
assert.notEqual(body, output);
var hostConfig = JSON.parse(body.output).config;
hostConfig.silent = true;
assert.equal(hostConfig.address, '127.0.0.1');
assert.isNumber(hostConfig.port);
var host = new Host(_.omit(hostConfig, 'functions'));
postToHost(host, 'echo', {data: {echo: 'test'}}, function(err, res, body) {
assert.isNull(err);
assert.equal(body, 'test');
postToManager(manager, '/host/stop', {config: pathToTestConfig}, function(err, res, body) {
assert.isNull(err);
assert.deepEqual(
JSON.parse(body.output).config,
_.omit(hostConfig, 'silent')
);
setTimeout(function() {
postToHost(host, 'echo', {data: {echo: 'test'}}, function(err, res, body) {
assert.instanceOf(err, Error);
child.kill();
done();
});
}, 50);
});
});
});
});
});
it('can have a manager process automatically exit once the final connection to a host has closed', function(done) {
this.timeout(5000);
var child = child_process.spawn(
'node', [pathToBin, pathToTestConfig, '--manager', '--json']
);
child.on('error', function(err) {
throw err;
});
child.stderr.on('data', function(data) {
throw new Error(data.toString());
});
var hasCompleted = false;
var hasExited = false;
child.once('exit', function() {
if (hasCompleted) return done();
hasExited = true;
});
child.stdout.once('data', function(data) {
var output = data.toString();
var config = JSON.parse(output).config;
config.silent = true;
var manager = new Manager(config);
postToManager(manager, '/host/start', {config: pathToTestConfig}, function(err, res, body) {
assert.isNull(err);
assert.notEqual(body, output);
var hostConfig = JSON.parse(body.output).config;
hostConfig.silent = true;
assert.equal(hostConfig.address, '127.0.0.1');
assert.isNumber(hostConfig.port);
var host = new Host(_.omit(hostConfig, 'functions'));
postToManager(manager, '/host/connect', {config: pathToTestConfig}, function(err, res, body) {
assert.isNull(err);
var connection1 = body.connection;
assert.isString(connection1);
postToManager(manager, '/host/connect', {config: pathToTestConfig}, function(err, res, body) {
assert.isNull(err);
var connection2 = body.connection;
assert.isString(connection2);
postToManager(manager, '/host/disconnect', {config: pathToTestConfig, connection: connection1}, function(err, res, body) {
assert.isNull(err);
assert.isObject(body);
assert.equal(body.config, pathToTestConfig);
assert.isTrue(body.started);
assert.equal(body.status, 'Disconnected');
assert.isNull(body.stopTimeout);
postToManager(manager, '/host/disconnect', {config: pathToTestConfig, connection: connection2}, function(err, res, body) {
assert.isNull(err);
assert.isObject(body);
assert.equal(body.config, pathToTestConfig);
assert.isTrue(body.started);
assert.equal(body.status, 'Disconnected. Stopping host in 200ms');
assert.equal(body.stopTimeout, 200);
setTimeout(function () {
postToHost(host, 'echo', {data: {echo: 'test'}}, function (err, res, body) {
assert.instanceOf(err, Error);
request(manager.getUrl() + '/status', function (err, res, body) {
assert.instanceOf(err, Error);
if (hasExited) return done();
hasCompleted = true;
});
});
}, 250);
});
});
});
});
});
});
});
it('can stop a manager process at the /manager/stop endpoint', function(done) {
this.timeout(5000);
var child = child_process.spawn(
'node', [pathToBin, pathToTestConfig, '--manager', '--json']
);
child.on('error', function(err) {
throw err;
});
child.stderr.on('data', function(data) {
throw new Error(data.toString());
});
var hasCompleted = false;
var hasExited = false;
child.once('exit', function() {
if (hasCompleted) return done();
hasExited = true;
});
child.stdout.once('data', function(data) {
var output = data.toString();
var config = JSON.parse(output).config;
_.assign(config, {
functions: null,
silent: true
});
var manager = new Manager(config);
postToManager(manager, '/manager/stop', function(err, res, body) {
assert.isNull(err);
assert.equal(body, 'Stopping...');
setTimeout(function() {
if (hasExited) return done();
hasCompleted = true;
}, 20);
});
});
});
it('throws an error if a config file does not exist', function(done) {
var child = child_process.spawn(
'node', [pathToBin, '/missing/file.js']
);
child.on('error', function(err) {
throw err;
});
child.stderr.once('data', function(data) {
var output = data.toString();
if (!IS_NODE_ZERO_TEN) {
assert.include(output, '/missing/file.js');
}
child.kill();
done();
});
});
it('throws an error if a config file does not export an object', function(done) {
var child = child_process.spawn(
'node', [pathToBin, pathToEmptyConfig]
);
child.on('error', function(err) {
throw err;
});
child.stderr.once('data', function(data) {
var output = data.toString();
if (!IS_NODE_ZERO_TEN) {
assert.include(output, 'Config file does not export an object');
assert.include(output, pathToEmptyConfig);
}
child.kill();
done();
});
});
it('can write the logger output to a particular file', function(done) {
var filename = tmp.fileSync().name;
var child = child_process.spawn(
'node', [pathToBin, pathToLogfileConfig, '--json', '--logfile', filename]
);
var config = require(pathToLogfileConfig);
var initialOutput;
child.on('error', function(err) {
throw err;
});
child.stderr.on('data', function(data) {
throw new Error(data.toString());
});
child.stdout.once('data', function(data) {
initialOutput = data.toString();
var host = new Host({
silent: true,
port: config.port
});
assert.equal(host.getUrl(), 'http://127.0.0.1:8008');
postToHost(host, 'echo', {data: {echo: 'foo'}}, function(err, res, body) {
assert.isNull(err);
assert.equal(body, 'foo');
setTimeout(function() {
var contents = fs.readFileSync(filename).toString();
assert.include(contents, 'POST /function/echo');
assert.include(contents, 'Calling function "echo"');
assert.include(contents, 'Function: echo completed');
child.kill();
done();
}, 50);
});
});
});
});