test(backend): restore more unit tests (#9994)

This commit is contained in:
Kagami Sascha Rosylight 2023-02-20 09:24:09 +01:00 committed by GitHub
parent b055f516c0
commit c6b07acdcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 112 additions and 92 deletions

View file

@ -0,0 +1,42 @@
import * as assert from 'assert';
import { parse } from 'mfm-js';
import { extractMentions } from '@/misc/extract-mentions.js';
describe('Extract mentions', () => {
test('simple', () => {
const ast = parse('@foo @bar @baz');
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,
}]);
});
test('nested', () => {
const ast = parse('@foo **@bar** @baz');
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,
}]);
});
});