shelljs/test/to.js
Nate Fischer 1a31356343 refactor: use require instead of import
No change to logic. This swaps over tests to use require() since
everything is currently designed for the commonjs module system.
2025-04-07 22:44:24 -07:00

61 lines
1.4 KiB
JavaScript

const fs = require('fs');
const test = require('ava');
const shell = require('..');
const utils = require('./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');
});