2023-04-07 01:56:46 +00:00
|
|
|
import * as assert from "assert";
|
|
|
|
import * as mfm from "mfm-js";
|
2017-02-11 16:03:57 +00:00
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
import { toHtml } from "../src/mfm/to-html.js";
|
|
|
|
import { fromHtml } from "../src/mfm/from-html.js";
|
2018-11-20 20:11:00 +00:00
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
describe("toHtml", () => {
|
|
|
|
it("br", () => {
|
|
|
|
const input = "foo\nbar\nbaz";
|
|
|
|
const output = "<p><span>foo<br>bar<br>baz</span></p>";
|
2021-04-02 01:36:11 +00:00
|
|
|
assert.equal(toHtml(mfm.parse(input)), output);
|
2018-11-20 20:11:00 +00:00
|
|
|
});
|
2020-05-15 23:40:17 +00:00
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("br alt", () => {
|
|
|
|
const input = "foo\r\nbar\rbaz";
|
|
|
|
const output = "<p><span>foo<br>bar<br>baz</span></p>";
|
2021-04-02 01:36:11 +00:00
|
|
|
assert.equal(toHtml(mfm.parse(input)), output);
|
2020-05-15 23:40:17 +00:00
|
|
|
});
|
2016-12-30 04:28:56 +00:00
|
|
|
});
|
2020-11-07 15:38:50 +00:00
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
describe("fromHtml", () => {
|
|
|
|
it("p", () => {
|
|
|
|
assert.deepStrictEqual(fromHtml("<p>a</p><p>b</p>"), "a\n\nb");
|
2021-09-25 16:57:38 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("block element", () => {
|
|
|
|
assert.deepStrictEqual(fromHtml("<div>a</div><div>b</div>"), "a\nb");
|
2021-09-25 16:57:38 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("inline element", () => {
|
|
|
|
assert.deepStrictEqual(fromHtml("<ul><li>a</li><li>b</li></ul>"), "a\nb");
|
2021-09-25 16:57:38 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("block code", () => {
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
fromHtml("<pre><code>a\nb</code></pre>"),
|
|
|
|
"```\na\nb\n```",
|
|
|
|
);
|
2021-09-25 16:57:38 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("inline code", () => {
|
|
|
|
assert.deepStrictEqual(fromHtml("<code>a</code>"), "`a`");
|
2021-09-25 16:57:38 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("quote", () => {
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
fromHtml("<blockquote>a\nb</blockquote>"),
|
|
|
|
"> a\n> b",
|
|
|
|
);
|
2021-09-25 16:57:38 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("br", () => {
|
|
|
|
assert.deepStrictEqual(fromHtml("<p>abc<br><br/>d</p>"), "abc\n\nd");
|
2020-11-07 15:38:50 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("link with different text", () => {
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
fromHtml('<p>a <a href="https://example.com/b">c</a> d</p>'),
|
|
|
|
"a [c](https://example.com/b) d",
|
|
|
|
);
|
2020-11-07 15:38:50 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("link with different text, but not encoded", () => {
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
fromHtml('<p>a <a href="https://example.com/ä">c</a> d</p>'),
|
|
|
|
"a [c](<https://example.com/ä>) d",
|
|
|
|
);
|
2021-02-06 12:44:46 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("link with same text", () => {
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
fromHtml(
|
|
|
|
'<p>a <a href="https://example.com/b">https://example.com/b</a> d</p>',
|
|
|
|
),
|
|
|
|
"a https://example.com/b d",
|
|
|
|
);
|
2020-11-07 15:38:50 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("link with same text, but not encoded", () => {
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
fromHtml(
|
|
|
|
'<p>a <a href="https://example.com/ä">https://example.com/ä</a> d</p>',
|
|
|
|
),
|
|
|
|
"a <https://example.com/ä> d",
|
|
|
|
);
|
2020-11-07 15:38:50 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("link with no url", () => {
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
fromHtml('<p>a <a href="b">c</a> d</p>'),
|
|
|
|
"a [c](b) d",
|
|
|
|
);
|
2020-11-07 15:38:50 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("link without href", () => {
|
|
|
|
assert.deepStrictEqual(fromHtml("<p>a <a>c</a> d</p>"), "a c d");
|
2020-11-07 15:38:50 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("link without text", () => {
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
fromHtml('<p>a <a href="https://example.com/b"></a> d</p>'),
|
|
|
|
"a https://example.com/b d",
|
|
|
|
);
|
2021-02-06 12:44:46 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("link without both", () => {
|
|
|
|
assert.deepStrictEqual(fromHtml("<p>a <a></a> d</p>"), "a d");
|
2021-02-06 12:44:46 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("mention", () => {
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
fromHtml(
|
|
|
|
'<p>a <a href="https://example.com/@user" class="u-url mention">@user</a> d</p>',
|
|
|
|
),
|
|
|
|
"a @user@example.com d",
|
|
|
|
);
|
2020-11-07 15:38:50 +00:00
|
|
|
});
|
|
|
|
|
2023-04-07 01:56:46 +00:00
|
|
|
it("hashtag", () => {
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
fromHtml('<p>a <a href="https://example.com/tags/a">#a</a> d</p>', [
|
|
|
|
"#a",
|
|
|
|
]),
|
|
|
|
"a #a d",
|
|
|
|
);
|
2020-11-07 15:38:50 +00:00
|
|
|
});
|
|
|
|
});
|