2022-03-03 20:54:44 +08: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-03-21 17:03:03 +08:00
|
|
|
import React, { ComponentProps } from "react";
|
|
|
|
import { mount, ReactWrapper } from "enzyme";
|
|
|
|
import { mocked } from "jest-mock";
|
2022-03-03 20:54:44 +08:00
|
|
|
import { act } from "react-dom/test-utils";
|
|
|
|
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
2022-03-04 01:20:13 +08:00
|
|
|
import { EventType, RelationType, MsgType } from "matrix-js-sdk/src/@types/event";
|
2022-03-05 07:15:03 +08:00
|
|
|
import { RoomStateEvent } from "matrix-js-sdk/src/models/room-state";
|
2022-03-21 17:03:03 +08:00
|
|
|
import { IEvent, Room, EventTimelineSet, IMinimalEvent } from "matrix-js-sdk/src/matrix";
|
2022-03-05 07:15:03 +08:00
|
|
|
import {
|
|
|
|
M_POLL_RESPONSE,
|
|
|
|
M_POLL_END,
|
|
|
|
M_POLL_KIND_DISCLOSED,
|
|
|
|
PollStartEvent,
|
|
|
|
PollResponseEvent,
|
|
|
|
PollEndEvent,
|
|
|
|
} from "matrix-events-sdk";
|
2022-03-03 20:54:44 +08:00
|
|
|
|
2022-03-04 01:20:13 +08:00
|
|
|
import {
|
|
|
|
stubClient,
|
|
|
|
mkStubRoom,
|
|
|
|
mkEvent,
|
|
|
|
mkMessage,
|
|
|
|
} from "../../../test-utils";
|
2022-03-03 20:54:44 +08:00
|
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
2022-03-21 17:03:03 +08:00
|
|
|
import PinnedMessagesCard from "../../../../src/components/views/right_panel/PinnedMessagesCard";
|
2022-03-03 20:54:44 +08:00
|
|
|
import PinnedEventTile from "../../../../src/components/views/rooms/PinnedEventTile";
|
2022-03-21 17:03:03 +08:00
|
|
|
import MPollBody from "../../../../src/components/views/messages/MPollBody";
|
|
|
|
import MatrixClientContext from "../../../../src/contexts/MatrixClientContext";
|
2022-03-03 20:54:44 +08:00
|
|
|
|
|
|
|
describe("<PinnedMessagesCard />", () => {
|
|
|
|
stubClient();
|
2022-03-21 17:03:03 +08:00
|
|
|
const cli = mocked(MatrixClientPeg.get());
|
2022-03-05 07:15:03 +08:00
|
|
|
cli.getUserId.mockReturnValue("@alice:example.org");
|
2022-03-21 17:03:03 +08:00
|
|
|
cli.setRoomAccountData.mockReturnValue(undefined);
|
|
|
|
cli.relations.mockResolvedValue({ originalEvent: {} as unknown as MatrixEvent, events: [] });
|
2022-03-03 20:54:44 +08:00
|
|
|
|
2022-03-05 07:15:03 +08:00
|
|
|
const mkRoom = (localPins: MatrixEvent[], nonLocalPins: MatrixEvent[]): Room => {
|
2022-03-21 17:03:03 +08:00
|
|
|
const room = mkStubRoom("!room:example.org", 'room', cli);
|
2022-03-05 07:15:03 +08:00
|
|
|
// Deferred since we may be adding or removing pins later
|
|
|
|
const pins = () => [...localPins, ...nonLocalPins];
|
2022-03-03 20:54:44 +08:00
|
|
|
|
|
|
|
// Insert pin IDs into room state
|
2022-03-21 17:03:03 +08:00
|
|
|
mocked(room.currentState).getStateEvents.mockImplementation(() => mkEvent({
|
2022-03-03 20:54:44 +08:00
|
|
|
event: true,
|
|
|
|
type: EventType.RoomPinnedEvents,
|
|
|
|
content: {
|
2022-03-05 07:15:03 +08:00
|
|
|
pinned: pins().map(e => e.getId()),
|
2022-03-03 20:54:44 +08:00
|
|
|
},
|
2022-03-21 17:03:03 +08:00
|
|
|
user: '@user:example.org',
|
|
|
|
room: '!room:example.org',
|
2022-03-05 07:15:03 +08:00
|
|
|
}));
|
2022-03-03 20:54:44 +08:00
|
|
|
|
|
|
|
// Insert local pins into local timeline set
|
|
|
|
room.getUnfilteredTimelineSet = () => ({
|
|
|
|
getTimelineForEvent: () => ({
|
|
|
|
getEvents: () => localPins,
|
|
|
|
}),
|
2022-03-21 17:03:03 +08:00
|
|
|
} as unknown as EventTimelineSet);
|
2022-03-03 20:54:44 +08:00
|
|
|
|
|
|
|
// Return all pins over fetchRoomEvent
|
2022-03-21 17:03:03 +08:00
|
|
|
cli.fetchRoomEvent.mockImplementation((roomId, eventId) => {
|
|
|
|
const event = pins().find(e => e.getId() === eventId)?.event;
|
|
|
|
return Promise.resolve(event as IMinimalEvent);
|
|
|
|
});
|
2022-03-03 20:54:44 +08:00
|
|
|
|
|
|
|
return room;
|
|
|
|
};
|
|
|
|
|
2022-03-21 17:03:03 +08:00
|
|
|
const mountPins = async (room: Room): Promise<ReactWrapper<ComponentProps<typeof PinnedMessagesCard>>> => {
|
2022-03-05 07:15:03 +08:00
|
|
|
let pins;
|
|
|
|
await act(async () => {
|
2022-03-21 17:03:03 +08:00
|
|
|
pins = mount(<PinnedMessagesCard room={room} onClose={jest.fn()} />, {
|
|
|
|
wrappingComponent: MatrixClientContext.Provider,
|
|
|
|
wrappingComponentProps: { value: cli },
|
|
|
|
});
|
2022-03-05 07:15:03 +08:00
|
|
|
// Wait a tick for state updates
|
|
|
|
await new Promise(resolve => setImmediate(resolve));
|
|
|
|
});
|
|
|
|
pins.update();
|
|
|
|
|
|
|
|
return pins;
|
|
|
|
};
|
|
|
|
|
2022-03-21 17:03:03 +08:00
|
|
|
const emitPinUpdates = async (pins: ReactWrapper<ComponentProps<typeof PinnedMessagesCard>>) => {
|
2022-03-05 07:15:03 +08:00
|
|
|
const room = pins.props().room;
|
2022-03-21 17:03:03 +08:00
|
|
|
const pinListener = mocked(room.currentState).on.mock.calls
|
2022-03-05 07:15:03 +08:00
|
|
|
.find(([eventName, listener]) => eventName === RoomStateEvent.Events)[1];
|
|
|
|
|
|
|
|
await act(async () => {
|
|
|
|
// Emit the update
|
2022-03-21 17:03:03 +08:00
|
|
|
// @ts-ignore what is going on here?
|
2022-03-05 07:15:03 +08:00
|
|
|
pinListener(room.currentState.getStateEvents());
|
|
|
|
// Wait a tick for state updates
|
|
|
|
await new Promise(resolve => setImmediate(resolve));
|
|
|
|
});
|
|
|
|
pins.update();
|
|
|
|
};
|
|
|
|
|
|
|
|
const pin1 = mkMessage({
|
|
|
|
event: true,
|
|
|
|
room: "!room:example.org",
|
|
|
|
user: "@alice:example.org",
|
|
|
|
msg: "First pinned message",
|
|
|
|
});
|
|
|
|
const pin2 = mkMessage({
|
|
|
|
event: true,
|
|
|
|
room: "!room:example.org",
|
|
|
|
user: "@alice:example.org",
|
|
|
|
msg: "The second one",
|
|
|
|
});
|
|
|
|
|
|
|
|
it("updates when messages are pinned", async () => {
|
|
|
|
// Start with nothing pinned
|
|
|
|
const localPins = [];
|
|
|
|
const nonLocalPins = [];
|
|
|
|
const pins = await mountPins(mkRoom(localPins, nonLocalPins));
|
|
|
|
expect(pins.find(PinnedEventTile).length).toBe(0);
|
|
|
|
|
|
|
|
// Pin the first message
|
|
|
|
localPins.push(pin1);
|
|
|
|
await emitPinUpdates(pins);
|
|
|
|
expect(pins.find(PinnedEventTile).length).toBe(1);
|
|
|
|
|
|
|
|
// Pin the second message
|
|
|
|
nonLocalPins.push(pin2);
|
|
|
|
await emitPinUpdates(pins);
|
|
|
|
expect(pins.find(PinnedEventTile).length).toBe(2);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("updates when messages are unpinned", async () => {
|
|
|
|
// Start with two pins
|
|
|
|
const localPins = [pin1];
|
|
|
|
const nonLocalPins = [pin2];
|
|
|
|
const pins = await mountPins(mkRoom(localPins, nonLocalPins));
|
|
|
|
expect(pins.find(PinnedEventTile).length).toBe(2);
|
|
|
|
|
|
|
|
// Unpin the first message
|
|
|
|
localPins.pop();
|
|
|
|
await emitPinUpdates(pins);
|
|
|
|
expect(pins.find(PinnedEventTile).length).toBe(1);
|
|
|
|
|
|
|
|
// Unpin the second message
|
|
|
|
nonLocalPins.pop();
|
|
|
|
await emitPinUpdates(pins);
|
|
|
|
expect(pins.find(PinnedEventTile).length).toBe(0);
|
|
|
|
});
|
|
|
|
|
2022-03-03 20:54:44 +08:00
|
|
|
it("hides unpinnable events found in local timeline", async () => {
|
|
|
|
// Redacted messages are unpinnable
|
|
|
|
const pin = mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: EventType.RoomMessage,
|
|
|
|
content: {},
|
2022-03-21 17:03:03 +08:00
|
|
|
unsigned: { redacted_because: {} as unknown as IEvent },
|
|
|
|
room: "!room:example.org",
|
|
|
|
user: "@alice:example.org",
|
2022-03-03 20:54:44 +08:00
|
|
|
});
|
|
|
|
|
2022-03-05 07:15:03 +08:00
|
|
|
const pins = await mountPins(mkRoom([pin], []));
|
2022-03-03 20:54:44 +08:00
|
|
|
expect(pins.find(PinnedEventTile).length).toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("hides unpinnable events not found in local timeline", async () => {
|
|
|
|
// Redacted messages are unpinnable
|
|
|
|
const pin = mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: EventType.RoomMessage,
|
|
|
|
content: {},
|
2022-03-21 17:03:03 +08:00
|
|
|
unsigned: { redacted_because: {} as unknown as IEvent },
|
|
|
|
room: "!room:example.org",
|
|
|
|
user: "@alice:example.org",
|
2022-03-03 20:54:44 +08:00
|
|
|
});
|
|
|
|
|
2022-03-05 07:15:03 +08:00
|
|
|
const pins = await mountPins(mkRoom([], [pin]));
|
2022-03-03 20:54:44 +08:00
|
|
|
expect(pins.find(PinnedEventTile).length).toBe(0);
|
|
|
|
});
|
2022-03-04 01:20:13 +08:00
|
|
|
|
|
|
|
it("accounts for edits", async () => {
|
2022-03-21 17:03:03 +08:00
|
|
|
const messageEvent = mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: EventType.RoomMessage,
|
|
|
|
room: "!room:example.org",
|
|
|
|
user: "@alice:example.org",
|
|
|
|
content: {
|
|
|
|
"msgtype": MsgType.Text,
|
|
|
|
"body": " * First pinned message, edited",
|
|
|
|
"m.new_content": {
|
|
|
|
msgtype: MsgType.Text,
|
|
|
|
body: "First pinned message, edited",
|
2022-03-04 01:20:13 +08:00
|
|
|
},
|
2022-03-21 17:03:03 +08:00
|
|
|
"m.relates_to": {
|
|
|
|
rel_type: RelationType.Replace,
|
|
|
|
event_id: pin1.getId(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
cli.relations.mockResolvedValue({
|
|
|
|
originalEvent: pin1,
|
|
|
|
events: [messageEvent],
|
2022-03-04 01:20:13 +08:00
|
|
|
});
|
|
|
|
|
2022-03-05 07:15:03 +08:00
|
|
|
const pins = await mountPins(mkRoom([], [pin1]));
|
2022-03-04 01:20:13 +08:00
|
|
|
const pinTile = pins.find(PinnedEventTile);
|
|
|
|
expect(pinTile.length).toBe(1);
|
2022-03-05 07:15:03 +08:00
|
|
|
expect(pinTile.find(".mx_EventTile_body").text()).toEqual("First pinned message, edited");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("displays votes on polls not found in local timeline", async () => {
|
|
|
|
const poll = mkEvent({
|
|
|
|
...PollStartEvent.from("A poll", ["Option 1", "Option 2"], M_POLL_KIND_DISCLOSED).serialize(),
|
|
|
|
event: true,
|
|
|
|
room: "!room:example.org",
|
|
|
|
user: "@alice:example.org",
|
|
|
|
});
|
|
|
|
|
|
|
|
const answers = (poll.unstableExtensibleEvent as PollStartEvent).answers;
|
|
|
|
const responses = [
|
|
|
|
["@alice:example.org", 0],
|
|
|
|
["@bob:example.org", 0],
|
|
|
|
["@eve:example.org", 1],
|
|
|
|
].map(([user, option], i) => mkEvent({
|
|
|
|
...PollResponseEvent.from([answers[option].id], poll.getId()).serialize(),
|
|
|
|
event: true,
|
|
|
|
room: "!room:example.org",
|
2022-03-21 17:03:03 +08:00
|
|
|
user: user as string,
|
2022-03-05 07:15:03 +08:00
|
|
|
}));
|
|
|
|
const end = mkEvent({
|
|
|
|
...PollEndEvent.from(poll.getId(), "Closing the poll").serialize(),
|
|
|
|
event: true,
|
|
|
|
room: "!room:example.org",
|
|
|
|
user: "@alice:example.org",
|
|
|
|
});
|
|
|
|
|
|
|
|
// Make the responses available
|
2022-03-21 17:03:03 +08:00
|
|
|
cli.relations.mockImplementation(async (roomId, eventId, relationType, eventType, { from }) => {
|
2022-03-05 07:15:03 +08:00
|
|
|
if (eventId === poll.getId() && relationType === RelationType.Reference) {
|
|
|
|
switch (eventType) {
|
2022-03-11 02:14:34 +08:00
|
|
|
case M_POLL_RESPONSE.name:
|
|
|
|
// Paginate the results, for added challenge
|
|
|
|
return (from === "page2") ?
|
2022-03-21 17:03:03 +08:00
|
|
|
{ originalEvent: poll, events: responses.slice(2) } :
|
|
|
|
{ originalEvent: poll, events: responses.slice(0, 2), nextBatch: "page2" };
|
2022-03-11 02:14:34 +08:00
|
|
|
case M_POLL_END.name:
|
2022-03-21 17:03:03 +08:00
|
|
|
return { originalEvent: null, events: [end] };
|
2022-03-05 07:15:03 +08:00
|
|
|
}
|
|
|
|
}
|
2022-03-21 17:03:03 +08:00
|
|
|
// type does not allow originalEvent to be falsy
|
|
|
|
// but code seems to
|
|
|
|
// so still test that
|
|
|
|
return { originalEvent: undefined as unknown as MatrixEvent, events: [] };
|
2022-03-05 07:15:03 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
const pins = await mountPins(mkRoom([], [poll]));
|
|
|
|
const pinTile = pins.find(MPollBody);
|
|
|
|
expect(pinTile.length).toEqual(1);
|
|
|
|
expect(pinTile.find(".mx_MPollBody_option_ended").length).toEqual(2);
|
|
|
|
expect(pinTile.find(".mx_MPollBody_optionVoteCount").first().text()).toEqual("2 votes");
|
|
|
|
expect(pinTile.find(".mx_MPollBody_optionVoteCount").last().text()).toEqual("1 vote");
|
2022-03-04 01:20:13 +08:00
|
|
|
});
|
2022-03-03 20:54:44 +08:00
|
|
|
});
|