2018-05-17 19:21:19 -05:00
|
|
|
import * as assert from 'assert';
|
2021-04-01 20:36:11 -05:00
|
|
|
import * as mfm from 'mfm-js';
|
2017-02-11 10:03:57 -06:00
|
|
|
|
2020-04-26 00:58:36 -05:00
|
|
|
import { toHtml } from '../src/mfm/to-html';
|
2020-11-07 09:38:50 -06:00
|
|
|
import { fromHtml } from '../src/mfm/from-html';
|
2018-11-20 14:11:00 -06:00
|
|
|
|
2021-04-01 20:36:11 -05:00
|
|
|
describe('toHtml', () => {
|
|
|
|
it('br', () => {
|
|
|
|
const input = 'foo\nbar\nbaz';
|
|
|
|
const output = '<p><span>foo<br>bar<br>baz</span></p>';
|
|
|
|
assert.equal(toHtml(mfm.parse(input)), output);
|
2018-11-20 14:11:00 -06:00
|
|
|
});
|
2020-05-15 18:40:17 -05:00
|
|
|
|
2021-04-01 20:36:11 -05:00
|
|
|
it('br alt', () => {
|
|
|
|
const input = 'foo\r\nbar\rbaz';
|
|
|
|
const output = '<p><span>foo<br>bar<br>baz</span></p>';
|
|
|
|
assert.equal(toHtml(mfm.parse(input)), output);
|
2020-05-15 18:40:17 -05:00
|
|
|
});
|
2016-12-29 22:28:56 -06:00
|
|
|
});
|
2020-11-07 09:38:50 -06:00
|
|
|
|
|
|
|
describe('fromHtml', () => {
|
|
|
|
it('br', () => {
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>abc<br><br/>d</p>'), 'abc\n\nd');
|
|
|
|
});
|
|
|
|
|
|
|
|
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');
|
|
|
|
});
|
|
|
|
|
2021-02-06 06:44:46 -06: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');
|
|
|
|
});
|
|
|
|
|
2020-11-07 09:38:50 -06: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');
|
|
|
|
});
|
|
|
|
|
|
|
|
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');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('link with no url', () => {
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>a <a href="b">c</a> d</p>'), 'a [c](b) d');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('link without href', () => {
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>a <a>c</a> d</p>'), 'a c d');
|
|
|
|
});
|
|
|
|
|
2021-02-06 06:44:46 -06: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');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('link without both', () => {
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>a <a></a> d</p>'), 'a d');
|
|
|
|
});
|
|
|
|
|
2020-11-07 09:38:50 -06: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');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('hashtag', () => {
|
|
|
|
assert.deepStrictEqual(fromHtml('<p>a <a href="https://example.com/tags/a">#a</a> d</p>', ['#a']), 'a #a d');
|
|
|
|
});
|
|
|
|
});
|