import {test, stub} from 'supertape'; import terminal from './terminal.js'; import {createConfigManager} from './cloudcmd.mjs'; test('cloudcmd: terminal: disabled', (t) => { const config = createConfigManager(); config('terminal', false); const fn = terminal(config); t.notOk(fn(), 'should return noop'); t.end(); }); test('cloudcmd: terminal: disabled: listen', (t) => { const config = createConfigManager(); config('terminal', false); const fn = terminal(config).listen(); t.notOk(fn, 'should return noop'); t.end(); }); test('cloudcmd: terminal: enabled', (t) => { const term = stub(); const arg = 'hello'; const config = stub().returns(true); const getModule = stub().returns(term); terminal(config, arg, { getModule, }); t.calledWith(term, [arg], 'should call terminal'); t.end(); }); test('cloudcmd: terminal: enabled: no string', (t) => { const {log: originalLog} = console; const log = stub(); console.log = log; const config = createConfigManager(); config('terminal', true); config('terminalPath', 'hello'); terminal(config); console.log = originalLog; const msg = `cloudcmd --terminal: Cannot find module 'hello'`; const [arg] = log.args[0]; t.match(arg, RegExp(msg), 'should call with msg'); t.end(); }); test('cloudcmd: terminal: no arg', (t) => { const gritty = {}; const getModule = stub().returns(gritty); const config = createConfigManager(); config('terminal', true); config('terminalPath', 'gritty'); const result = terminal(config, '', { getModule, }); t.equal(result, gritty); t.end(); });