mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
134 lines
3 KiB
JavaScript
134 lines
3 KiB
JavaScript
import fs from 'fs';
|
|
|
|
import test from 'supertape';
|
|
import stub from '@cloudcmd/stub';
|
|
import tryCatch from 'try-catch';
|
|
import mockRequire from 'mock-require';
|
|
const {reRequire} = mockRequire;
|
|
|
|
const dir = '..';
|
|
|
|
const validatePath = `${dir}/server/validate`;
|
|
const exitPath = `${dir}/server/exit`;
|
|
const columnsPath = `${dir}/server/columns`;
|
|
|
|
import validate from '../server/validate.js';
|
|
import cloudcmd from '../server/cloudcmd.js';
|
|
|
|
test('validate: root: bad', (t) => {
|
|
const config = {
|
|
root: Math.random(),
|
|
};
|
|
|
|
const [e] = tryCatch(cloudcmd, {config});
|
|
t.equal(e.message, 'dir should be a string', 'should throw');
|
|
t.end();
|
|
});
|
|
|
|
test('validate: root: config', (t) => {
|
|
const config = stub().returns(true);
|
|
|
|
validate.root('/hello', config);
|
|
|
|
t.calledWith(config, ['dropbox'], 'should call config');
|
|
t.end();
|
|
});
|
|
|
|
test('validate: root: /', (t) => {
|
|
const fn = stub();
|
|
validate.root('/', fn);
|
|
|
|
t.notOk(fn.called, 'should not call fn');
|
|
t.end();
|
|
});
|
|
|
|
test('validate: root: stat', (t) => {
|
|
const fn = stub();
|
|
const {statSync} = fs;
|
|
|
|
const error = 'ENOENT';
|
|
fs.statSync = () => {
|
|
throw Error(error);
|
|
};
|
|
|
|
mockRequire(exitPath, fn);
|
|
|
|
const {root} = reRequire(validatePath);
|
|
|
|
root('hello', fn);
|
|
|
|
const msg = 'cloudcmd --root: %s';
|
|
fs.statSync = statSync;
|
|
|
|
mockRequire.stop(exitPath);
|
|
t.calledWith(fn, [msg, error], 'should call fn');
|
|
t.end();
|
|
});
|
|
|
|
test('validate: packer: not valid', (t) => {
|
|
const fn = stub();
|
|
|
|
mockRequire(exitPath, fn);
|
|
|
|
const {packer} = reRequire(validatePath);
|
|
const msg = 'cloudcmd --packer: could be "tar" or "zip" only';
|
|
|
|
packer('hello');
|
|
|
|
mockRequire.stop(exitPath);
|
|
|
|
t.calledWith(fn, [msg], 'should call fn');
|
|
t.end();
|
|
});
|
|
|
|
test('validate: editor: not valid', (t) => {
|
|
const fn = stub();
|
|
|
|
mockRequire(exitPath, fn);
|
|
|
|
const {editor} = reRequire(validatePath);
|
|
const msg = 'cloudcmd --editor: could be "dword", "edward" or "deepword" only';
|
|
|
|
editor('hello');
|
|
|
|
mockRequire.stop(exitPath);
|
|
|
|
t.calledWith(fn, [msg], 'should call fn');
|
|
t.end();
|
|
});
|
|
|
|
test('validate: columns', async (t) => {
|
|
const fn = stub();
|
|
mockRequire(exitPath, fn);
|
|
|
|
const {columns} = await import(validatePath);
|
|
|
|
columns('name-size-date');
|
|
|
|
mockRequire.stop(exitPath);
|
|
|
|
t.notOk(fn.called, 'should not call exit');
|
|
t.end();
|
|
});
|
|
|
|
test('validate: columns: wrong', (t) => {
|
|
const fn = stub();
|
|
|
|
mockRequire(exitPath, fn);
|
|
mockRequire(columnsPath, {
|
|
'name-size-date': '',
|
|
'name-size': '',
|
|
});
|
|
|
|
const {columns} = reRequire(validatePath);
|
|
const msg = 'cloudcmd --columns: can be only one of: "name-size-date", "name-size"';
|
|
|
|
columns('hello');
|
|
|
|
mockRequire.stop(exitPath);
|
|
mockRequire.stop(columnsPath);
|
|
|
|
t.calledWith(fn, [msg], 'should call exit');
|
|
t.end();
|
|
});
|
|
|