-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathremote-process-simulator.js
44 lines (35 loc) · 1.1 KB
/
remote-process-simulator.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
// Test dependencies are required and exposed in common/bootstrap.js
require('./bootstrap');
function RemoteProcessSimulator() {
this.stdin = new stream.Writable();
this.control = new stream.Writable();
this.stdout = new stream.Readable();
this.stderr = new stream.Readable();
this.stdout._read = function() {};
this.stderr._read = function() {};
this.control._write = (command, enc, cb) => {
// Emit commands for validation in tests
this.emit('control', command);
// Call the callback so we can receive more
cb();
};
var stdinRecorder = (command, enc, cb) => {
// Emit new data
this.emit('stdin', command);
// Call the callback so we can receive more
cb();
};
this.stdin._write = stdinRecorder;
// If a process tries to end stdin
this.stdin.on('finish', () => {
// Create a new writable
this.stdin = new stream.Writable();
// Keep recording what gets written
this.stdin._write = stdinRecorder;
});
this.close = () => {
this.emit('close');
};
}
util.inherits(RemoteProcessSimulator, Emitter);
module.exports = RemoteProcessSimulator;