2020-01-06 22:52:08 +08:00
|
|
|
|
/*
|
2022-04-28 17:32:50 +08:00
|
|
|
|
Copyright 2019, 2022 The Matrix.org Foundation C.I.C.
|
2020-01-06 22:52:08 +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.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-01-06 21:28:29 +08:00
|
|
|
|
import React from "react";
|
2022-08-02 21:10:43 +08:00
|
|
|
|
// eslint-disable-next-line deprecate/import
|
2021-10-13 18:09:43 +08:00
|
|
|
|
import { mount } from "enzyme";
|
2022-04-28 17:32:50 +08:00
|
|
|
|
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
|
|
|
|
import { MockedObject } from "jest-mock";
|
2020-01-06 21:28:29 +08:00
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
import { getMockClientWithEventEmitter, mkEvent, mkStubRoom } from "../../../test-utils";
|
2021-06-29 20:11:58 +08:00
|
|
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
2020-01-06 22:38:21 +08:00
|
|
|
|
import * as languageHandler from "../../../../src/languageHandler";
|
2021-07-17 03:30:26 +08:00
|
|
|
|
import DMRoomMap from "../../../../src/utils/DMRoomMap";
|
2022-04-28 17:32:50 +08:00
|
|
|
|
import TextualBody from "../../../../src/components/views/messages/TextualBody";
|
|
|
|
|
import MatrixClientContext from "../../../../src/contexts/MatrixClientContext";
|
|
|
|
|
import { RoomPermalinkCreator } from "../../../../src/utils/permalinks/Permalinks";
|
|
|
|
|
import { MediaEventHelper } from "../../../../src/utils/MediaEventHelper";
|
2020-01-06 21:28:29 +08:00
|
|
|
|
|
|
|
|
|
describe("<TextualBody />", () => {
|
|
|
|
|
afterEach(() => {
|
2022-04-28 17:32:50 +08:00
|
|
|
|
jest.spyOn(MatrixClientPeg, 'get').mockRestore();
|
2020-01-06 21:28:29 +08:00
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const defaultRoom = mkStubRoom("room_id", "test room", undefined);
|
|
|
|
|
let defaultMatrixClient: MockedObject<MatrixClient>;
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
defaultMatrixClient = getMockClientWithEventEmitter({
|
|
|
|
|
getRoom: () => defaultRoom,
|
2020-01-06 21:28:29 +08:00
|
|
|
|
getAccountData: () => undefined,
|
2020-10-29 21:22:09 +08:00
|
|
|
|
isGuest: () => false,
|
2021-03-12 00:42:55 +08:00
|
|
|
|
mxcUrlToHttp: (s) => s,
|
2022-04-28 17:32:50 +08:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const defaultEvent = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body: "winks",
|
|
|
|
|
msgtype: "m.emote",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
const defaultProps = {
|
|
|
|
|
mxEvent: defaultEvent,
|
|
|
|
|
highlights: [],
|
|
|
|
|
highlightLink: '',
|
|
|
|
|
onMessageAllowed: jest.fn(),
|
|
|
|
|
onHeightChanged: jest.fn(),
|
|
|
|
|
permalinkCreator: new RoomPermalinkCreator(defaultRoom),
|
|
|
|
|
mediaEventHelper: {} as MediaEventHelper,
|
|
|
|
|
};
|
|
|
|
|
const getComponent = (props = {}, matrixClient: MatrixClient = defaultMatrixClient) =>
|
|
|
|
|
mount(<TextualBody {...defaultProps} {...props} />, {
|
|
|
|
|
wrappingComponent: MatrixClientContext.Provider,
|
|
|
|
|
wrappingComponentProps: { value: matrixClient },
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("renders m.emote correctly", () => {
|
2021-07-17 03:30:26 +08:00
|
|
|
|
DMRoomMap.makeShared();
|
2020-01-06 21:28:29 +08:00
|
|
|
|
|
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body: "winks",
|
|
|
|
|
msgtype: "m.emote",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const wrapper = getComponent({ mxEvent: ev });
|
2020-01-06 21:28:29 +08:00
|
|
|
|
expect(wrapper.text()).toBe("* sender winks");
|
|
|
|
|
const content = wrapper.find(".mx_EventTile_body");
|
|
|
|
|
expect(content.html()).toBe('<span class="mx_EventTile_body" dir="auto">winks</span>');
|
|
|
|
|
});
|
|
|
|
|
|
2020-01-10 08:24:13 +08:00
|
|
|
|
it("renders m.notice correctly", () => {
|
2021-07-17 03:30:26 +08:00
|
|
|
|
DMRoomMap.makeShared();
|
2020-01-06 21:28:29 +08:00
|
|
|
|
|
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "bot_sender",
|
|
|
|
|
content: {
|
|
|
|
|
body: "this is a notice, probably from a bot",
|
|
|
|
|
msgtype: "m.notice",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const wrapper = getComponent({ mxEvent: ev });
|
2020-01-06 21:28:29 +08:00
|
|
|
|
expect(wrapper.text()).toBe(ev.getContent().body);
|
|
|
|
|
const content = wrapper.find(".mx_EventTile_body");
|
|
|
|
|
expect(content.html()).toBe(`<span class="mx_EventTile_body" dir="auto">${ ev.getContent().body }</span>`);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe("renders plain-text m.text correctly", () => {
|
2020-01-10 08:24:13 +08:00
|
|
|
|
beforeEach(() => {
|
2021-07-17 03:30:26 +08:00
|
|
|
|
DMRoomMap.makeShared();
|
2020-01-10 08:24:13 +08:00
|
|
|
|
});
|
2020-01-06 21:28:29 +08:00
|
|
|
|
|
2020-01-10 08:24:13 +08:00
|
|
|
|
it("simple message renders as expected", () => {
|
2020-01-06 21:28:29 +08:00
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body: "this is a plaintext message",
|
|
|
|
|
msgtype: "m.text",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const wrapper = getComponent({ mxEvent: ev });
|
2020-01-06 21:28:29 +08:00
|
|
|
|
expect(wrapper.text()).toBe(ev.getContent().body);
|
|
|
|
|
const content = wrapper.find(".mx_EventTile_body");
|
|
|
|
|
expect(content.html()).toBe(`<span class="mx_EventTile_body" dir="auto">${ ev.getContent().body }</span>`);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// If pills were rendered within a Portal/same shadow DOM then it'd be easier to test
|
2020-01-10 08:24:13 +08:00
|
|
|
|
it("linkification get applied correctly into the DOM", () => {
|
2020-01-06 21:28:29 +08:00
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body: "Visit https://matrix.org/",
|
|
|
|
|
msgtype: "m.text",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const wrapper = getComponent({ mxEvent: ev });
|
2020-01-06 21:28:29 +08:00
|
|
|
|
expect(wrapper.text()).toBe(ev.getContent().body);
|
|
|
|
|
const content = wrapper.find(".mx_EventTile_body");
|
|
|
|
|
expect(content.html()).toBe('<span class="mx_EventTile_body" dir="auto">' +
|
2020-02-24 06:14:29 +08:00
|
|
|
|
'Visit <a href="https://matrix.org/" class="linkified" target="_blank" rel="noreferrer noopener">' +
|
2020-01-06 21:28:29 +08:00
|
|
|
|
'https://matrix.org/</a></span>');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe("renders formatted m.text correctly", () => {
|
2022-04-28 17:32:50 +08:00
|
|
|
|
let matrixClient;
|
2020-01-10 08:24:13 +08:00
|
|
|
|
beforeEach(() => {
|
2022-04-28 17:32:50 +08:00
|
|
|
|
matrixClient = getMockClientWithEventEmitter({
|
|
|
|
|
getRoom: () => mkStubRoom("room_id", "room name", undefined),
|
2020-01-10 08:24:13 +08:00
|
|
|
|
getAccountData: () => undefined,
|
|
|
|
|
getUserId: () => "@me:my_server",
|
|
|
|
|
getHomeserverUrl: () => "https://my_server/",
|
|
|
|
|
on: () => undefined,
|
|
|
|
|
removeListener: () => undefined,
|
2020-10-29 21:22:09 +08:00
|
|
|
|
isGuest: () => false,
|
2021-03-12 00:42:55 +08:00
|
|
|
|
mxcUrlToHttp: (s) => s,
|
2022-04-28 17:32:50 +08:00
|
|
|
|
});
|
2021-07-17 03:30:26 +08:00
|
|
|
|
DMRoomMap.makeShared();
|
2020-01-10 08:24:13 +08:00
|
|
|
|
});
|
2020-01-06 21:28:29 +08:00
|
|
|
|
|
2020-01-10 08:24:13 +08:00
|
|
|
|
it("italics, bold, underline and strikethrough render as expected", () => {
|
2020-01-06 21:28:29 +08:00
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body: "foo *baz* __bar__ <del>del</del> <u>u</u>",
|
|
|
|
|
msgtype: "m.text",
|
|
|
|
|
format: "org.matrix.custom.html",
|
|
|
|
|
formatted_body: "foo <em>baz</em> <strong>bar</strong> <del>del</del> <u>u</u>",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const wrapper = getComponent({ mxEvent: ev }, matrixClient);
|
2020-01-06 21:28:29 +08:00
|
|
|
|
expect(wrapper.text()).toBe("foo baz bar del u");
|
|
|
|
|
const content = wrapper.find(".mx_EventTile_body");
|
|
|
|
|
expect(content.html()).toBe('<span class="mx_EventTile_body markdown-body" dir="auto">' +
|
|
|
|
|
ev.getContent().formatted_body + '</span>');
|
|
|
|
|
});
|
|
|
|
|
|
2020-01-10 08:24:13 +08:00
|
|
|
|
it("spoilers get injected properly into the DOM", () => {
|
2020-01-06 21:28:29 +08:00
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body: "Hey [Spoiler for movie](mxc://someserver/somefile)",
|
|
|
|
|
msgtype: "m.text",
|
|
|
|
|
format: "org.matrix.custom.html",
|
|
|
|
|
formatted_body: "Hey <span data-mx-spoiler=\"movie\">the movie was awesome</span>",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const wrapper = getComponent({ mxEvent: ev }, matrixClient);
|
2020-01-06 21:28:29 +08:00
|
|
|
|
expect(wrapper.text()).toBe("Hey (movie) the movie was awesome");
|
|
|
|
|
const content = wrapper.find(".mx_EventTile_body");
|
|
|
|
|
expect(content.html()).toBe('<span class="mx_EventTile_body markdown-body" dir="auto">' +
|
|
|
|
|
'Hey <span>' +
|
|
|
|
|
'<span class="mx_EventTile_spoiler">' +
|
|
|
|
|
'<span class="mx_EventTile_spoiler_reason">(movie)</span> ' +
|
|
|
|
|
'<span class="mx_EventTile_spoiler_content"><span>the movie was awesome</span></span>' +
|
|
|
|
|
'</span></span></span>');
|
|
|
|
|
});
|
|
|
|
|
|
2022-05-03 08:26:37 +08:00
|
|
|
|
it("linkification is not applied to code blocks", () => {
|
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body: "Visit `https://matrix.org/`\n```\nhttps://matrix.org/\n```",
|
|
|
|
|
msgtype: "m.text",
|
|
|
|
|
format: "org.matrix.custom.html",
|
|
|
|
|
formatted_body: "<p>Visit <code>https://matrix.org/</code></p>\n<pre>https://matrix.org/\n</pre>\n",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const wrapper = getComponent({ mxEvent: ev }, matrixClient);
|
|
|
|
|
expect(wrapper.text()).toBe("Visit https://matrix.org/\n1https://matrix.org/\n\n");
|
|
|
|
|
const content = wrapper.find(".mx_EventTile_body");
|
|
|
|
|
expect(content.html()).toMatchSnapshot();
|
|
|
|
|
});
|
|
|
|
|
|
2020-01-06 21:28:29 +08:00
|
|
|
|
// If pills were rendered within a Portal/same shadow DOM then it'd be easier to test
|
2020-01-10 08:24:13 +08:00
|
|
|
|
it("pills get injected correctly into the DOM", () => {
|
2020-01-06 21:28:29 +08:00
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body: "Hey User",
|
|
|
|
|
msgtype: "m.text",
|
|
|
|
|
format: "org.matrix.custom.html",
|
|
|
|
|
formatted_body: "Hey <a href=\"https://matrix.to/#/@user:server\">Member</a>",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const wrapper = getComponent({ mxEvent: ev }, matrixClient);
|
2020-01-06 21:28:29 +08:00
|
|
|
|
expect(wrapper.text()).toBe("Hey Member");
|
|
|
|
|
const content = wrapper.find(".mx_EventTile_body");
|
2022-05-07 05:26:32 +08:00
|
|
|
|
expect(content.html()).toMatchSnapshot();
|
2020-01-06 21:28:29 +08:00
|
|
|
|
});
|
2021-01-27 19:46:20 +08:00
|
|
|
|
|
2022-02-22 19:46:34 +08:00
|
|
|
|
it("pills do not appear in code blocks", () => {
|
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body: "`@room`\n```\n@room\n```",
|
|
|
|
|
msgtype: "m.text",
|
|
|
|
|
format: "org.matrix.custom.html",
|
|
|
|
|
formatted_body: "<p><code>@room</code></p>\n<pre><code>@room\n</code></pre>\n",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const wrapper = getComponent({ mxEvent: ev });
|
2022-02-22 19:46:34 +08:00
|
|
|
|
expect(wrapper.text()).toBe("@room\n1@room\n\n");
|
|
|
|
|
const content = wrapper.find(".mx_EventTile_body");
|
|
|
|
|
expect(content.html()).toMatchSnapshot();
|
|
|
|
|
});
|
|
|
|
|
|
2021-01-27 19:46:20 +08:00
|
|
|
|
it("pills do not appear for event permalinks", () => {
|
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body:
|
|
|
|
|
"An [event link](https://matrix.to/#/!ZxbRYPQXDXKGmDnJNg:example.com/" +
|
|
|
|
|
"$16085560162aNpaH:example.com?via=example.com) with text",
|
|
|
|
|
msgtype: "m.text",
|
|
|
|
|
format: "org.matrix.custom.html",
|
|
|
|
|
formatted_body:
|
|
|
|
|
"An <a href=\"https://matrix.to/#/!ZxbRYPQXDXKGmDnJNg:example.com/" +
|
|
|
|
|
"$16085560162aNpaH:example.com?via=example.com\">event link</a> with text",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const wrapper = getComponent({ mxEvent: ev }, matrixClient);
|
2021-01-27 19:46:20 +08:00
|
|
|
|
expect(wrapper.text()).toBe("An event link with text");
|
|
|
|
|
const content = wrapper.find(".mx_EventTile_body");
|
|
|
|
|
expect(content.html()).toBe(
|
|
|
|
|
'<span class="mx_EventTile_body markdown-body" dir="auto">' +
|
2022-01-21 01:18:47 +08:00
|
|
|
|
'An <a href="https://matrix.to/#/!ZxbRYPQXDXKGmDnJNg:example.com/' +
|
2021-01-27 19:46:20 +08:00
|
|
|
|
'$16085560162aNpaH:example.com?via=example.com" ' +
|
|
|
|
|
'rel="noreferrer noopener">event link</a> with text</span>',
|
|
|
|
|
);
|
|
|
|
|
});
|
2021-02-03 23:18:19 +08:00
|
|
|
|
|
|
|
|
|
it("pills appear for room links with vias", () => {
|
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body:
|
|
|
|
|
"A [room link](https://matrix.to/#/!ZxbRYPQXDXKGmDnJNg:example.com" +
|
|
|
|
|
"?via=example.com&via=bob.com) with vias",
|
|
|
|
|
msgtype: "m.text",
|
|
|
|
|
format: "org.matrix.custom.html",
|
|
|
|
|
formatted_body:
|
|
|
|
|
"A <a href=\"https://matrix.to/#/!ZxbRYPQXDXKGmDnJNg:example.com" +
|
|
|
|
|
"?via=example.com&via=bob.com\">room link</a> with vias",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const wrapper = getComponent({ mxEvent: ev }, matrixClient);
|
|
|
|
|
expect(wrapper.text()).toBe("A room name with vias");
|
2021-02-03 23:18:19 +08:00
|
|
|
|
const content = wrapper.find(".mx_EventTile_body");
|
|
|
|
|
expect(content.html()).toBe(
|
|
|
|
|
'<span class="mx_EventTile_body markdown-body" dir="auto">' +
|
2022-07-05 19:37:35 +08:00
|
|
|
|
'A <span><bdi><a class="mx_Pill mx_RoomPill" ' +
|
2022-01-21 01:18:47 +08:00
|
|
|
|
'href="https://matrix.to/#/!ZxbRYPQXDXKGmDnJNg:example.com' +
|
2022-07-05 19:37:35 +08:00
|
|
|
|
'?via=example.com&via=bob.com"' +
|
2021-02-12 18:34:09 +08:00
|
|
|
|
'><img class="mx_BaseAvatar mx_BaseAvatar_image" ' +
|
2021-02-03 23:18:19 +08:00
|
|
|
|
'src="mxc://avatar.url/room.png" ' +
|
|
|
|
|
'style="width: 16px; height: 16px;" alt="" aria-hidden="true">' +
|
2022-07-05 19:37:35 +08:00
|
|
|
|
'<span class="mx_Pill_linkText">room name</span></a></bdi></span> with vias</span>',
|
2021-02-03 23:18:19 +08:00
|
|
|
|
);
|
|
|
|
|
});
|
2021-12-02 17:25:12 +08:00
|
|
|
|
|
|
|
|
|
it('renders formatted body without html corretly', () => {
|
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body: "escaped \\*markdown\\*",
|
|
|
|
|
msgtype: "m.text",
|
|
|
|
|
format: "org.matrix.custom.html",
|
|
|
|
|
formatted_body: "escaped *markdown*",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const wrapper = getComponent({ mxEvent: ev }, matrixClient);
|
2021-12-02 17:25:12 +08:00
|
|
|
|
|
|
|
|
|
const content = wrapper.find(".mx_EventTile_body");
|
|
|
|
|
expect(content.html()).toBe(
|
|
|
|
|
'<span class="mx_EventTile_body" dir="auto">' +
|
|
|
|
|
'escaped *markdown*' +
|
|
|
|
|
'</span>',
|
|
|
|
|
);
|
|
|
|
|
});
|
2020-01-06 21:28:29 +08:00
|
|
|
|
});
|
2020-01-06 22:38:21 +08:00
|
|
|
|
|
2020-01-10 08:24:13 +08:00
|
|
|
|
it("renders url previews correctly", () => {
|
2020-01-06 22:38:21 +08:00
|
|
|
|
languageHandler.setMissingEntryGenerator(key => key.split('|', 2)[1]);
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const matrixClient = getMockClientWithEventEmitter({
|
|
|
|
|
getRoom: () => mkStubRoom("room_id", "room name", undefined),
|
2020-01-06 22:38:21 +08:00
|
|
|
|
getAccountData: () => undefined,
|
|
|
|
|
getUrlPreview: (url) => new Promise(() => {}),
|
2021-01-15 01:39:58 +08:00
|
|
|
|
isGuest: () => false,
|
2021-03-12 00:42:55 +08:00
|
|
|
|
mxcUrlToHttp: (s) => s,
|
2022-04-28 17:32:50 +08:00
|
|
|
|
});
|
2021-07-17 03:30:26 +08:00
|
|
|
|
DMRoomMap.makeShared();
|
2020-01-06 22:38:21 +08:00
|
|
|
|
|
|
|
|
|
const ev = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
body: "Visit https://matrix.org/",
|
|
|
|
|
msgtype: "m.text",
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
|
|
|
|
|
2022-04-28 17:32:50 +08:00
|
|
|
|
const wrapper = getComponent({ mxEvent: ev, showUrlPreview: true, onHeightChanged: jest.fn() }, matrixClient);
|
2020-01-06 22:38:21 +08:00
|
|
|
|
expect(wrapper.text()).toBe(ev.getContent().body);
|
|
|
|
|
|
2021-07-12 15:34:26 +08:00
|
|
|
|
let widgets = wrapper.find("LinkPreviewGroup");
|
|
|
|
|
// at this point we should have exactly one link
|
|
|
|
|
expect(widgets.at(0).prop("links")).toEqual(["https://matrix.org/"]);
|
2020-01-06 22:38:21 +08:00
|
|
|
|
|
|
|
|
|
// simulate an event edit and check the transition from the old URL preview to the new one
|
|
|
|
|
const ev2 = mkEvent({
|
|
|
|
|
type: "m.room.message",
|
|
|
|
|
room: "room_id",
|
|
|
|
|
user: "sender",
|
|
|
|
|
content: {
|
|
|
|
|
"m.new_content": {
|
|
|
|
|
body: "Visit https://vector.im/ and https://riot.im/",
|
|
|
|
|
msgtype: "m.text",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
event: true,
|
|
|
|
|
});
|
2022-02-22 00:57:44 +08:00
|
|
|
|
jest.spyOn(ev, 'replacingEventDate').mockReturnValue(new Date(1993, 7, 3));
|
2020-01-06 22:38:21 +08:00
|
|
|
|
ev.makeReplaced(ev2);
|
|
|
|
|
|
|
|
|
|
wrapper.setProps({
|
|
|
|
|
mxEvent: ev,
|
|
|
|
|
replacingEventId: ev.getId(),
|
|
|
|
|
}, () => {
|
|
|
|
|
expect(wrapper.text()).toBe(ev2.getContent()["m.new_content"].body + "(edited)");
|
|
|
|
|
|
|
|
|
|
// XXX: this is to give TextualBody enough time for state to settle
|
|
|
|
|
wrapper.setState({}, () => {
|
2021-07-12 15:34:26 +08:00
|
|
|
|
widgets = wrapper.find("LinkPreviewGroup");
|
|
|
|
|
// at this point we should have exactly two links (not the matrix.org one anymore)
|
|
|
|
|
expect(widgets.at(0).prop("links")).toEqual(["https://vector.im/", "https://riot.im/"]);
|
2020-01-06 22:38:21 +08:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
2020-01-06 21:28:29 +08:00
|
|
|
|
});
|