mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-03 03:11:03 +02:00
* Use other branch * All the changes that got lost * Fix merge * Ensure emoji can only be one character long * Fixup labs feature * Remove redundant check * Update snapshot * update snapshot * add snapshot * unpin * fix pnpm lock * undo pn[m lockfile changes altogether as we shouldn't actually need any afaik * update snpahot for changed IDs * Snapshot update * Snapshot update * There is now another section * more snapshots * more snapshot * More snapshots * oh come on snapshots * actual snapshot update * Fix sonar issues * just update the thing manually * [screams internally] * Update snapshot * test for useUserStatus * Make useUserStatus actually truncate * Split out slash command to its own file & add test * Remove irrelevant comment * doc * Comment on non-obvious error message --------- Co-authored-by: David Baker <dbkr@users.noreply.github.com>
63 lines
2.4 KiB
TypeScript
63 lines
2.4 KiB
TypeScript
/*
|
|
Copyright 2026 Element Creations Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { stubClient } from "../test-utils";
|
|
import { statusCommand } from "../../src/slash-commands/status";
|
|
import { UserFriendlyError } from "../../src/languageHandler";
|
|
|
|
describe("/status", () => {
|
|
const roomId = "!room:example.com";
|
|
|
|
let client: ReturnType<typeof stubClient>;
|
|
|
|
beforeEach(() => {
|
|
client = stubClient();
|
|
client.setExtendedProfileProperty = jest.fn().mockResolvedValue(undefined);
|
|
});
|
|
|
|
function run(args?: string) {
|
|
return statusCommand.run(client, roomId, null, args);
|
|
}
|
|
|
|
it("should reject if no args provided", () => {
|
|
const result = run(undefined);
|
|
expect(result.error).toBeInstanceOf(UserFriendlyError);
|
|
expect((result.error as UserFriendlyError).message).toBe(
|
|
"No arguments provided. You should supply an emoij and an optional text component.",
|
|
);
|
|
});
|
|
|
|
it("should reject if no text is provided after the emoji", () => {
|
|
const result = run("🎉");
|
|
expect(result.error).toBeInstanceOf(UserFriendlyError);
|
|
expect((result.error as UserFriendlyError).message).toBe("You did not provide any status text");
|
|
});
|
|
|
|
it("should reject if the emoji field has more than one grapheme segment", () => {
|
|
const result = run("ab hello");
|
|
expect(result.error).toBeInstanceOf(UserFriendlyError);
|
|
expect((result.error as UserFriendlyError).message).toBe("The first argument must be an emoji");
|
|
});
|
|
|
|
it("should reject if the status text exceeds the maximum byte length", () => {
|
|
const longText = "a".repeat(257);
|
|
const result = run(`🎉 ${longText}`);
|
|
expect(result.error).toBeInstanceOf(UserFriendlyError);
|
|
expect((result.error as UserFriendlyError).message).toBe("The text you provided was too long.");
|
|
});
|
|
|
|
it("should set the extended profile property on success", async () => {
|
|
const result = run("🎉 Having a great day");
|
|
expect(result.error).toBeUndefined();
|
|
await result.promise;
|
|
expect(client.setExtendedProfileProperty).toHaveBeenCalledWith("org.matrix.msc4426.status", {
|
|
emoji: "🎉",
|
|
text: "Having a great day",
|
|
});
|
|
});
|
|
});
|