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