mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 10:25:08 +00:00
52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
var expect = require('expect.js'),
|
|
ShellCommand = require('../../lib/command/shell').Command;
|
|
|
|
describe('Shell command', function() {
|
|
|
|
var shellCommand;
|
|
it('Should be created without errors', function() {
|
|
shellCommand = new ShellCommand({
|
|
emitOut: true
|
|
});
|
|
});
|
|
|
|
it('Default shell should be sh', function() {
|
|
expect(shellCommand.shell).equal('/bin/sh');
|
|
});
|
|
|
|
var collectData = function(result, field) {
|
|
return function(data) {
|
|
result[field] += data;
|
|
};
|
|
};
|
|
|
|
var std = {out: '', err: ''};
|
|
it('echo "Hello world" should be done', function(done) {
|
|
shellCommand.on('stdout', collectData(std, 'out'));
|
|
shellCommand.on('stderr', collectData(std, 'err'));
|
|
shellCommand.run({cmd: 'echo "Hello world1"'}, function(err) {
|
|
expect(err).not.ok();
|
|
expect(std.err).equal('');
|
|
expect(std.out).equal('Hello world1\n');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('echo1 "Hello world" should fails', function(done) {
|
|
std.out = '';
|
|
std.err = '';
|
|
shellCommand.run({cmd: 'echo1 "Hello world"'}, function(err) {
|
|
expect(err).ok();
|
|
expect(err).an(Error);
|
|
expect(err.message).equal(
|
|
'Spawned command outputs to stderr: /bin/sh: 1: echo1: not found\n'
|
|
);
|
|
expect(std.err).equal('');
|
|
expect(std.out).equal('');
|
|
done();
|
|
});
|
|
});
|
|
});
|