2021-05-09 07:51:51 +08:00
|
|
|
/*
|
2021-06-06 09:41:28 +08:00
|
|
|
Copyright 2021 Robin Townsend <robin@robin.town>
|
2021-05-09 07:51:51 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2021-10-13 18:09:43 +08:00
|
|
|
import { mount } from "enzyme";
|
2021-06-29 20:11:58 +08:00
|
|
|
import { act } from "react-dom/test-utils";
|
2022-05-03 16:22:38 +08:00
|
|
|
import { MatrixEvent, EventType } from "matrix-js-sdk/src/matrix";
|
2021-05-09 07:51:51 +08:00
|
|
|
|
2021-06-29 20:11:58 +08:00
|
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
2022-05-03 16:22:38 +08:00
|
|
|
import ForwardDialog from "../../../../src/components/views/dialogs/ForwardDialog";
|
2021-05-09 07:51:51 +08:00
|
|
|
import DMRoomMap from "../../../../src/utils/DMRoomMap";
|
2021-06-29 20:11:58 +08:00
|
|
|
import { RoomPermalinkCreator } from "../../../../src/utils/permalinks/Permalinks";
|
2022-05-03 16:22:38 +08:00
|
|
|
import {
|
|
|
|
getMockClientWithEventEmitter,
|
|
|
|
mkEvent,
|
|
|
|
mkMessage,
|
|
|
|
mkStubRoom,
|
|
|
|
} from "../../../test-utils";
|
2021-05-09 07:51:51 +08:00
|
|
|
|
|
|
|
describe("ForwardDialog", () => {
|
2021-05-10 12:54:00 +08:00
|
|
|
const sourceRoom = "!111111111111111111:example.org";
|
2022-05-03 16:22:38 +08:00
|
|
|
const aliceId = "@alice:example.org";
|
|
|
|
const defaultMessage = mkMessage({
|
2021-05-10 12:54:00 +08:00
|
|
|
room: sourceRoom,
|
2022-05-03 16:22:38 +08:00
|
|
|
user: aliceId,
|
2021-05-09 07:51:51 +08:00
|
|
|
msg: "Hello world!",
|
|
|
|
event: true,
|
|
|
|
});
|
2022-05-03 16:22:38 +08:00
|
|
|
const accountDataEvent = new MatrixEvent({
|
|
|
|
type: EventType.Direct,
|
|
|
|
sender: aliceId,
|
|
|
|
content: {},
|
|
|
|
});
|
|
|
|
const mockClient = getMockClientWithEventEmitter({
|
|
|
|
getUserId: jest.fn().mockReturnValue(aliceId),
|
|
|
|
isGuest: jest.fn().mockReturnValue(false),
|
|
|
|
getVisibleRooms: jest.fn().mockReturnValue([]),
|
|
|
|
getRoom: jest.fn(),
|
|
|
|
getAccountData: jest.fn().mockReturnValue(accountDataEvent),
|
|
|
|
getPushActionsForEvent: jest.fn(),
|
|
|
|
mxcUrlToHttp: jest.fn().mockReturnValue(''),
|
|
|
|
isRoomEncrypted: jest.fn().mockReturnValue(false),
|
|
|
|
getProfileInfo: jest.fn().mockResolvedValue({
|
|
|
|
displayname: 'Alice',
|
|
|
|
}),
|
|
|
|
decryptEventIfNeeded: jest.fn(),
|
|
|
|
sendEvent: jest.fn(),
|
|
|
|
});
|
|
|
|
const defaultRooms = ["a", "A", "b"].map(name => mkStubRoom(name, name, mockClient));
|
2021-05-09 07:51:51 +08:00
|
|
|
|
2021-05-10 12:54:00 +08:00
|
|
|
const mountForwardDialog = async (message = defaultMessage, rooms = defaultRooms) => {
|
2022-05-03 16:22:38 +08:00
|
|
|
mockClient.getVisibleRooms.mockReturnValue(rooms);
|
|
|
|
mockClient.getRoom.mockImplementation(roomId => rooms.find(room => room.roomId === roomId));
|
2021-05-09 07:51:51 +08:00
|
|
|
|
2021-05-10 12:54:00 +08:00
|
|
|
let wrapper;
|
2021-05-09 07:51:51 +08:00
|
|
|
await act(async () => {
|
|
|
|
wrapper = mount(
|
|
|
|
<ForwardDialog
|
2022-05-03 16:22:38 +08:00
|
|
|
matrixClient={mockClient}
|
2021-05-09 07:51:51 +08:00
|
|
|
event={message}
|
2021-05-10 12:54:00 +08:00
|
|
|
permalinkCreator={new RoomPermalinkCreator(undefined, sourceRoom)}
|
2021-05-09 07:51:51 +08:00
|
|
|
onFinished={jest.fn()}
|
|
|
|
/>,
|
|
|
|
);
|
|
|
|
// Wait one tick for our profile data to load so the state update happens within act
|
|
|
|
await new Promise(resolve => setImmediate(resolve));
|
|
|
|
});
|
2022-03-03 20:54:20 +08:00
|
|
|
wrapper.update();
|
2021-05-10 12:54:00 +08:00
|
|
|
|
|
|
|
return wrapper;
|
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
DMRoomMap.makeShared();
|
2022-05-03 16:22:38 +08:00
|
|
|
jest.clearAllMocks();
|
|
|
|
mockClient.getUserId.mockReturnValue("@bob:example.org");
|
|
|
|
mockClient.sendEvent.mockReset();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
jest.spyOn(MatrixClientPeg, 'get').mockRestore();
|
2021-05-09 07:51:51 +08:00
|
|
|
});
|
|
|
|
|
2021-05-10 12:54:00 +08:00
|
|
|
it("shows a preview with us as the sender", async () => {
|
|
|
|
const wrapper = await mountForwardDialog();
|
|
|
|
|
2021-05-09 07:51:51 +08:00
|
|
|
const previewBody = wrapper.find(".mx_EventTile_body");
|
|
|
|
expect(previewBody.text()).toBe("Hello world!");
|
|
|
|
|
|
|
|
// We would just test SenderProfile for the user ID, but it's stubbed
|
|
|
|
const previewAvatar = wrapper.find(".mx_EventTile_avatar .mx_BaseAvatar_image");
|
|
|
|
expect(previewAvatar.prop("title")).toBe("@bob:example.org");
|
|
|
|
});
|
|
|
|
|
2021-05-10 12:54:00 +08:00
|
|
|
it("filters the rooms", async () => {
|
|
|
|
const wrapper = await mountForwardDialog();
|
|
|
|
|
2021-05-10 13:02:12 +08:00
|
|
|
expect(wrapper.find("Entry")).toHaveLength(3);
|
2021-05-09 07:51:51 +08:00
|
|
|
|
2021-05-10 13:02:12 +08:00
|
|
|
const searchInput = wrapper.find("SearchBox input");
|
2021-05-09 07:51:51 +08:00
|
|
|
searchInput.instance().value = "a";
|
|
|
|
searchInput.simulate("change");
|
|
|
|
|
2021-05-10 13:02:12 +08:00
|
|
|
expect(wrapper.find("Entry")).toHaveLength(2);
|
2021-05-09 07:51:51 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("tracks message sending progress across multiple rooms", async () => {
|
2021-05-10 12:54:00 +08:00
|
|
|
const wrapper = await mountForwardDialog();
|
|
|
|
|
2021-05-09 07:51:51 +08:00
|
|
|
// Make sendEvent require manual resolution so we can see the sending state
|
|
|
|
let finishSend;
|
|
|
|
let cancelSend;
|
2022-05-03 16:22:38 +08:00
|
|
|
mockClient.sendEvent.mockImplementation(() => new Promise((resolve, reject) => {
|
2021-05-09 07:51:51 +08:00
|
|
|
finishSend = resolve;
|
|
|
|
cancelSend = reject;
|
|
|
|
}));
|
|
|
|
|
2022-03-03 20:54:20 +08:00
|
|
|
let firstButton;
|
|
|
|
let secondButton;
|
|
|
|
const update = () => {
|
|
|
|
wrapper.update();
|
|
|
|
firstButton = wrapper.find("AccessibleButton.mx_ForwardList_sendButton").first();
|
|
|
|
secondButton = wrapper.find("AccessibleButton.mx_ForwardList_sendButton").at(1);
|
|
|
|
};
|
|
|
|
update();
|
|
|
|
|
|
|
|
expect(firstButton.is(".mx_ForwardList_canSend")).toBe(true);
|
2021-05-09 07:51:51 +08:00
|
|
|
|
2021-05-10 13:02:12 +08:00
|
|
|
act(() => { firstButton.simulate("click"); });
|
2022-03-03 20:54:20 +08:00
|
|
|
update();
|
|
|
|
expect(firstButton.is(".mx_ForwardList_sending")).toBe(true);
|
2021-05-09 07:51:51 +08:00
|
|
|
|
|
|
|
await act(async () => {
|
|
|
|
cancelSend();
|
|
|
|
// Wait one tick for the button to realize the send failed
|
|
|
|
await new Promise(resolve => setImmediate(resolve));
|
|
|
|
});
|
2022-03-03 20:54:20 +08:00
|
|
|
update();
|
|
|
|
expect(firstButton.is(".mx_ForwardList_sendFailed")).toBe(true);
|
2021-05-09 07:51:51 +08:00
|
|
|
|
2022-03-03 20:54:20 +08:00
|
|
|
expect(secondButton.is(".mx_ForwardList_canSend")).toBe(true);
|
2021-05-09 07:51:51 +08:00
|
|
|
|
2021-05-10 13:02:12 +08:00
|
|
|
act(() => { secondButton.simulate("click"); });
|
2022-03-03 20:54:20 +08:00
|
|
|
update();
|
|
|
|
expect(secondButton.is(".mx_ForwardList_sending")).toBe(true);
|
2021-05-09 07:51:51 +08:00
|
|
|
|
|
|
|
await act(async () => {
|
|
|
|
finishSend();
|
|
|
|
// Wait one tick for the button to realize the send succeeded
|
|
|
|
await new Promise(resolve => setImmediate(resolve));
|
|
|
|
});
|
2022-03-03 20:54:20 +08:00
|
|
|
update();
|
|
|
|
expect(secondButton.is(".mx_ForwardList_sent")).toBe(true);
|
2021-05-09 07:51:51 +08:00
|
|
|
});
|
2021-05-10 12:54:00 +08:00
|
|
|
|
|
|
|
it("can render replies", async () => {
|
2022-05-03 16:22:38 +08:00
|
|
|
const replyMessage = mkEvent({
|
2021-05-10 12:54:00 +08:00
|
|
|
type: "m.room.message",
|
|
|
|
room: "!111111111111111111:example.org",
|
|
|
|
user: "@alice:example.org",
|
|
|
|
content: {
|
2021-05-10 13:16:37 +08:00
|
|
|
"msgtype": "m.text",
|
|
|
|
"body": "> <@bob:example.org> Hi Alice!\n\nHi Bob!",
|
2021-05-10 12:54:00 +08:00
|
|
|
"m.relates_to": {
|
|
|
|
"m.in_reply_to": {
|
|
|
|
event_id: "$2222222222222222222222222222222222222222222",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
event: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
const wrapper = await mountForwardDialog(replyMessage);
|
2021-10-16 00:42:44 +08:00
|
|
|
expect(wrapper.find("ReplyChain")).toBeTruthy();
|
2021-05-10 12:54:00 +08:00
|
|
|
});
|
2021-05-10 13:07:42 +08:00
|
|
|
|
|
|
|
it("disables buttons for rooms without send permissions", async () => {
|
2022-05-03 16:22:38 +08:00
|
|
|
const readOnlyRoom = mkStubRoom("a", "a", mockClient);
|
2021-05-10 13:07:42 +08:00
|
|
|
readOnlyRoom.maySendMessage = jest.fn().mockReturnValue(false);
|
2022-05-03 16:22:38 +08:00
|
|
|
const rooms = [readOnlyRoom, mkStubRoom("b", "b", mockClient)];
|
2021-05-10 13:07:42 +08:00
|
|
|
|
|
|
|
const wrapper = await mountForwardDialog(undefined, rooms);
|
|
|
|
|
2021-05-11 01:00:06 +08:00
|
|
|
const firstButton = wrapper.find("AccessibleButton.mx_ForwardList_sendButton").first();
|
2021-05-10 13:07:42 +08:00
|
|
|
expect(firstButton.prop("disabled")).toBe(true);
|
2021-05-11 01:00:06 +08:00
|
|
|
const secondButton = wrapper.find("AccessibleButton.mx_ForwardList_sendButton").last();
|
2021-05-10 13:07:42 +08:00
|
|
|
expect(secondButton.prop("disabled")).toBe(false);
|
|
|
|
});
|
2021-05-09 07:51:51 +08:00
|
|
|
});
|