57 lines
1.7 KiB
TypeScript
57 lines
1.7 KiB
TypeScript
import assert from "node:assert/strict";
|
|
import { execFile } from "node:child_process";
|
|
import fs from "node:fs/promises";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import process from "node:process";
|
|
import test from "node:test";
|
|
import { fileURLToPath } from "node:url";
|
|
import { promisify } from "node:util";
|
|
|
|
const execFileAsync = promisify(execFile);
|
|
const SCRIPT_DIR = path.dirname(fileURLToPath(import.meta.url));
|
|
const SCRIPT_PATH = path.join(SCRIPT_DIR, "main.ts");
|
|
|
|
async function makeTempDir(prefix: string): Promise<string> {
|
|
return fs.mkdtemp(path.join(os.tmpdir(), prefix));
|
|
}
|
|
|
|
test("CLI forwards wrapper title and vendor render options", async () => {
|
|
const root = await makeTempDir("baoyu-markdown-to-html-cli-");
|
|
const markdownPath = path.join(root, "article.md");
|
|
await fs.writeFile(markdownPath, "## Section\n\nParagraph with **bold** text.\n", "utf-8");
|
|
|
|
const { stdout } = await execFileAsync(
|
|
process.execPath,
|
|
[
|
|
"--import",
|
|
"tsx",
|
|
SCRIPT_PATH,
|
|
markdownPath,
|
|
"--theme", "grace",
|
|
"--color", "red",
|
|
"--font-family", "mono",
|
|
"--font-size", "18",
|
|
"--keep-title",
|
|
"--title", "Overridden",
|
|
],
|
|
{ cwd: SCRIPT_DIR },
|
|
);
|
|
|
|
const result = JSON.parse(stdout.trim()) as {
|
|
htmlPath: string;
|
|
title: string;
|
|
};
|
|
|
|
assert.equal(result.title, "Overridden");
|
|
|
|
const html = await fs.readFile(result.htmlPath, "utf-8");
|
|
assert.match(html, /<title>Overridden<\/title>/);
|
|
assert.match(html, /<h2[^>]*style="[^"]*background: #A93226/);
|
|
assert.match(html, /<strong[^>]*style="[^"]*color: #A93226/);
|
|
assert.match(
|
|
html,
|
|
/<body[^>]*style="[^"]*font-family: Menlo, Monaco, 'Courier New', monospace;[^"]*font-size: 18px/,
|
|
);
|
|
});
|