2022-05-09 14:39:32 +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.
|
|
|
|
*/
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
import React from "react";
|
2022-12-29 21:52:51 +01:00
|
|
|
import { render, screen } from "@testing-library/react";
|
|
|
|
import userEvent from "@testing-library/user-event";
|
2022-12-12 12:24:14 +01:00
|
|
|
import { MatrixClient, Room } from "matrix-js-sdk/src/matrix";
|
2022-05-09 14:39:32 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
import BasicMessageComposer from "../../../../src/components/views/rooms/BasicMessageComposer";
|
2022-05-09 14:39:32 +02:00
|
|
|
import * as TestUtils from "../../../test-utils";
|
|
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
|
|
|
import EditorModel from "../../../../src/editor/model";
|
|
|
|
import { createPartCreator, createRenderer } from "../../../editor/mock";
|
2023-02-08 17:29:12 +01:00
|
|
|
import SettingsStore from "../../../../src/settings/SettingsStore";
|
2022-05-09 14:39:32 +02:00
|
|
|
|
|
|
|
describe("BasicMessageComposer", () => {
|
|
|
|
const renderer = createRenderer();
|
|
|
|
const pc = createPartCreator();
|
|
|
|
|
2023-02-08 17:29:12 +01:00
|
|
|
TestUtils.stubClient();
|
2022-05-09 14:39:32 +02:00
|
|
|
|
2023-06-05 19:12:23 +02:00
|
|
|
const client: MatrixClient = MatrixClientPeg.safeGet();
|
2022-05-09 14:39:32 +02:00
|
|
|
|
2023-02-08 17:29:12 +01:00
|
|
|
const roomId = "!1234567890:domain";
|
|
|
|
const userId = client.getSafeUserId();
|
|
|
|
const room = new Room(roomId, client, userId);
|
2022-12-29 21:52:51 +01:00
|
|
|
|
2023-02-08 17:29:12 +01:00
|
|
|
it("should allow a user to paste a URL without it being mangled", async () => {
|
|
|
|
const model = new EditorModel([], pc, renderer);
|
|
|
|
render(<BasicMessageComposer model={model} room={room} />);
|
2022-12-29 21:52:51 +01:00
|
|
|
const testUrl = "https://element.io";
|
|
|
|
const mockDataTransfer = generateMockDataTransferForString(testUrl);
|
2023-02-08 17:29:12 +01:00
|
|
|
await userEvent.paste(mockDataTransfer);
|
2022-05-09 14:39:32 +02:00
|
|
|
|
|
|
|
expect(model.parts).toHaveLength(1);
|
2022-12-29 21:52:51 +01:00
|
|
|
expect(model.parts[0].text).toBe(testUrl);
|
|
|
|
expect(screen.getByText(testUrl)).toBeInTheDocument();
|
2022-05-09 14:39:32 +02:00
|
|
|
});
|
2023-02-08 17:29:12 +01:00
|
|
|
|
|
|
|
it("should replaceEmoticons properly", async () => {
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation((settingName: string) => {
|
|
|
|
return settingName === "MessageComposerInput.autoReplaceEmoji";
|
|
|
|
});
|
|
|
|
userEvent.setup();
|
|
|
|
const model = new EditorModel([], pc, renderer);
|
|
|
|
render(<BasicMessageComposer model={model} room={room} />);
|
|
|
|
|
|
|
|
const tranformations = [
|
|
|
|
{ before: "4:3 video", after: "4:3 video" },
|
|
|
|
{ before: "regexp 12345678", after: "regexp 12345678" },
|
|
|
|
{ before: "--:--)", after: "--:--)" },
|
|
|
|
|
|
|
|
{ before: "we <3 matrix", after: "we ❤️ matrix" },
|
|
|
|
{ before: "hello world :-)", after: "hello world 🙂" },
|
|
|
|
{ before: ":) hello world", after: "🙂 hello world" },
|
|
|
|
{ before: ":D 4:3 video :)", after: "😄 4:3 video 🙂" },
|
|
|
|
|
|
|
|
{ before: ":-D", after: "😄" },
|
|
|
|
{ before: ":D", after: "😄" },
|
|
|
|
{ before: ":3", after: "😽" },
|
|
|
|
];
|
|
|
|
const input = screen.getByRole("textbox");
|
|
|
|
|
|
|
|
for (const { before, after } of tranformations) {
|
|
|
|
await userEvent.clear(input);
|
|
|
|
//add a space after the text to trigger the replacement
|
|
|
|
await userEvent.type(input, before + " ");
|
|
|
|
const transformedText = model.parts.map((part) => part.text).join("");
|
|
|
|
expect(transformedText).toBe(after + " ");
|
|
|
|
}
|
|
|
|
});
|
2023-08-01 11:06:37 +02:00
|
|
|
|
|
|
|
it("should not mangle shift-enter when the autocomplete is open", async () => {
|
|
|
|
const model = new EditorModel([], pc, renderer);
|
|
|
|
render(<BasicMessageComposer model={model} room={room} />);
|
|
|
|
|
|
|
|
const input = screen.getByRole("textbox");
|
|
|
|
|
|
|
|
await userEvent.type(input, "/plain foobar");
|
|
|
|
await userEvent.type(input, "{Shift>}{Enter}{/Shift}");
|
|
|
|
const transformedText = model.parts.map((part) => part.text).join("");
|
|
|
|
expect(transformedText).toBe("/plain foobar\n");
|
|
|
|
});
|
2023-09-19 07:58:53 +02:00
|
|
|
|
|
|
|
it("should escape single quote in placeholder", async () => {
|
|
|
|
const model = new EditorModel([], pc, renderer);
|
|
|
|
const composer = render(<BasicMessageComposer placeholder={"Don't"} model={model} room={room} />);
|
|
|
|
const input = composer.queryAllByRole("textbox");
|
|
|
|
const placeholder = input[0].style.getPropertyValue("--placeholder");
|
|
|
|
expect(placeholder).toMatch("'Don\\'t'");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should escape backslash in placeholder", async () => {
|
|
|
|
const model = new EditorModel([], pc, renderer);
|
|
|
|
const composer = render(<BasicMessageComposer placeholder={"w\\e"} model={model} room={room} />);
|
|
|
|
const input = composer.queryAllByRole("textbox");
|
|
|
|
const placeholder = input[0].style.getPropertyValue("--placeholder");
|
|
|
|
expect(placeholder).toMatch("'w\\\\e'");
|
|
|
|
});
|
2022-05-09 14:39:32 +02:00
|
|
|
});
|
|
|
|
|
2022-12-29 21:52:51 +01:00
|
|
|
function generateMockDataTransferForString(string: string): DataTransfer {
|
|
|
|
return {
|
|
|
|
getData: (type) => {
|
|
|
|
if (type === "text/plain") {
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
},
|
|
|
|
dropEffect: "link",
|
|
|
|
effectAllowed: "link",
|
|
|
|
files: {} as FileList,
|
|
|
|
items: {} as DataTransferItemList,
|
|
|
|
types: [],
|
|
|
|
clearData: () => {},
|
|
|
|
setData: () => {},
|
|
|
|
setDragImage: () => {},
|
|
|
|
};
|
2022-05-09 14:39:32 +02:00
|
|
|
}
|