import * as assert from 'assert'; import * as mfm from 'mfm-js'; import { Test } from '@nestjs/testing'; import { CoreModule } from '@/core/CoreModule.js'; import { MfmService } from '@/core/MfmService.js'; import { GlobalModule } from '@/GlobalModule.js'; describe('MfmService', () => { let mfmService: MfmService; beforeAll(async () => { const app = await Test.createTestingModule({ imports: [GlobalModule, CoreModule], }).compile(); mfmService = app.get(MfmService); }); describe('toHtml', () => { test('br', () => { const input = 'foo\nbar\nbaz'; const output = '

foo
bar
baz

'; assert.equal(mfmService.toHtml(mfm.parse(input)), output); }); test('br alt', () => { const input = 'foo\r\nbar\rbaz'; const output = '

foo
bar
baz

'; assert.equal(mfmService.toHtml(mfm.parse(input)), output); }); }); describe('fromHtml', () => { test('p', () => { assert.deepStrictEqual(mfmService.fromHtml('

a

b

'), 'a\n\nb'); }); test('block element', () => { assert.deepStrictEqual(mfmService.fromHtml('
a
b
'), 'a\nb'); }); test('inline element', () => { assert.deepStrictEqual(mfmService.fromHtml(''), 'a\nb'); }); test('block code', () => { assert.deepStrictEqual(mfmService.fromHtml('
a\nb
'), '```\na\nb\n```'); }); test('inline code', () => { assert.deepStrictEqual(mfmService.fromHtml('a'), '`a`'); }); test('quote', () => { assert.deepStrictEqual(mfmService.fromHtml('
a\nb
'), '> a\n> b'); }); test('br', () => { assert.deepStrictEqual(mfmService.fromHtml('

abc

d

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

a c d

'), 'a [c](https://example.com/b) d'); }); test('link with different text, but not encoded', () => { assert.deepStrictEqual(mfmService.fromHtml('

a c d

'), 'a [c]() d'); }); test('link with same text', () => { assert.deepStrictEqual(mfmService.fromHtml('

a https://example.com/b d

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

a https://example.com/ä d

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

a c d

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

a c d

'), 'a c d'); }); test('link without text', () => { assert.deepStrictEqual(mfmService.fromHtml('

a d

'), 'a https://example.com/b d'); }); test('link without both', () => { assert.deepStrictEqual(mfmService.fromHtml('

a d

'), 'a d'); }); test('mention', () => { assert.deepStrictEqual(mfmService.fromHtml('

a @user d

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

a #a d

', ['#a']), 'a #a d'); }); }); });