mirror of
https://github.com/shelljs/shelljs.git
synced 2026-01-25 16:07:37 +00:00
This swaps out quote characters to limit how often we need to escape strings. This is just to improve code readability. Almost all of the changes could be done without changes to .eslintrc, however this amends the lint rule to also permit backtick strings which can be useful to eliminate a few extra instances of quote escaping. Fixes issue #788 Test: npm run lint
61 lines
1.4 KiB
JavaScript
61 lines
1.4 KiB
JavaScript
import fs from 'fs';
|
|
|
|
import test from 'ava';
|
|
|
|
import shell from '..';
|
|
import utils from './utils/utils';
|
|
|
|
test.beforeEach(t => {
|
|
t.context.tmp = utils.getTempDir();
|
|
shell.config.resetForTesting();
|
|
shell.mkdir(t.context.tmp);
|
|
});
|
|
|
|
test.afterEach.always(t => {
|
|
shell.rm('-rf', t.context.tmp);
|
|
});
|
|
|
|
|
|
//
|
|
// Invalids
|
|
//
|
|
|
|
test("Normal strings don't have '.to()' anymore", t => {
|
|
const str = 'hello world';
|
|
t.is(str.to, undefined);
|
|
});
|
|
|
|
test('no file argument', t => {
|
|
shell.ShellString('hello world').to();
|
|
t.truthy(shell.error());
|
|
});
|
|
|
|
test('cannot write to a non-existent directory', t => {
|
|
t.falsy(fs.existsSync('/asdfasdf')); // sanity check
|
|
shell.ShellString('hello world').to('/asdfasdf/file');
|
|
t.truthy(shell.error());
|
|
});
|
|
|
|
//
|
|
// Valids
|
|
//
|
|
|
|
test('can be chained', t => {
|
|
shell.ShellString('hello world').to(`${t.context.tmp}/to1`).to(`${t.context.tmp}/to2`);
|
|
let result = shell.cat(`${t.context.tmp}/to1`);
|
|
t.falsy(shell.error());
|
|
t.is(result.toString(), 'hello world');
|
|
result = shell.cat(`${t.context.tmp}/to2`);
|
|
t.falsy(shell.error());
|
|
t.is(result.toString(), 'hello world');
|
|
});
|
|
|
|
test('With a glob', t => {
|
|
shell.touch(`${t.context.tmp}/to1`);
|
|
shell.ShellString('goodbye').to(`${t.context.tmp}/t*1`);
|
|
t.falsy(fs.existsSync(`${t.context.tmp}/t*1`), 'globs are not interpreted literally');
|
|
const result = shell.cat(`${t.context.tmp}/to1`);
|
|
t.falsy(shell.error());
|
|
t.is(result.toString(), 'goodbye');
|
|
});
|