From 27d0ac3d750f82888703c707ff2bf54db2531a67 Mon Sep 17 00:00:00 2001 From: MeiMei <30769358+mei23@users.noreply.github.com> Date: Sun, 8 Nov 2020 00:38:50 +0900 Subject: In HTML to MFM, use angle bracket if needed (#6817) --- test/mfm.ts | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'test') diff --git a/test/mfm.ts b/test/mfm.ts index 6244263a30..650fabcb87 100644 --- a/test/mfm.ts +++ b/test/mfm.ts @@ -12,6 +12,7 @@ import * as assert from 'assert'; import { parse, parsePlain } from '../src/mfm/parse'; import { toHtml } from '../src/mfm/to-html'; +import { fromHtml } from '../src/mfm/from-html'; import { toString } from '../src/mfm/to-string'; import { createTree as tree, createLeaf as leaf, MfmTree } from '../src/mfm/prelude'; import { removeOrphanedBrackets } from '../src/mfm/language'; @@ -1199,3 +1200,37 @@ describe('MFM', () => { }); }); }); + +describe('fromHtml', () => { + it('br', () => { + assert.deepStrictEqual(fromHtml('

abc

d

'), 'abc\n\nd'); + }); + + it('link with different text', () => { + assert.deepStrictEqual(fromHtml('

a c d

'), 'a [c](https://example.com/b) d'); + }); + + it('link with same text', () => { + assert.deepStrictEqual(fromHtml('

a https://example.com/b d

'), 'a https://example.com/b d'); + }); + + it('link with same text, but not encoded', () => { + assert.deepStrictEqual(fromHtml('

a https://example.com/ä d

'), 'a d'); + }); + + it('link with no url', () => { + assert.deepStrictEqual(fromHtml('

a c d

'), 'a [c](b) d'); + }); + + it('link without href', () => { + assert.deepStrictEqual(fromHtml('

a c d

'), 'a c d'); + }); + + it('mention', () => { + assert.deepStrictEqual(fromHtml('

a @user d

'), 'a @user@example.com d'); + }); + + it('hashtag', () => { + assert.deepStrictEqual(fromHtml('

a #a d

', ['#a']), 'a #a d'); + }); +}); -- cgit v1.2.3-freya