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-08-02 15:10:43 +02:00
|
|
|
// eslint-disable-next-line deprecate/import
|
2022-12-12 12:24:14 +01:00
|
|
|
import { mount, ReactWrapper } from "enzyme";
|
|
|
|
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";
|
|
|
|
|
|
|
|
describe("BasicMessageComposer", () => {
|
|
|
|
const renderer = createRenderer();
|
|
|
|
const pc = createPartCreator();
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
TestUtils.stubClient();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should allow a user to paste a URL without it being mangled", () => {
|
|
|
|
const model = new EditorModel([], pc, renderer);
|
|
|
|
|
|
|
|
const wrapper = render(model);
|
|
|
|
|
|
|
|
wrapper.find(".mx_BasicMessageComposer_input").simulate("paste", {
|
|
|
|
clipboardData: {
|
2022-12-12 12:24:14 +01:00
|
|
|
getData: (type) => {
|
2022-05-09 14:39:32 +02:00
|
|
|
if (type === "text/plain") {
|
|
|
|
return "https://element.io";
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(model.parts).toHaveLength(1);
|
|
|
|
expect(model.parts[0].text).toBe("https://element.io");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function render(model: EditorModel): ReactWrapper {
|
|
|
|
const client: MatrixClient = MatrixClientPeg.get();
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
const roomId = "!1234567890:domain";
|
2022-05-09 14:39:32 +02:00
|
|
|
const userId = client.getUserId();
|
|
|
|
const room = new Room(roomId, client, userId);
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
return mount(<BasicMessageComposer model={model} room={room} />);
|
2022-05-09 14:39:32 +02:00
|
|
|
}
|