-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathbin.test.js
More file actions
176 lines (152 loc) · 4.49 KB
/
Copy pathbin.test.js
File metadata and controls
176 lines (152 loc) · 4.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
import { main } from '../../bin/main.js';
import { htmlIsEqual } from '@markedjs/testutils';
import { resolve } from 'node:path';
import { describe, it, mock } from 'node:test';
import assert from 'node:assert';
import { exec } from 'node:child_process';
import { promisify } from 'node:util';
const execAsync = promisify(exec);
function createMocks() {
const mocks = {
stdout: '',
stderr: '',
code: null,
stdin: {
data: null,
error: null,
end: null,
},
process: {
cwd: mock.fn(() => '/cwd'),
env: [],
argv: [],
stdout: {
write: mock.fn((str) => { mocks.stdout += str; }),
},
stderr: {
write: mock.fn((str) => { mocks.stderr += str; }),
},
stdin: {
setEncoding: mock.fn(),
on: mock.fn((method, func) => {
mocks.stdin[method] = func;
}),
resume: mock.fn(),
},
exit: mock.fn((code) => { mocks.code = code; }),
},
};
return mocks;
}
function testInput({ args = [], stdin = '', stdinError = '', stdout = '', stderr = '', code = 0 } = {}) {
return async() => {
const mocks = createMocks();
mocks.process.argv = ['node', 'marked', ...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;
assert.ok(await htmlIsEqual(mocks.stdout, stdout));
assert.strictEqual(mocks.stderr, stderr);
assert.strictEqual(mocks.code, code);
};
}
function fixturePath(filePath) {
return resolve(import.meta.dirname, './fixtures', filePath);
}
function execMarked({ args = '', stdin = '', stdout = '', stderr = '' }) {
const execPath = resolve(import.meta.dirname, '../../bin/marked');
return async() => {
let command = '';
if (stdin) {
command += `node -e "process.stdout.write('${stdin}')" | `;
}
command += `node ${execPath}`;
if (args) {
command += ` ${args}`;
}
const res = await execAsync(command);
assert.ok(await htmlIsEqual(res.stdout, stdout));
assert.strictEqual(res.stderr, stderr);
};
}
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('config path with hash', testInput({
args: ['--config', fixturePath('bin-config#hash.js'), '-s', 'line1\nline2'],
stdout: '<p>line1<br>line2</p>',
}));
it('config not found', testInput({
args: ['--config', fixturePath('does-not-exist.js'), '-s', 'line1\nline2'],
stderr: `Cannot load config file '${fixturePath('does-not-exist.js')}'`,
code: 1,
}));
});
describe('input', () => {
it('input file positional', testInput({
args: [fixturePath('bin-input.md')],
stdout: '<h1>file</h1>',
}));
it('input file not found', testInput({
args: [fixturePath('does-not-exist.md')],
stderr: `marked: ${fixturePath('does-not-exist.md')}: No such file or directory`,
code: 1,
}));
it('input file not found --input', testInput({
args: ['--input', fixturePath('does-not-exist.md')],
stderr: `marked: ${fixturePath('does-not-exist.md')}: No such file or directory`,
code: 1,
}));
it('reads from stdin when no files are provided', testInput({
stdin: '# test\n',
stdout: '<h1>test</h1>',
}));
});
});
describe('exec', () => {
it('stdin', execMarked({
stdin: '# test',
stdout: '<h1>test</h1>',
}));
it('string', execMarked({
args: '-s "# test"',
stdout: '<h1>test</h1>',
}));
it('input', execMarked({
args: `-i ${fixturePath('bin-input.md')}`,
stdout: '<h1>file</h1>',
}));
it('input file positional', execMarked({
args: fixturePath('bin-input.md'),
stdout: '<h1>file</h1>',
}));
it('input last file positional', execMarked({
args: `${fixturePath('does-not-exist.md')} ${fixturePath('bin-input.md')}`,
stdout: '<h1>file</h1>',
}));
});