72 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
| /*
 | |
| Copyright 2024 New Vector Ltd.
 | |
| Copyright 2022 The Matrix.org Foundation C.I.C.
 | |
| 
 | |
| SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
 | |
| Please see LICENSE files in the repository root for full details.
 | |
| */
 | |
| 
 | |
| import { getByTestId, render, screen } from "jest-matrix-react";
 | |
| import userEvent from "@testing-library/user-event";
 | |
| import { mocked } from "jest-mock";
 | |
| import { MatrixClient, PendingEventOrdering, MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
 | |
| import React from "react";
 | |
| 
 | |
| import ThreadListContextMenu, {
 | |
|     ThreadListContextMenuProps,
 | |
| } from "../../../../../src/components/views/context_menus/ThreadListContextMenu";
 | |
| import { MatrixClientPeg } from "../../../../../src/MatrixClientPeg";
 | |
| import { RoomPermalinkCreator } from "../../../../../src/utils/permalinks/Permalinks";
 | |
| import { stubClient } from "../../../../test-utils/test-utils";
 | |
| import { mkThread } from "../../../../test-utils/threads";
 | |
| 
 | |
| describe("ThreadListContextMenu", () => {
 | |
|     const ROOM_ID = "!123:matrix.org";
 | |
| 
 | |
|     let room: Room;
 | |
|     let mockClient: MatrixClient;
 | |
|     let event: MatrixEvent;
 | |
| 
 | |
|     function getComponent(props: Partial<ThreadListContextMenuProps>) {
 | |
|         return render(<ThreadListContextMenu mxEvent={event} {...props} />);
 | |
|     }
 | |
| 
 | |
|     beforeEach(() => {
 | |
|         jest.clearAllMocks();
 | |
| 
 | |
|         stubClient();
 | |
|         mockClient = mocked(MatrixClientPeg.safeGet());
 | |
| 
 | |
|         room = new Room(ROOM_ID, mockClient, mockClient.getUserId() ?? "", {
 | |
|             pendingEventOrdering: PendingEventOrdering.Detached,
 | |
|         });
 | |
| 
 | |
|         const res = mkThread({
 | |
|             room,
 | |
|             client: mockClient,
 | |
|             authorId: mockClient.getUserId()!,
 | |
|             participantUserIds: [mockClient.getUserId()!],
 | |
|         });
 | |
| 
 | |
|         event = res.rootEvent;
 | |
|     });
 | |
| 
 | |
|     it("does not render the permalink", async () => {
 | |
|         const { container } = getComponent({});
 | |
| 
 | |
|         const btn = getByTestId(container, "threadlist-dropdown-button");
 | |
|         await userEvent.click(btn);
 | |
|         expect(screen.queryByTestId("copy-thread-link")).toBeNull();
 | |
|     });
 | |
| 
 | |
|     it("does render the permalink", async () => {
 | |
|         const { container } = getComponent({
 | |
|             permalinkCreator: new RoomPermalinkCreator(room, room.roomId, false),
 | |
|         });
 | |
| 
 | |
|         const btn = getByTestId(container, "threadlist-dropdown-button");
 | |
|         await userEvent.click(btn);
 | |
|         expect(screen.queryByTestId("copy-thread-link")).not.toBeNull();
 | |
|     });
 | |
| });
 |