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