mirror of
https://github.com/usememos/memos.git
synced 2025-10-18 02:07:09 +08:00
124 lines
3.3 KiB
TypeScript
124 lines
3.3 KiB
TypeScript
import { describe, expect, test } from "@jest/globals";
|
|
import { unescape } from "lodash-es";
|
|
import { marked } from ".";
|
|
|
|
describe("test marked parser", () => {
|
|
test("parse code block", () => {
|
|
const tests = [
|
|
{
|
|
markdown: `\`\`\`
|
|
hello world!
|
|
\`\`\``,
|
|
want: `<pre><code class="language-plaintext">hello world!
|
|
</code></pre>`,
|
|
},
|
|
{
|
|
markdown: `test code block
|
|
|
|
\`\`\`js
|
|
console.log("hello world!")
|
|
\`\`\``,
|
|
want: `<p>test code block</p>
|
|
<p></p>
|
|
<pre><code class="language-js"><span class="hljs-variable language_">console</span>.<span class="hljs-title function_">log</span>(<span class="hljs-string">"hello world!"</span>)
|
|
</code></pre>`,
|
|
},
|
|
];
|
|
|
|
for (const t of tests) {
|
|
expect(unescape(marked(t.markdown))).toBe(t.want);
|
|
}
|
|
});
|
|
test("parse todo list block", () => {
|
|
const tests = [
|
|
{
|
|
markdown: `My task:
|
|
- [ ] finish my homework
|
|
- [x] yahaha`,
|
|
want: `<p>My task:</p>
|
|
<p><span class='todo-block todo' data-value='TODO'></span>finish my homework</p>
|
|
<p><span class='todo-block done' data-value='DONE'>✓</span>yahaha</p>`,
|
|
},
|
|
];
|
|
|
|
for (const t of tests) {
|
|
expect(unescape(marked(t.markdown))).toBe(t.want);
|
|
}
|
|
});
|
|
test("parse list block", () => {
|
|
const tests = [
|
|
{
|
|
markdown: `This is a list
|
|
* list 123
|
|
1. 123123`,
|
|
want: `<p>This is a list</p>
|
|
<p><span class='ul-block'>•</span>list 123</p>
|
|
<p><span class='ol-block'>1.</span>123123</p>`,
|
|
},
|
|
];
|
|
|
|
for (const t of tests) {
|
|
expect(unescape(marked(t.markdown))).toBe(t.want);
|
|
}
|
|
});
|
|
test("parse inline element", () => {
|
|
const tests = [
|
|
{
|
|
markdown: `Link: [baidu](https://baidu.com)`,
|
|
want: `<p>Link: <a class='link' target='_blank' rel='noreferrer' href='https://baidu.com'>baidu</a></p>`,
|
|
},
|
|
];
|
|
|
|
for (const t of tests) {
|
|
expect(unescape(marked(t.markdown))).toBe(t.want);
|
|
}
|
|
});
|
|
test("parse plain link", () => {
|
|
const tests = [
|
|
{
|
|
markdown: `Link:https://baidu.com`,
|
|
want: `<p>Link:<a class='link' target='_blank' rel='noreferrer' href='https://baidu.com'>https://baidu.com</a></p>`,
|
|
},
|
|
];
|
|
|
|
for (const t of tests) {
|
|
expect(unescape(marked(t.markdown))).toBe(t.want);
|
|
}
|
|
});
|
|
test("parse inline code", () => {
|
|
const tests = [
|
|
{
|
|
markdown: `Code: \`console.log("Hello world!")\``,
|
|
want: `<p>Code: <code>console.log("Hello world!")</code></p>`,
|
|
},
|
|
];
|
|
|
|
for (const t of tests) {
|
|
expect(unescape(marked(t.markdown))).toBe(t.want);
|
|
}
|
|
});
|
|
test("parse bold and em text", () => {
|
|
const tests = [
|
|
{
|
|
markdown: `Important: **Minecraft**`,
|
|
want: `<p>Important: <strong>Minecraft</strong></p>`,
|
|
},
|
|
{
|
|
markdown: `Em: *Minecraft*`,
|
|
want: `<p>Em: <em>Minecraft</em></p>`,
|
|
},
|
|
{
|
|
markdown: `Important: ***Minecraft/123***`,
|
|
want: `<p>Important: <strong><em>Minecraft/123</em></strong></p>`,
|
|
},
|
|
{
|
|
markdown: `Important: ***[baidu](https://baidu.com)***`,
|
|
want: `<p>Important: <strong><em><a class='link' target='_blank' rel='noreferrer' href='https://baidu.com'>baidu</a></em></strong></p>`,
|
|
},
|
|
];
|
|
|
|
for (const t of tests) {
|
|
expect(unescape(marked(t.markdown))).toBe(t.want);
|
|
}
|
|
});
|
|
});
|