1
0
mirror of https://github.com/element-hq/element-web.git synced 2025-08-06 16:22:46 +03:00
Files
element-web/test/unit-tests/components/viewmodels/right_panel/RoomSummaryCardTopicViewModel-test.tsx
Marc 09ceb3c580 MVVM RoomSummaryCard Topic (#29710)
* feat: create roomSummaryCardTopic view model

* chore: add comments and small update on test mock
2025-04-17 15:56:19 +00:00

92 lines
3.4 KiB
TypeScript

/*
Copyright 2025 New Vector Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
*/
import { renderHook } from "jest-matrix-react";
import { act, type SyntheticEvent } from "react";
import { useRoomTopicViewModel } from "../../../../../src/components/viewmodels/right_panel/RoomSummaryCardTopicViewModel";
import { createTestClient, mkStubRoom } from "../../../../test-utils";
import defaultDispatcher from "../../../../../src/dispatcher/dispatcher";
import { onRoomTopicLinkClick } from "../../../../../src/components/views/elements/RoomTopic";
jest.mock("../../../../../src/components/views/elements/RoomTopic");
describe("RoomSummaryCardTopicViewModel", () => {
const client = createTestClient();
const mockRoom = mkStubRoom("!room:example.com", "Test Room", client);
const mockUserId = "@user:example.com";
const mockEvent = { preventDefault: jest.fn(), stopPropagation: jest.fn() } as unknown as SyntheticEvent;
beforeEach(() => {
// Mock room client's getSafeUserId
mockRoom.client.getSafeUserId = jest.fn().mockReturnValue(mockUserId);
jest.spyOn(defaultDispatcher, "dispatch");
(onRoomTopicLinkClick as jest.Mock).mockReset();
});
afterEach(() => {
jest.restoreAllMocks();
});
function render() {
return renderHook(() => useRoomTopicViewModel(mockRoom));
}
it("should initialize with expanded state", () => {
const { result } = render();
expect(result.current.expanded).toBe(true);
});
it("should toggle expanded state on click", async () => {
const { result } = render();
await act(() => {
result.current.onExpandedClick(mockEvent);
});
expect(result.current.expanded).toBe(false);
});
it("should handle edit click", () => {
const { result } = render();
result.current.onEditClick(mockEvent);
expect(defaultDispatcher.dispatch).toHaveBeenCalledWith({ action: "open_room_settings" });
});
it("should handle topic link clicks when the target is an anchor element", () => {
const { result } = render();
const mockAnchorEvent = { target: document.createElement("a") } as unknown as React.MouseEvent<HTMLElement>;
result.current.onTopicLinkClick(mockAnchorEvent);
expect(onRoomTopicLinkClick).toHaveBeenCalledWith(mockAnchorEvent);
});
it("should handle topic link clicks when the target is not an anchor element", () => {
const { result } = render();
const mockNonAnchorEvent = {
target: document.createElement("div"),
} as unknown as React.MouseEvent<HTMLElement>;
result.current.onTopicLinkClick(mockNonAnchorEvent);
expect(onRoomTopicLinkClick).not.toHaveBeenCalled();
});
describe("Topic editing permissions", () => {
it("should allow editing when user has permission", () => {
mockRoom.currentState.maySendStateEvent = jest.fn().mockReturnValue(true);
const { result } = render();
expect(result.current.canEditTopic).toBe(true);
});
it("should not allow editing when user lacks permission", () => {
mockRoom.currentState.maySendStateEvent = jest.fn().mockReturnValue(false);
const { result } = render();
expect(result.current.canEditTopic).toBe(false);
});
});
});