0

我想知道是否可以以阻塞方式运行 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 月 4 日更新

修正标题的错别字......

4

1 回答 1

0

我以前从未使用过誓言,但根据他们的参考文档,您应该使用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();
      });
    });
  }
});
于 2014-04-09T23:50:55.137 回答