强制nodejs + ssh2成为阻塞调用

时间:2014-03-26 10:51:19

标签: node.js node-async

我想知道是否可以以阻塞的方式运行node-ssh2中提供的方法。

我正在使用node-vows测试我的代码。

conn-test.js的片段

suite = vows.describe("conn-test");
suite.addBatch({
    topic: function () {
         return new Connection("1.2.3.4", "root", "oopsoops");
    }
    "run ls": function (conn) {
         conn.send("ls");
    }
});

conn.js的片段

var ssh2 = require("ssh2");
function Connection(ip, user, pw) {
    //following attributes will be used on this.send()
    this.sock = new ssh2();
    this.ip = ip;
    this.user = user;
    this.pw = pw;
}
Connection.prototype.send = function (msg) {
    var c = this.sock;
    //Copy the example 1 on https://github.com/mscdex/ssh2
}

Node-Vows运行我的代码没有错误。但是,问题是誓言终止的速度比从ssh2的回调更快。换句话说,我无法从ssh2得到回应。

似乎node-async是可能的解决方案之一。但是,我不知道如何通过异步帮助强制事件驱动的调用成为阻塞调用。

任何人都可以提供帮助吗?

- 2014年10月10日更新

修正标题错字....

1 个答案:

答案 0 :(得分:0)

我之前从未使用过誓言,但根据他们的reference documentation,您应该使用this.callback而不是返回值。你的誓言代码可能看起来像:

var ssh2 = require('ssh2'),
    assert = require('assert');
suite = vows.describe('conn-test');
suite.addBatch({
  topic: function() {
    var conn = new ssh2.Connection(),
        self = this;
    conn.connect({
      host: '1.2.3.4',
      port: 22,
      username: 'root',
      password: 'oopsoops'
    });
    conn.on('ready', function() {
      self.callback(conn);
    });
  },
  'run ls': function(conn) {
    var self = this;
    conn.exec('ls', function(err, stream) {
      assert(!err);
      stream.on('exit', function(code, signal, coredump) {
        assert(code === 0);
        assert(!signal);
        assert(!coredump);
        self.callback();
      });
    });
  }
});