首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >如何模拟Node.js child_process衍生函数?

如何模拟Node.js child_process衍生函数?
EN

Stack Overflow用户
提问于 2014-11-10 16:53:41
回答 3查看 8.1K关注 0票数 12

有没有简单的方法来模拟Node.js child_process spawn函数?

我有如下代码,并希望在单元测试中测试它,而不必依赖于实际的工具调用:

var output;
var spawn = require('child_process').spawn;
var command = spawn('foo', ['get']);

command.stdout.on('data', function (data) {
    output = data;
});

command.stdout.on('end', function () {
    if (output) {
        callback(null, true);
    }
    else {
        callback(null, false);
    }
});

是否有一个(经过验证和维护的)库允许我模拟spawn调用,并让我指定模拟调用的输出?

我不想依赖工具或操作系统来保持测试的简单和孤立。我希望能够在不必设置复杂的测试夹具的情况下运行测试,这可能意味着大量工作(包括更改系统配置)。

有什么简单的方法可以做到这一点吗?

EN

回答 3

Stack Overflow用户

回答已采纳

发布于 2014-11-11 17:44:53

我已经找到了mock-spawn库,它基本上满足了我的需求。它允许模拟spawn调用,并将预期结果返回给调用测试。

举个例子:

var mockSpawn = require('mock-spawn');

var mySpawn = mockSpawn();
require('child_process').spawn = mySpawn;

mySpawn.setDefault(mySpawn.simple(1 /* exit code */, 'hello world' /* stdout */));

可以在项目页面上找到更多高级示例。

票数 4
EN

Stack Overflow用户

发布于 2018-06-05 05:56:17

遇到这个问题,nwinkler的回答让我走上了正轨。下面是一个Mocha、Sinon和Typescript示例,它将生成的代码包装在promise中,解析退出代码是否为0,否则拒绝,它收集STDOUT/STDERR输出,并允许您通过STDIN输入文本。对失败的测试就是对异常的测试。

function spawnAsPromise(cmd: string, args: ReadonlyArray<string> | undefined, options: child_process.SpawnOptions | undefined, input: string | undefined) {
    return new Promise((resolve, reject) => {
        // You could separate STDOUT and STDERR if your heart so desires...
        let output: string = '';  
        const child = child_process.spawn(cmd, args, options);
        child.stdout.on('data', (data) => {
            output += data;
        });
        child.stderr.on('data', (data) => {
            output += data;
        });
        child.on('close', (code) => {
            (code === 0) ? resolve(output) : reject(output);
        });
        child.on('error', (err) => {
            reject(err.toString());
        });

        if(input) {            
            child.stdin.write(input);
            child.stdin.end();
        }
    });
}

// ...

describe("SpawnService", () => {
    it("should run successfully", async() => {
        const sandbox = sinon.createSandbox();
        try {
            const CMD = 'foo';
            const ARGS = ['--bar'];
            const OPTS = { cwd: '/var/fubar' };

            const STDIN_TEXT = 'I typed this!';
            const STDERR_TEXT = 'Some diag stuff...';
            const STDOUT_TEXT = 'Some output stuff...';

            const proc = <child_process.ChildProcess> new events.EventEmitter();
            proc.stdin = new stream.Writable();
            proc.stdout = <stream.Readable> new events.EventEmitter();
            proc.stderr = <stream.Readable> new events.EventEmitter();

            // Stub out child process, returning our fake child process
            sandbox.stub(child_process, 'spawn')
                .returns(proc)    
                .calledOnceWith(CMD, ARGS, OPTS);

            // Stub our expectations with any text we are inputing,
            // you can remove these two lines if not piping in data
            sandbox.stub(proc.stdin, "write").calledOnceWith(STDIN_TEXT);
            sandbox.stub(proc.stdin, "end").calledOnce = true;

            // Launch your process here
            const p = spawnAsPromise(CMD, ARGS, OPTS, STDIN_TEXT);

            // Simulate your program's output
            proc.stderr.emit('data', STDERR_TEXT);
            proc.stdout.emit('data', STDOUT_TEXT);

            // Exit your program, 0 = success, !0 = failure
            proc.emit('close', 0);

            // The close should get rid of the process
            const results = await p;
            assert.equal(results, STDERR_TEXT + STDOUT_TEXT);
        } finally {
            sandbox.restore();
        }
    });
});
票数 4
EN

Stack Overflow用户

发布于 2019-06-14 20:48:30

对于任何对这个特定问题仍然有问题的人来说,由于某些原因,其他答案中的建议没有帮助,我通过将真正的child_process生成器替换为事件发射器(然后在我的测试中使用它来模拟发射),使它能够与proxyrequire (https://github.com/thlorenz/proxyquire)一起工作。

var stdout = new events.EventEmitter();
var stderr = new events.EventEmitter();
var spawn = new events.EventEmitter();
spawn.stderr = stderr;
spawn.stdout = stdout;

var child_process = {
  spawn: () => spawn,
  stdout,
  stderr
};

// proxyrequire replaces the child_process require in the file pathToModule
var moduleToTest = proxyquire("./pathToModule/", {
  'child_process': child_process
});

describe('Actual test', function () {
  var response;

  before(function (done) {
    // your regular method call
    moduleToTest.methodToTest()
    .then(data => {
      response = data;
      done();
    }).catch(err => {
      response = err;
      done();
    });

    // emit your expected response
    child_process.stdout.emit("data", "the success message sent");
    // you could easily use the below to test an error
    // child_process.stderr.emit("data", "the error sent");
  });

  it('test your expectation', function () {
    expect(response).to.equal("the success message or whatever your moduleToTest 
      resolves with");
  });
});

希望这能帮到你。

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/26839932

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档