2023-07-27 14:31:52 +09:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2018-12-20 19:41:04 +09:00
|
|
|
import * as assert from 'assert';
|
|
|
|
|
2021-04-02 10:36:11 +09:00
|
|
|
import { parse } from 'mfm-js';
|
2023-02-20 17:24:09 +09:00
|
|
|
import { extractMentions } from '@/misc/extract-mentions.js';
|
2018-12-20 19:41:04 +09:00
|
|
|
|
|
|
|
describe('Extract mentions', () => {
|
2023-02-02 18:18:25 +09:00
|
|
|
test('simple', () => {
|
2023-02-20 17:24:09 +09:00
|
|
|
const ast = parse('@foo @bar @baz');
|
2018-12-20 19:41:04 +09:00
|
|
|
const mentions = extractMentions(ast);
|
|
|
|
assert.deepStrictEqual(mentions, [{
|
|
|
|
username: 'foo',
|
|
|
|
acct: '@foo',
|
2022-05-21 22:21:41 +09:00
|
|
|
host: null,
|
2018-12-20 19:41:04 +09:00
|
|
|
}, {
|
|
|
|
username: 'bar',
|
|
|
|
acct: '@bar',
|
2022-05-21 22:21:41 +09:00
|
|
|
host: null,
|
2018-12-20 19:41:04 +09:00
|
|
|
}, {
|
|
|
|
username: 'baz',
|
|
|
|
acct: '@baz',
|
2022-05-21 22:21:41 +09:00
|
|
|
host: null,
|
2018-12-20 19:41:04 +09:00
|
|
|
}]);
|
|
|
|
});
|
|
|
|
|
2023-02-02 18:18:25 +09:00
|
|
|
test('nested', () => {
|
2023-02-20 17:24:09 +09:00
|
|
|
const ast = parse('@foo **@bar** @baz');
|
2018-12-20 19:41:04 +09:00
|
|
|
const mentions = extractMentions(ast);
|
|
|
|
assert.deepStrictEqual(mentions, [{
|
|
|
|
username: 'foo',
|
|
|
|
acct: '@foo',
|
2022-05-21 22:21:41 +09:00
|
|
|
host: null,
|
2018-12-20 19:41:04 +09:00
|
|
|
}, {
|
|
|
|
username: 'bar',
|
|
|
|
acct: '@bar',
|
2022-05-21 22:21:41 +09:00
|
|
|
host: null,
|
2018-12-20 19:41:04 +09:00
|
|
|
}, {
|
|
|
|
username: 'baz',
|
|
|
|
acct: '@baz',
|
2022-05-21 22:21:41 +09:00
|
|
|
host: null,
|
2018-12-20 19:41:04 +09:00
|
|
|
}]);
|
|
|
|
});
|
|
|
|
});
|