2022-09-16 11:10:33 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-09-16 11:10:33 +02:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-09-16 11:10:33 +02:00
|
|
|
*/
|
|
|
|
|
2024-10-14 18:11:58 +02:00
|
|
|
import { act, fireEvent, RenderResult } from "jest-matrix-react";
|
2023-01-10 15:51:20 +01:00
|
|
|
import userEvent from "@testing-library/user-event";
|
2022-09-16 11:10:33 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
export const addTextToComposer = (container: HTMLElement, text: string) =>
|
|
|
|
act(() => {
|
|
|
|
// couldn't get input event on contenteditable to work
|
|
|
|
// paste works without illegal private method access
|
2023-02-13 12:39:16 +01:00
|
|
|
const pasteEvent: Partial<ClipboardEvent> = {
|
2022-12-12 12:24:14 +01:00
|
|
|
clipboardData: {
|
|
|
|
types: [],
|
|
|
|
files: [],
|
2023-02-13 12:39:16 +01:00
|
|
|
getData: (type: string) => (type === "text/plain" ? text : undefined),
|
|
|
|
} as unknown as DataTransfer,
|
2022-12-12 12:24:14 +01:00
|
|
|
};
|
2023-02-16 18:21:44 +01:00
|
|
|
fireEvent.paste(container.querySelector('[role="textbox"]')!, pasteEvent);
|
2022-12-12 12:24:14 +01:00
|
|
|
});
|
2022-11-18 10:22:43 +01:00
|
|
|
|
2023-01-10 15:51:20 +01:00
|
|
|
export const addTextToComposerRTL = async (renderResult: RenderResult, text: string): Promise<void> => {
|
2023-02-28 09:58:23 +01:00
|
|
|
await act(async () => {
|
2023-01-10 15:51:20 +01:00
|
|
|
await userEvent.click(renderResult.getByLabelText("Send a message…"));
|
|
|
|
await userEvent.keyboard(text);
|
|
|
|
});
|
|
|
|
};
|