hippofish/packages/backend/test/extract-mentions.ts

51 lines
884 B
TypeScript
Raw Normal View History

2024-03-16 16:49:12 +01:00
import * as assert from "node:assert";
2023-04-07 03:56:46 +02:00
import { parse } from "mfm-js";
import { extractMentions } from "../src/misc/extract-mentions.js";
2023-04-07 03:56:46 +02:00
describe("Extract mentions", () => {
it("simple", () => {
const ast = parse("@foo @bar @baz")!;
const mentions = extractMentions(ast);
2023-04-07 03:56:46 +02:00
assert.deepStrictEqual(mentions, [
{
username: "foo",
acct: "@foo",
host: null,
},
{
username: "bar",
acct: "@bar",
host: null,
},
{
username: "baz",
acct: "@baz",
host: null,
},
]);
});
2023-04-07 03:56:46 +02:00
it("nested", () => {
const ast = parse("@foo **@bar** @baz")!;
const mentions = extractMentions(ast);
2023-04-07 03:56:46 +02:00
assert.deepStrictEqual(mentions, [
{
username: "foo",
acct: "@foo",
host: null,
},
{
username: "bar",
acct: "@bar",
host: null,
},
{
username: "baz",
acct: "@baz",
host: null,
},
]);
});
});