shelljs/test/shjs.js
Brandon Freitag 93bbf684c6
Prevent require-ing bin/shjs (#848)
* Prevent require-ing bin/shjs

* Move require guard up, and improve function name

* Move require up and clarify comment
2018-06-27 00:02:32 -07:00

64 lines
1.5 KiB
JavaScript

import path from 'path';
import test from 'ava';
import shell from '..';
const binPath = path.resolve(__dirname, '../bin/shjs');
function runWithShjs(name) {
// prefix with 'node ' for Windows, don't prefix for unix
const execPath = process.platform === 'win32'
? `${JSON.stringify(shell.config.execPath)} `
: '';
const script = path.resolve(__dirname, 'resources', 'shjs', name);
return shell.exec(`${execPath}${binPath} ${script}`, { silent: true });
}
//
// Valids
//
test('Non-zero exit code', t => {
const result = runWithShjs('exit-codes.js');
t.is(result.code, 42);
t.is(result.stdout, '');
t.falsy(result.stderr);
});
test('Zero exit code', t => {
const result = runWithShjs('exit-0.js');
t.is(result.code, 0);
t.is(result.stdout, '');
t.falsy(result.stderr);
});
test('Stdout/Stderr', t => {
const result = runWithShjs('stdout-stderr.js');
t.is(result.code, 0);
t.is(result.stdout, 'stdout: OK!\n');
t.is(result.stderr, 'stderr: OK!\n');
});
test('CoffeeScript', t => {
const result = runWithShjs('coffeescript.coffee');
t.is(result.code, 0);
t.is(result.stdout, 'CoffeeScript: OK!\n');
t.falsy(result.stderr);
});
test('Extension detection', t => {
const result = runWithShjs('a-file');
t.is(result.code, 0);
t.is(result.stdout, 'OK!\n');
t.falsy(result.stderr);
});
//
// Invalids
//
test('disallow require-ing', t => {
t.throws(() => require(binPath), 'Executable-only module should not be required');
});