2023-09-02 21:39:45 -06:00
|
|
|
import { main } from '../../bin/main.js';
|
2023-11-10 22:49:27 -07:00
|
|
|
import { htmlIsEqual } from '@markedjs/testutils';
|
2023-09-02 21:39:45 -06:00
|
|
|
import { dirname, resolve } from 'node:path';
|
2023-11-10 22:49:27 -07:00
|
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
import { describe, it, mock } from 'node:test';
|
|
|
|
import assert from 'node:assert';
|
|
|
|
|
2023-09-02 21:39:45 -06:00
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
|
|
|
|
|
function createMocks() {
|
|
|
|
const mocks = {
|
|
|
|
stdout: '',
|
|
|
|
stderr: '',
|
|
|
|
code: null,
|
|
|
|
stdin: {
|
|
|
|
data: null,
|
|
|
|
error: null,
|
|
|
|
end: null
|
|
|
|
},
|
|
|
|
process: {
|
2023-11-10 22:49:27 -07:00
|
|
|
cwd: mock.fn(() => '/cwd'),
|
2023-09-02 21:39:45 -06:00
|
|
|
env: [],
|
|
|
|
argv: [],
|
|
|
|
stdout: {
|
2023-11-10 22:49:27 -07:00
|
|
|
write: mock.fn((str) => { mocks.stdout += str; })
|
2023-09-02 21:39:45 -06:00
|
|
|
},
|
|
|
|
stderr: {
|
2023-11-10 22:49:27 -07:00
|
|
|
write: mock.fn((str) => { mocks.stderr += str; })
|
2023-09-02 21:39:45 -06:00
|
|
|
},
|
|
|
|
stdin: {
|
2023-11-10 22:49:27 -07:00
|
|
|
setEncoding: mock.fn(),
|
|
|
|
on: mock.fn((method, func) => {
|
2023-09-02 21:39:45 -06:00
|
|
|
mocks.stdin[method] = func;
|
|
|
|
}),
|
2023-11-10 22:49:27 -07:00
|
|
|
resume: mock.fn
|
2023-09-02 21:39:45 -06:00
|
|
|
},
|
2023-11-10 22:49:27 -07:00
|
|
|
exit: mock.fn((code) => { mocks.code = code; })
|
2023-09-02 21:39:45 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return mocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
function testInput({ args = [], stdin = '', stdinError = '', stdout = '', stderr = '', code = 0 } = {}) {
|
|
|
|
return async() => {
|
|
|
|
const mocks = createMocks();
|
|
|
|
mocks.process.argv = args;
|
|
|
|
const mainPromise = main(mocks.process);
|
|
|
|
if (typeof mocks.stdin.end === 'function') {
|
|
|
|
if (stdin) {
|
|
|
|
mocks.stdin.data(stdin);
|
|
|
|
}
|
|
|
|
if (stdinError) {
|
|
|
|
mocks.stdin.error(stdinError);
|
|
|
|
}
|
|
|
|
mocks.stdin.end();
|
|
|
|
}
|
|
|
|
await mainPromise;
|
|
|
|
|
2023-11-10 22:49:27 -07:00
|
|
|
assert.ok(await htmlIsEqual(mocks.stdout, stdout));
|
|
|
|
assert.strictEqual(mocks.stderr, stderr);
|
|
|
|
assert.strictEqual(mocks.code, code);
|
2023-09-02 21:39:45 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function fixturePath(filePath) {
|
|
|
|
return resolve(__dirname, './fixtures', filePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('bin/marked', () => {
|
|
|
|
describe('string', () => {
|
|
|
|
it('-s', testInput({
|
|
|
|
args: ['-s', '# test'],
|
|
|
|
stdout: '<h1>test</h1>'
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('--string', testInput({
|
|
|
|
args: ['--string', '# test'],
|
|
|
|
stdout: '<h1>test</h1>'
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('config', () => {
|
|
|
|
it('-c', testInput({
|
|
|
|
args: ['-c', fixturePath('bin-config.js'), '-s', 'line1\nline2'],
|
|
|
|
stdout: '<p>line1<br>line2</p>'
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('--config', testInput({
|
|
|
|
args: ['--config', fixturePath('bin-config.js'), '-s', 'line1\nline2'],
|
|
|
|
stdout: '<p>line1<br>line2</p>'
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('not found', testInput({
|
|
|
|
args: ['--config', fixturePath('does-not-exist.js'), '-s', 'line1\nline2'],
|
2023-11-10 22:49:27 -07:00
|
|
|
stderr: `Error: Cannot load config file '${fixturePath('does-not-exist.js')}'`,
|
2023-09-02 21:39:45 -06:00
|
|
|
code: 1
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
});
|