51 lines
1.7 KiB
JavaScript
51 lines
1.7 KiB
JavaScript
/**
|
|
* Generates expected-parsed.json for each fixture directory that contains expected.md.
|
|
* Run manually: node test/generate-rendered-fixtures.mjs
|
|
*/
|
|
|
|
import { readFileSync, writeFileSync, readdirSync } from 'node:fs';
|
|
import { join } from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { JSDOM } from 'jsdom';
|
|
|
|
const { window } = new JSDOM('<!doctype html><html><body></body></html>');
|
|
globalThis.DOMParser = window.DOMParser;
|
|
|
|
globalThis.fetch = () => Promise.resolve({
|
|
ok: true,
|
|
json: () => Promise.resolve([]),
|
|
text: () => Promise.resolve('')
|
|
});
|
|
|
|
const { parseMarkdownIssues, markdownSummaryToHtml } = await import('../web/js/issues.js');
|
|
|
|
const __dirname = fileURLToPath(new URL('.', import.meta.url));
|
|
const fixturesDir = join(__dirname, '../test/fixtures');
|
|
|
|
const fixtures = readdirSync(fixturesDir).filter(name => {
|
|
const contents = readdirSync(join(fixturesDir, name)).map(d => d);
|
|
return contents.includes('expected.md');
|
|
});
|
|
|
|
for (const fixtureId of fixtures) {
|
|
const fixturePath = join(fixturesDir, fixtureId);
|
|
const markdownText = readFileSync(join(fixturePath, 'expected.md'), 'utf-8');
|
|
const parsed = parseMarkdownIssues(markdownText);
|
|
|
|
const result = parsed.map(issue => ({
|
|
id: issue.id,
|
|
summary: issue.summary,
|
|
resolved: issue.resolved,
|
|
caveat: issue.caveat,
|
|
renderedHtml: markdownSummaryToHtml(issue.summary, issue.resolved, issue.caveat)
|
|
}));
|
|
|
|
writeFileSync(
|
|
join(fixturePath, 'expected-parsed.json'),
|
|
JSON.stringify(result, null, 2) + '\n',
|
|
'utf-8'
|
|
);
|
|
|
|
console.log(`Written ${fixtureId}/expected-parsed.json (${result.length} issues)`);
|
|
}
|