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';
|
2022-09-17 11:27:08 -07:00
|
|
|
import { extractMentions } from '../../src/misc/extract-mentions.js';
|
2018-12-20 02:41:04 -08:00
|
|
|
|
|
|
|
describe('Extract mentions', () => {
|
|
|
|
it('simple', () => {
|
2020-01-08 21:35:04 -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
|
|
|
}]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('nested', () => {
|
2020-01-08 21:35:04 -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
|
|
|
}]);
|
|
|
|
});
|
|
|
|
});
|