2022-09-16 11:10:33 +02:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-02-28 09:58:23 +01:00
|
|
|
import { act, fireEvent, RenderResult } from "@testing-library/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);
|
|
|
|
});
|
|
|
|
};
|