mirror of
https://github.com/shelljs/shelljs.git
synced 2026-01-18 16:03:37 +00:00
* fix(cat): do not cat directories Fixes #707 * fix(head): do not let head() read directories Also fixes a typo * fix(sort): do not sort directories Also fixes a typo * fix(tail): do not let tail() read directories Also fixes a typo * fix(uniq): do not let uniq() read directories We also had a test which called sort() instead of uniq(), so we never actually tested the missing-file case. This fixes that as well. This also throws an error for using a directory as output. * fix(pipe): fix breakages with piped commands
108 lines
2.7 KiB
JavaScript
108 lines
2.7 KiB
JavaScript
import fs from 'fs';
|
|
|
|
import test from 'ava';
|
|
|
|
import shell from '..';
|
|
|
|
shell.config.silent = true;
|
|
|
|
const doubleSorted = shell.cat('resources/sort/sorted')
|
|
.trimRight()
|
|
.split('\n')
|
|
.reduce((prev, cur) => prev.concat([cur, cur]), [])
|
|
.join('\n') + '\n';
|
|
|
|
|
|
//
|
|
// Invalids
|
|
//
|
|
|
|
test('no args', t => {
|
|
const result = shell.sort();
|
|
t.truthy(shell.error());
|
|
t.truthy(result.code);
|
|
});
|
|
|
|
test('file does not exist', t => {
|
|
t.falsy(fs.existsSync('/asdfasdf')); // sanity check
|
|
const result = shell.sort('/asdfasdf');
|
|
t.truthy(shell.error());
|
|
t.truthy(result.code);
|
|
});
|
|
|
|
test('directory', t => {
|
|
t.truthy(fs.statSync('resources/').isDirectory()); // sanity check
|
|
const result = shell.sort('resources/');
|
|
t.truthy(shell.error());
|
|
t.is(result.code, 1);
|
|
t.is(result.stderr, 'sort: read failed: resources/: Is a directory');
|
|
});
|
|
|
|
//
|
|
// Valids
|
|
//
|
|
|
|
test('simple', t => {
|
|
const result = shell.sort('resources/sort/file1');
|
|
t.falsy(shell.error());
|
|
t.is(result.code, 0);
|
|
t.is(result.toString(), shell.cat('resources/sort/sorted').toString());
|
|
});
|
|
|
|
test('simple #2', t => {
|
|
const result = shell.sort('resources/sort/file2');
|
|
t.falsy(shell.error());
|
|
t.is(result.code, 0);
|
|
t.is(result.toString(), shell.cat('resources/sort/sorted').toString());
|
|
});
|
|
|
|
test('multiple files', t => {
|
|
const result = shell.sort('resources/sort/file2', 'resources/sort/file1');
|
|
t.falsy(shell.error());
|
|
t.is(result.code, 0);
|
|
t.is(result.toString(), doubleSorted);
|
|
});
|
|
|
|
test('multiple files, array syntax', t => {
|
|
const result = shell.sort(['resources/sort/file2', 'resources/sort/file1']);
|
|
t.falsy(shell.error());
|
|
t.is(result.code, 0);
|
|
t.is(result.toString(), doubleSorted);
|
|
});
|
|
|
|
test('Globbed file', t => {
|
|
const result = shell.sort('resources/sort/file?');
|
|
t.falsy(shell.error());
|
|
t.is(result.code, 0);
|
|
t.is(result.toString(), doubleSorted);
|
|
});
|
|
|
|
test('With \'-n\' option', t => {
|
|
const result = shell.sort('-n', 'resources/sort/file2');
|
|
t.falsy(shell.error());
|
|
t.is(result.code, 0);
|
|
t.is(result.toString(), shell.cat('resources/sort/sortedDashN').toString());
|
|
});
|
|
|
|
test('With \'-r\' option', t => {
|
|
const result = shell.sort('-r', 'resources/sort/file2');
|
|
t.falsy(shell.error());
|
|
t.is(result.code, 0);
|
|
t.is(result.toString(), shell.cat('resources/sort/sorted')
|
|
.trimRight()
|
|
.split('\n')
|
|
.reverse()
|
|
.join('\n') + '\n');
|
|
});
|
|
|
|
test('With \'-rn\' option', t => {
|
|
const result = shell.sort('-rn', 'resources/sort/file2');
|
|
t.falsy(shell.error());
|
|
t.is(result.code, 0);
|
|
t.is(result.toString(), shell.cat('resources/sort/sortedDashN')
|
|
.trimRight()
|
|
.split('\n')
|
|
.reverse()
|
|
.join('\n') + '\n');
|
|
});
|