-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.js
46 lines (34 loc) · 898 Bytes
/
client.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
const _ = require('underscore');
const async = require('async');
const net = require('net');
const readline = require('readline');
module.exports = class Client {
constructor(port) {
this._port = port;
}
run(commands, done) {
function reject(msg) {
s.destroy();
done(msg);
}
done = _.once(done);
var s = net.connect({port: this._port}),
rl = readline.createInterface({input: s}),
handshaked = false,
output = [];
s.on('error', done);
rl.on('line', line => {
if (handshaked) {
output.push(line);
return;
}
handshaked = true;
if (line !== 'hello')
return reject('Expected: hello');
s.write(commands.map(c => c + '\r\n').join(' '));
s.write('quit\r\n');
});
rl.on('close', () => done(null, output));
setTimeout(() => done('timeout'), 1000);
}
}