2022-03-25 22:36:22 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-03-25 22:36:22 +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-03-25 22:36:22 +08:00
|
|
|
*/
|
|
|
|
|
2022-05-27 17:58:39 +08:00
|
|
|
import { createMapSiteLinkFromEvent } from "../../../src/utils/location";
|
2022-03-25 22:36:22 +08:00
|
|
|
import { mkMessage } from "../../test-utils";
|
|
|
|
import { makeLegacyLocationEvent, makeLocationEvent } from "../../test-utils/location";
|
|
|
|
|
2022-05-27 17:58:39 +08:00
|
|
|
describe("createMapSiteLinkFromEvent", () => {
|
2022-03-25 22:36:22 +08:00
|
|
|
it("returns null if event does not contain geouri", () => {
|
2022-05-27 17:58:39 +08:00
|
|
|
expect(
|
|
|
|
createMapSiteLinkFromEvent(
|
|
|
|
mkMessage({
|
2022-03-25 22:36:22 +08:00
|
|
|
room: "1",
|
|
|
|
user: "@sender:server",
|
|
|
|
event: true,
|
|
|
|
}),
|
2022-12-12 19:24:14 +08:00
|
|
|
),
|
2022-03-25 22:36:22 +08:00
|
|
|
).toBeNull();
|
|
|
|
});
|
|
|
|
|
2023-04-03 16:26:55 +08:00
|
|
|
it("returns OpenStreetMap link if event contains m.location with valid uri", () => {
|
2022-05-27 17:58:39 +08:00
|
|
|
expect(createMapSiteLinkFromEvent(makeLocationEvent("geo:51.5076,-0.1276"))).toEqual(
|
2022-03-25 22:36:22 +08:00
|
|
|
"https://www.openstreetmap.org/" + "?mlat=51.5076&mlon=-0.1276" + "#map=16/51.5076/-0.1276",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2023-04-03 16:26:55 +08:00
|
|
|
it("returns null if event contains m.location with invalid uri", () => {
|
|
|
|
expect(createMapSiteLinkFromEvent(makeLocationEvent("123 Sesame St"))).toBeNull();
|
|
|
|
});
|
|
|
|
|
2022-03-25 22:36:22 +08:00
|
|
|
it("returns OpenStreetMap link if event contains geo_uri", () => {
|
2022-05-27 17:58:39 +08:00
|
|
|
expect(createMapSiteLinkFromEvent(makeLegacyLocationEvent("geo:51.5076,-0.1276"))).toEqual(
|
2022-03-25 22:36:22 +08:00
|
|
|
"https://www.openstreetmap.org/" + "?mlat=51.5076&mlon=-0.1276" + "#map=16/51.5076/-0.1276",
|
|
|
|
);
|
|
|
|
});
|
2023-04-03 16:26:55 +08:00
|
|
|
|
|
|
|
it("returns null if event contains an invalid geo_uri", () => {
|
|
|
|
expect(createMapSiteLinkFromEvent(makeLegacyLocationEvent("123 Sesame St"))).toBeNull();
|
|
|
|
});
|
2022-03-25 22:36:22 +08:00
|
|
|
});
|