2022-04-12 00:40:06 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-04-12 00:40:06 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-04-12 00:40:06 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2024-10-15 00:11:58 +08:00
|
|
|
import { render, RenderResult } from "jest-matrix-react";
|
2023-08-15 23:00:17 +08:00
|
|
|
import { RoomMember, LocationAssetType } from "matrix-js-sdk/src/matrix";
|
2022-12-12 19:24:14 +08:00
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import LocationViewDialog from "../../../../../src/components/views/location/LocationViewDialog";
|
|
|
|
import { TILE_SERVER_WK_KEY } from "../../../../../src/utils/WellKnownUtils";
|
|
|
|
import { getMockClientWithEventEmitter, makeLocationEvent } from "../../../../test-utils";
|
2022-12-12 19:24:14 +08:00
|
|
|
|
2022-04-12 00:40:06 +08:00
|
|
|
describe("<LocationViewDialog />", () => {
|
|
|
|
const roomId = "!room:server";
|
|
|
|
const userId = "@user:server";
|
|
|
|
const mockClient = getMockClientWithEventEmitter({
|
|
|
|
getClientWellKnown: jest.fn().mockReturnValue({
|
2022-04-14 21:14:05 +08:00
|
|
|
[TILE_SERVER_WK_KEY.name]: { map_style_url: "maps.com" },
|
2022-04-12 00:40:06 +08:00
|
|
|
}),
|
|
|
|
isGuest: jest.fn().mockReturnValue(false),
|
|
|
|
});
|
|
|
|
const defaultEvent = makeLocationEvent("geo:51.5076,-0.1276", LocationAssetType.Pin);
|
|
|
|
const defaultProps = {
|
|
|
|
matrixClient: mockClient,
|
|
|
|
mxEvent: defaultEvent,
|
|
|
|
onFinished: jest.fn(),
|
|
|
|
};
|
2023-02-21 02:35:39 +08:00
|
|
|
const getComponent = (props = {}): RenderResult => render(<LocationViewDialog {...defaultProps} {...props} />);
|
2022-04-12 00:40:06 +08:00
|
|
|
|
|
|
|
it("renders map correctly", () => {
|
2023-02-21 02:35:39 +08:00
|
|
|
const { container } = getComponent();
|
|
|
|
expect(container.querySelector(".mx_Map")).toMatchSnapshot();
|
2022-04-12 00:40:06 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("renders marker correctly for self share", () => {
|
|
|
|
const selfShareEvent = makeLocationEvent("geo:51.5076,-0.1276", LocationAssetType.Self);
|
|
|
|
const member = new RoomMember(roomId, userId);
|
|
|
|
// @ts-ignore cheat assignment to property
|
|
|
|
selfShareEvent.sender = member;
|
2023-02-21 02:35:39 +08:00
|
|
|
const { container } = getComponent({ mxEvent: selfShareEvent });
|
2023-08-24 11:48:35 +08:00
|
|
|
expect(container.querySelector(".mx_BaseAvatar")?.getAttribute("title")).toEqual(userId);
|
2022-04-12 00:40:06 +08:00
|
|
|
});
|
|
|
|
});
|