2021-04-03 12:04:53 +00:00
|
|
|
import assert from 'assert';
|
2021-04-10 08:31:29 +00:00
|
|
|
import * as mfm from '../built/index';
|
2021-04-03 12:04:53 +00:00
|
|
|
import {
|
|
|
|
TEXT, CENTER, FN, UNI_EMOJI, MENTION, EMOJI_CODE, HASHTAG, N_URL, BOLD, SMALL, ITALIC, STRIKE, QUOTE, MATH_BLOCK, SEARCH, CODE_BLOCK, LINK
|
2021-04-10 09:09:44 +00:00
|
|
|
} from '../built/index';
|
2021-04-03 12:04:53 +00:00
|
|
|
|
|
|
|
describe('API', () => {
|
|
|
|
describe('toString', () => {
|
|
|
|
it('basic', () => {
|
|
|
|
const input =
|
|
|
|
`before
|
|
|
|
<center>
|
|
|
|
Hello [tada everynyan! 🎉]
|
|
|
|
|
|
|
|
I'm @ai, A bot of misskey!
|
|
|
|
|
|
|
|
https://github.com/syuilo/ai
|
|
|
|
</center>
|
|
|
|
after`;
|
2021-04-10 08:31:29 +00:00
|
|
|
assert.strictEqual(mfm.toString(mfm.parse(input)), input);
|
2021-04-03 12:04:53 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('inspect', () => {
|
|
|
|
it('replace text', () => {
|
|
|
|
const input = 'good morning [tada everynyan!]';
|
2021-04-10 08:31:29 +00:00
|
|
|
const result = mfm.parse(input);
|
|
|
|
mfm.inspect(result, node => {
|
2021-04-03 12:04:53 +00:00
|
|
|
if (node.type == 'text') {
|
|
|
|
node.props.text = node.props.text.replace(/good morning/g, 'hello');
|
|
|
|
}
|
|
|
|
});
|
2021-04-10 08:31:29 +00:00
|
|
|
assert.strictEqual(mfm.toString(result), 'hello [tada everynyan!]');
|
2021-04-03 12:04:53 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('extract', () => {
|
|
|
|
it('basic', () => {
|
2021-04-10 08:31:29 +00:00
|
|
|
const nodes = mfm.parse('@hoge @piyo @bebeyo');
|
2021-04-03 12:04:53 +00:00
|
|
|
const expect = [
|
|
|
|
MENTION('hoge', null, '@hoge'),
|
|
|
|
MENTION('piyo', null, '@piyo'),
|
|
|
|
MENTION('bebeyo', null, '@bebeyo')
|
|
|
|
];
|
2021-04-10 10:56:26 +00:00
|
|
|
assert.deepStrictEqual(mfm.extract(nodes, node => node.type == 'mention'), expect);
|
2021-04-03 12:04:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('nested', () => {
|
2021-04-10 08:31:29 +00:00
|
|
|
const nodes = mfm.parse('abc:hoge:[tada 123 @hoge :foo:]:piyo:');
|
2021-04-03 12:04:53 +00:00
|
|
|
const expect = [
|
|
|
|
EMOJI_CODE('hoge'),
|
|
|
|
EMOJI_CODE('foo'),
|
|
|
|
EMOJI_CODE('piyo')
|
|
|
|
];
|
2021-04-10 10:56:26 +00:00
|
|
|
assert.deepStrictEqual(mfm.extract(nodes, node => node.type == 'emojiCode'), expect);
|
2021-04-03 12:04:53 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|