Docker / Docker Buildx (push) Has been cancelled
Build Debian package / Build package (release) Has been cancelled
Build and Deploy / prepare (release) Has been cancelled
Deploy release / Deploy to Cloudflare Pages (release) Has been cancelled
Build and Deploy / Trigger Pro pipeline (release) Has been cancelled
Build and Deploy / Windows arm64 (release) Has been cancelled
Build and Deploy / Windows x64 (release) Has been cancelled
Build and Deploy / macOS (release) Has been cancelled
Build and Deploy / Linux amd64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / Linux arm64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / ${{ needs.prepare.outputs.deploy == 'true' && 'Deploy' || 'Deploy (dry-run)' }} (release) Has been cancelled
Build and Deploy / Deploy builds to ESS (release) Has been cancelled
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",
|
|
});
|
|
});
|
|
});
|