2018-12-20 10:41:04 +00:00
|
|
|
import * as assert from 'assert';
|
|
|
|
|
2021-04-10 08:50:18 +00:00
|
|
|
import { extractMentions } from '../src/misc/extract-mentions';
|
2021-04-02 01:36:11 +00:00
|
|
|
import { parse } from 'mfm-js';
|
2018-12-20 10:41:04 +00:00
|
|
|
|
|
|
|
describe('Extract mentions', () => {
|
|
|
|
it('simple', () => {
|
2020-01-09 05:35:04 +00:00
|
|
|
const ast = parse('@foo @bar @baz')!;
|
2018-12-20 10:41:04 +00:00
|
|
|
const mentions = extractMentions(ast);
|
|
|
|
assert.deepStrictEqual(mentions, [{
|
|
|
|
username: 'foo',
|
|
|
|
acct: '@foo',
|
|
|
|
host: null
|
|
|
|
}, {
|
|
|
|
username: 'bar',
|
|
|
|
acct: '@bar',
|
|
|
|
host: null
|
|
|
|
}, {
|
|
|
|
username: 'baz',
|
|
|
|
acct: '@baz',
|
|
|
|
host: null
|
|
|
|
}]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('nested', () => {
|
2020-01-09 05:35:04 +00:00
|
|
|
const ast = parse('@foo **@bar** @baz')!;
|
2018-12-20 10:41:04 +00:00
|
|
|
const mentions = extractMentions(ast);
|
|
|
|
assert.deepStrictEqual(mentions, [{
|
|
|
|
username: 'foo',
|
|
|
|
acct: '@foo',
|
|
|
|
host: null
|
|
|
|
}, {
|
|
|
|
username: 'bar',
|
|
|
|
acct: '@bar',
|
|
|
|
host: null
|
|
|
|
}, {
|
|
|
|
username: 'baz',
|
|
|
|
acct: '@baz',
|
|
|
|
host: null
|
|
|
|
}]);
|
|
|
|
});
|
|
|
|
});
|