shelljs/test/find.js
Nate Fischer ac0ff873f1 refactor: add config.reset() and .resetForTesting() (#641)
Add .reset() and .resetForTesting() to shell.config and use .resetForTesting()
as a standard set-up for unit tests.
2017-01-07 22:40:38 -08:00

63 lines
1.5 KiB
JavaScript

import test from 'ava';
import shell from '..';
const CWD = process.cwd();
test.beforeEach(() => {
shell.config.resetForTesting();
process.chdir(CWD);
});
//
// Invalids
//
test('no args', t => {
const result = shell.find();
t.is(result.code, 1);
t.truthy(shell.error());
});
//
// Valids
//
test('current path', t => {
shell.cd('resources/find');
const result = shell.find('.');
t.falsy(shell.error());
t.is(result.code, 0);
t.truthy(result.indexOf('.hidden') > -1);
t.truthy(result.indexOf('dir1/dir11/a_dir11') > -1);
t.is(result.length, 11);
shell.cd('../..');
});
test('simple path', t => {
const result = shell.find('resources/find');
t.falsy(shell.error());
t.is(result.code, 0);
t.truthy(result.indexOf('resources/find/.hidden') > -1);
t.truthy(result.indexOf('resources/find/dir1/dir11/a_dir11') > -1);
t.is(result.length, 11);
});
test('multiple paths - comma', t => {
const result = shell.find('resources/find/dir1', 'resources/find/dir2');
t.falsy(shell.error());
t.is(result.code, 0);
t.truthy(result.indexOf('resources/find/dir1/dir11/a_dir11') > -1);
t.truthy(result.indexOf('resources/find/dir2/a_dir1') > -1);
t.is(result.length, 6);
});
test('multiple paths - array', t => {
const result = shell.find(['resources/find/dir1', 'resources/find/dir2']);
t.falsy(shell.error());
t.is(result.code, 0);
t.truthy(result.indexOf('resources/find/dir1/dir11/a_dir11') > -1);
t.truthy(result.indexOf('resources/find/dir2/a_dir1') > -1);
t.is(result.length, 6);
});