2022-03-02 01:00:07 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2022-08-02 21:10:43 +08:00
|
|
|
// eslint-disable-next-line deprecate/import
|
2022-03-15 23:04:52 +08:00
|
|
|
import { mount, ReactWrapper } from "enzyme";
|
2022-06-03 16:28:19 +08:00
|
|
|
import { mocked } from "jest-mock";
|
2022-03-02 07:51:05 +08:00
|
|
|
import { RoomMember } from "matrix-js-sdk/src/models/room-member";
|
2022-03-02 21:00:40 +08:00
|
|
|
import { MatrixClient } from "matrix-js-sdk/src/client";
|
2022-06-03 16:28:19 +08:00
|
|
|
import { RelationType } from "matrix-js-sdk/src/matrix";
|
2022-03-18 17:52:24 +08:00
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
2022-06-03 16:28:19 +08:00
|
|
|
import { M_ASSET, LocationAssetType } from "matrix-js-sdk/src/@types/location";
|
|
|
|
import { act } from "react-dom/test-utils";
|
2022-12-12 19:24:14 +08:00
|
|
|
|
2022-03-02 01:00:07 +08:00
|
|
|
import LocationShareMenu from "../../../../src/components/views/location/LocationShareMenu";
|
|
|
|
import MatrixClientContext from "../../../../src/contexts/MatrixClientContext";
|
|
|
|
import { ChevronFace } from "../../../../src/components/structures/ContextMenu";
|
2022-03-02 21:00:40 +08:00
|
|
|
import SettingsStore from "../../../../src/settings/SettingsStore";
|
|
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
2022-03-10 01:14:07 +08:00
|
|
|
import { LocationShareType } from "../../../../src/components/views/location/shareLocation";
|
2022-04-22 20:05:36 +08:00
|
|
|
import {
|
|
|
|
findByTagAndTestId,
|
2022-04-28 19:37:20 +08:00
|
|
|
findByTestId,
|
|
|
|
flushPromisesWithFakeTimers,
|
2022-04-22 20:05:36 +08:00
|
|
|
getMockClientWithEventEmitter,
|
|
|
|
setupAsyncStoreWithClient,
|
|
|
|
} from "../../../test-utils";
|
2022-03-18 17:52:24 +08:00
|
|
|
import Modal from "../../../../src/Modal";
|
2022-03-21 19:42:58 +08:00
|
|
|
import { DEFAULT_DURATION_MS } from "../../../../src/components/views/location/LiveDurationDropdown";
|
2022-04-22 20:05:36 +08:00
|
|
|
import { OwnBeaconStore } from "../../../../src/stores/OwnBeaconStore";
|
2022-04-28 19:37:20 +08:00
|
|
|
import { SettingLevel } from "../../../../src/settings/SettingLevel";
|
2022-07-13 18:55:08 +08:00
|
|
|
import QuestionDialog from "../../../../src/components/views/dialogs/QuestionDialog";
|
2022-04-28 19:37:20 +08:00
|
|
|
|
|
|
|
jest.useFakeTimers();
|
2022-03-02 21:00:40 +08:00
|
|
|
|
2022-03-25 22:36:22 +08:00
|
|
|
jest.mock("../../../../src/utils/location/findMapStyleUrl", () => ({
|
2022-03-02 21:00:40 +08:00
|
|
|
findMapStyleUrl: jest.fn().mockReturnValue("test"),
|
|
|
|
}));
|
|
|
|
|
|
|
|
jest.mock("../../../../src/settings/SettingsStore", () => ({
|
|
|
|
getValue: jest.fn(),
|
2022-04-28 19:37:20 +08:00
|
|
|
setValue: jest.fn(),
|
2022-03-02 21:00:40 +08:00
|
|
|
monitorSetting: jest.fn(),
|
2022-04-28 19:37:20 +08:00
|
|
|
watchSetting: jest.fn(),
|
|
|
|
unwatchSetting: jest.fn(),
|
2022-03-02 21:00:40 +08:00
|
|
|
}));
|
|
|
|
|
|
|
|
jest.mock("../../../../src/stores/OwnProfileStore", () => ({
|
|
|
|
OwnProfileStore: {
|
|
|
|
instance: {
|
|
|
|
displayName: "Ernie",
|
|
|
|
getHttpAvatarUrl: jest.fn().mockReturnValue("image.com/img"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}));
|
2022-03-02 01:00:07 +08:00
|
|
|
|
2022-03-18 17:52:24 +08:00
|
|
|
jest.mock("../../../../src/Modal", () => ({
|
2022-06-15 00:51:51 +08:00
|
|
|
createDialog: jest.fn(),
|
2022-11-09 23:33:09 +08:00
|
|
|
on: jest.fn(),
|
|
|
|
off: jest.fn(),
|
|
|
|
ModalManagerEvent: { Opened: "opened" },
|
2022-03-18 17:52:24 +08:00
|
|
|
}));
|
|
|
|
|
2022-03-02 01:00:07 +08:00
|
|
|
describe("<LocationShareMenu />", () => {
|
2022-03-02 21:00:40 +08:00
|
|
|
const userId = "@ernie:server.org";
|
2022-04-22 20:05:36 +08:00
|
|
|
const mockClient = getMockClientWithEventEmitter({
|
2022-03-02 21:00:40 +08:00
|
|
|
getUserId: jest.fn().mockReturnValue(userId),
|
|
|
|
getClientWellKnown: jest.fn().mockResolvedValue({
|
|
|
|
map_style_url: "maps.com",
|
|
|
|
}),
|
2022-03-10 01:14:07 +08:00
|
|
|
sendMessage: jest.fn(),
|
2022-04-22 20:05:36 +08:00
|
|
|
unstable_createLiveBeacon: jest.fn().mockResolvedValue({ event_id: "1" }),
|
2022-06-30 15:33:51 +08:00
|
|
|
unstable_setLiveBeacon: jest.fn().mockResolvedValue({ event_id: "1" }),
|
2022-04-22 20:05:36 +08:00
|
|
|
getVisibleRooms: jest.fn().mockReturnValue([]),
|
|
|
|
});
|
2022-03-02 01:00:07 +08:00
|
|
|
|
|
|
|
const defaultProps = {
|
|
|
|
menuPosition: {
|
|
|
|
top: 1,
|
|
|
|
left: 1,
|
|
|
|
chevronFace: ChevronFace.Bottom,
|
|
|
|
},
|
|
|
|
onFinished: jest.fn(),
|
|
|
|
openMenu: jest.fn(),
|
|
|
|
roomId: "!room:server.org",
|
2022-03-02 21:00:40 +08:00
|
|
|
sender: new RoomMember("!room:server.org", userId),
|
2022-03-02 01:00:07 +08:00
|
|
|
};
|
2022-03-10 01:14:07 +08:00
|
|
|
|
|
|
|
const position = {
|
|
|
|
coords: {
|
|
|
|
latitude: -36.24484561954707,
|
|
|
|
longitude: 175.46884959563613,
|
|
|
|
accuracy: 10,
|
|
|
|
},
|
|
|
|
timestamp: 1646305006802,
|
|
|
|
type: "geolocate",
|
|
|
|
};
|
|
|
|
|
2022-04-22 20:05:36 +08:00
|
|
|
const makeOwnBeaconStore = async () => {
|
|
|
|
const store = OwnBeaconStore.instance;
|
|
|
|
|
|
|
|
await setupAsyncStoreWithClient(store, mockClient);
|
|
|
|
return store;
|
|
|
|
};
|
|
|
|
|
2022-03-02 01:00:07 +08:00
|
|
|
const getComponent = (props = {}) =>
|
|
|
|
mount(<LocationShareMenu {...defaultProps} {...props} />, {
|
|
|
|
wrappingComponent: MatrixClientContext.Provider,
|
|
|
|
wrappingComponentProps: { value: mockClient },
|
|
|
|
});
|
|
|
|
|
2022-04-22 20:05:36 +08:00
|
|
|
beforeEach(async () => {
|
2022-03-18 17:52:24 +08:00
|
|
|
jest.spyOn(logger, "error").mockRestore();
|
2022-03-15 23:04:52 +08:00
|
|
|
mocked(SettingsStore).getValue.mockReturnValue(false);
|
2022-03-10 01:14:07 +08:00
|
|
|
mockClient.sendMessage.mockClear();
|
2022-04-22 20:05:36 +08:00
|
|
|
mockClient.unstable_createLiveBeacon.mockClear().mockResolvedValue({ event_id: "1" });
|
2022-03-02 21:00:40 +08:00
|
|
|
jest.spyOn(MatrixClientPeg, "get").mockReturnValue(mockClient as unknown as MatrixClient);
|
2022-06-15 00:51:51 +08:00
|
|
|
mocked(Modal).createDialog.mockClear();
|
2022-04-22 20:05:36 +08:00
|
|
|
|
2022-04-28 19:37:20 +08:00
|
|
|
jest.clearAllMocks();
|
|
|
|
|
2022-04-22 20:05:36 +08:00
|
|
|
await makeOwnBeaconStore();
|
2022-03-02 21:00:40 +08:00
|
|
|
});
|
|
|
|
|
2022-03-15 23:04:52 +08:00
|
|
|
const getShareTypeOption = (component: ReactWrapper, shareType: LocationShareType) =>
|
2022-03-16 17:37:09 +08:00
|
|
|
findByTagAndTestId(component, `share-location-option-${shareType}`, "button");
|
2022-03-15 23:04:52 +08:00
|
|
|
|
|
|
|
const getBackButton = (component: ReactWrapper) =>
|
2022-03-16 17:37:09 +08:00
|
|
|
findByTagAndTestId(component, "share-dialog-buttons-back", "button");
|
2022-03-15 23:04:52 +08:00
|
|
|
|
|
|
|
const getCancelButton = (component: ReactWrapper) =>
|
2022-03-16 17:37:09 +08:00
|
|
|
findByTagAndTestId(component, "share-dialog-buttons-cancel", "button");
|
2022-03-15 23:04:52 +08:00
|
|
|
|
|
|
|
const getSubmitButton = (component: ReactWrapper) =>
|
2022-03-16 17:37:09 +08:00
|
|
|
findByTagAndTestId(component, "location-picker-submit-button", "button");
|
2022-03-15 23:04:52 +08:00
|
|
|
|
|
|
|
const setLocation = (component: ReactWrapper) => {
|
2022-03-10 01:14:07 +08:00
|
|
|
// set the location
|
|
|
|
const locationPickerInstance = component.find("LocationPicker").instance();
|
|
|
|
act(() => {
|
|
|
|
// @ts-ignore
|
|
|
|
locationPickerInstance.onGeolocate(position);
|
|
|
|
// make sure button gets enabled
|
|
|
|
component.setProps({});
|
|
|
|
});
|
|
|
|
};
|
2022-03-02 21:00:40 +08:00
|
|
|
|
2022-03-15 23:04:52 +08:00
|
|
|
const setShareType = (component: ReactWrapper, shareType: LocationShareType) =>
|
|
|
|
act(() => {
|
|
|
|
getShareTypeOption(component, shareType).at(0).simulate("click");
|
|
|
|
component.setProps({});
|
2022-03-03 18:30:46 +08:00
|
|
|
});
|
2022-03-02 21:00:40 +08:00
|
|
|
|
2022-03-15 23:04:52 +08:00
|
|
|
describe("when only Own share type is enabled", () => {
|
|
|
|
beforeEach(() => enableSettings([]));
|
|
|
|
|
2022-04-28 19:37:20 +08:00
|
|
|
it("renders own and live location options", () => {
|
2022-03-03 18:30:46 +08:00
|
|
|
const component = getComponent();
|
2022-04-28 19:37:20 +08:00
|
|
|
expect(getShareTypeOption(component, LocationShareType.Own).length).toBe(1);
|
|
|
|
expect(getShareTypeOption(component, LocationShareType.Live).length).toBe(1);
|
2022-03-03 18:30:46 +08:00
|
|
|
});
|
|
|
|
|
2022-04-28 19:37:20 +08:00
|
|
|
it("renders back button from location picker screen", () => {
|
2022-03-03 18:30:46 +08:00
|
|
|
const component = getComponent();
|
2022-04-28 19:37:20 +08:00
|
|
|
setShareType(component, LocationShareType.Own);
|
|
|
|
|
|
|
|
expect(getBackButton(component).length).toBe(1);
|
2022-03-03 18:30:46 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("clicking cancel button from location picker closes dialog", () => {
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const component = getComponent({ onFinished });
|
2022-03-02 21:00:40 +08:00
|
|
|
|
2022-03-03 18:30:46 +08:00
|
|
|
act(() => {
|
|
|
|
getCancelButton(component).at(0).simulate("click");
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(onFinished).toHaveBeenCalled();
|
|
|
|
});
|
2022-03-10 01:14:07 +08:00
|
|
|
|
|
|
|
it("creates static own location share event on submission", () => {
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const component = getComponent({ onFinished });
|
|
|
|
|
2022-04-28 19:37:20 +08:00
|
|
|
setShareType(component, LocationShareType.Own);
|
|
|
|
|
2022-03-10 01:14:07 +08:00
|
|
|
setLocation(component);
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
getSubmitButton(component).at(0).simulate("click");
|
|
|
|
component.setProps({});
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(onFinished).toHaveBeenCalled();
|
|
|
|
const [messageRoomId, relation, messageBody] = mockClient.sendMessage.mock.calls[0];
|
|
|
|
expect(messageRoomId).toEqual(defaultProps.roomId);
|
|
|
|
expect(relation).toEqual(null);
|
|
|
|
expect(messageBody).toEqual(
|
|
|
|
expect.objectContaining({
|
2022-03-11 02:03:31 +08:00
|
|
|
[M_ASSET.name]: {
|
2022-03-10 01:14:07 +08:00
|
|
|
type: LocationAssetType.Self,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
2022-03-02 21:00:40 +08:00
|
|
|
});
|
|
|
|
|
2022-03-03 18:30:46 +08:00
|
|
|
describe("with pin drop share type enabled", () => {
|
|
|
|
it("renders share type switch with own and pin drop options", () => {
|
|
|
|
const component = getComponent();
|
2022-03-16 17:37:09 +08:00
|
|
|
expect(component.find("LocationPicker").length).toBe(0);
|
2022-03-03 18:30:46 +08:00
|
|
|
|
2022-03-16 17:37:09 +08:00
|
|
|
expect(getShareTypeOption(component, LocationShareType.Own).length).toBe(1);
|
|
|
|
expect(getShareTypeOption(component, LocationShareType.Pin).length).toBe(1);
|
2022-03-02 21:00:40 +08:00
|
|
|
});
|
|
|
|
|
2022-03-03 18:30:46 +08:00
|
|
|
it("does not render back button on share type screen", () => {
|
|
|
|
const component = getComponent();
|
2022-03-16 17:37:09 +08:00
|
|
|
expect(getBackButton(component).length).toBe(0);
|
2022-03-03 18:30:46 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("clicking cancel button from share type screen closes dialog", () => {
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const component = getComponent({ onFinished });
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
getCancelButton(component).at(0).simulate("click");
|
|
|
|
});
|
2022-03-02 21:00:40 +08:00
|
|
|
|
2022-03-03 18:30:46 +08:00
|
|
|
expect(onFinished).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("selecting own location share type advances to location picker", () => {
|
|
|
|
const component = getComponent();
|
|
|
|
|
2022-03-10 01:14:07 +08:00
|
|
|
setShareType(component, LocationShareType.Own);
|
2022-03-03 18:30:46 +08:00
|
|
|
|
2022-03-16 17:37:09 +08:00
|
|
|
expect(component.find("LocationPicker").length).toBe(1);
|
2022-03-03 18:30:46 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("clicking back button from location picker screen goes back to share screen", () => {
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const component = getComponent({ onFinished });
|
|
|
|
|
|
|
|
// advance to location picker
|
2022-03-10 01:14:07 +08:00
|
|
|
setShareType(component, LocationShareType.Own);
|
2022-03-03 18:30:46 +08:00
|
|
|
|
2022-03-16 17:37:09 +08:00
|
|
|
expect(component.find("LocationPicker").length).toBe(1);
|
2022-03-03 18:30:46 +08:00
|
|
|
|
|
|
|
act(() => {
|
|
|
|
getBackButton(component).at(0).simulate("click");
|
|
|
|
component.setProps({});
|
|
|
|
});
|
|
|
|
|
|
|
|
// back to share type
|
2022-03-16 17:37:09 +08:00
|
|
|
expect(component.find("ShareType").length).toBe(1);
|
2022-03-03 18:30:46 +08:00
|
|
|
});
|
2022-03-10 01:14:07 +08:00
|
|
|
|
|
|
|
it("creates pin drop location share event on submission", () => {
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const component = getComponent({ onFinished });
|
|
|
|
|
|
|
|
// advance to location picker
|
|
|
|
setShareType(component, LocationShareType.Pin);
|
|
|
|
|
|
|
|
setLocation(component);
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
getSubmitButton(component).at(0).simulate("click");
|
|
|
|
component.setProps({});
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(onFinished).toHaveBeenCalled();
|
|
|
|
const [messageRoomId, relation, messageBody] = mockClient.sendMessage.mock.calls[0];
|
|
|
|
expect(messageRoomId).toEqual(defaultProps.roomId);
|
|
|
|
expect(relation).toEqual(null);
|
|
|
|
expect(messageBody).toEqual(
|
|
|
|
expect.objectContaining({
|
2022-03-11 02:03:31 +08:00
|
|
|
[M_ASSET.name]: {
|
2022-03-10 01:14:07 +08:00
|
|
|
type: LocationAssetType.Pin,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
2022-03-02 01:00:07 +08:00
|
|
|
});
|
2022-03-15 23:04:52 +08:00
|
|
|
|
2022-04-28 19:37:20 +08:00
|
|
|
describe("with live location disabled", () => {
|
|
|
|
beforeEach(() => enableSettings([]));
|
|
|
|
|
|
|
|
const getToggle = (component: ReactWrapper) =>
|
|
|
|
findByTestId(component, "enable-live-share-toggle").find('[role="switch"]').at(0);
|
|
|
|
const getSubmitEnableButton = (component: ReactWrapper) =>
|
|
|
|
findByTestId(component, "enable-live-share-submit").at(0);
|
|
|
|
|
|
|
|
it("goes to labs flag screen after live options is clicked", () => {
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const component = getComponent({ onFinished });
|
2022-03-15 23:04:52 +08:00
|
|
|
|
2022-04-28 19:37:20 +08:00
|
|
|
setShareType(component, LocationShareType.Live);
|
|
|
|
|
|
|
|
expect(findByTestId(component, "location-picker-enable-live-share")).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("disables OK button when labs flag is not enabled", () => {
|
2022-03-15 23:04:52 +08:00
|
|
|
const component = getComponent();
|
|
|
|
|
2022-04-28 19:37:20 +08:00
|
|
|
setShareType(component, LocationShareType.Live);
|
2022-03-15 23:04:52 +08:00
|
|
|
|
2022-04-28 19:37:20 +08:00
|
|
|
expect(getSubmitEnableButton(component).props()["disabled"]).toBeTruthy();
|
|
|
|
});
|
2022-03-15 23:04:52 +08:00
|
|
|
|
2022-04-28 19:37:20 +08:00
|
|
|
it("enables OK button when labs flag is toggled to enabled", () => {
|
|
|
|
const component = getComponent();
|
|
|
|
|
|
|
|
setShareType(component, LocationShareType.Live);
|
2022-03-15 23:04:52 +08:00
|
|
|
|
2022-04-28 19:37:20 +08:00
|
|
|
act(() => {
|
|
|
|
getToggle(component).simulate("click");
|
|
|
|
component.setProps({});
|
|
|
|
});
|
|
|
|
expect(getSubmitEnableButton(component).props()["disabled"]).toBeFalsy();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("enables live share setting on ok button submit", () => {
|
|
|
|
const component = getComponent();
|
|
|
|
|
|
|
|
setShareType(component, LocationShareType.Live);
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
getToggle(component).simulate("click");
|
|
|
|
component.setProps({});
|
|
|
|
});
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
getSubmitEnableButton(component).simulate("click");
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(SettingsStore.setValue).toHaveBeenCalledWith(
|
|
|
|
"feature_location_share_live",
|
|
|
|
undefined,
|
|
|
|
SettingLevel.DEVICE,
|
|
|
|
true,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("navigates to location picker when live share is enabled in settings store", () => {
|
|
|
|
// @ts-ignore
|
|
|
|
mocked(SettingsStore.watchSetting).mockImplementation((featureName, roomId, callback) => {
|
|
|
|
callback(featureName, roomId, SettingLevel.DEVICE, "", "");
|
2022-11-30 19:32:56 +08:00
|
|
|
window.setTimeout(() => {
|
2022-04-28 19:37:20 +08:00
|
|
|
callback(featureName, roomId, SettingLevel.DEVICE, "", "");
|
|
|
|
}, 1000);
|
|
|
|
});
|
|
|
|
mocked(SettingsStore.getValue).mockReturnValue(false);
|
|
|
|
const component = getComponent();
|
|
|
|
|
|
|
|
setShareType(component, LocationShareType.Live);
|
|
|
|
|
|
|
|
// we're on enable live share screen
|
|
|
|
expect(findByTestId(component, "location-picker-enable-live-share").length).toBeTruthy();
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
mocked(SettingsStore.getValue).mockReturnValue(true);
|
|
|
|
// advance so watchSetting will update the value
|
|
|
|
jest.runAllTimers();
|
|
|
|
});
|
|
|
|
|
|
|
|
component.setProps({});
|
2022-03-16 17:37:09 +08:00
|
|
|
|
2022-04-28 19:37:20 +08:00
|
|
|
// advanced to location picker
|
|
|
|
expect(component.find("LocationPicker").length).toBeTruthy();
|
2022-03-15 23:04:52 +08:00
|
|
|
});
|
|
|
|
});
|
2022-03-18 17:52:24 +08:00
|
|
|
|
|
|
|
describe("Live location share", () => {
|
|
|
|
beforeEach(() => enableSettings(["feature_location_share_live"]));
|
|
|
|
|
2022-06-03 16:28:19 +08:00
|
|
|
it("does not display live location share option when composer has a relation", () => {
|
|
|
|
const relation = {
|
|
|
|
rel_type: RelationType.Thread,
|
|
|
|
event_id: "12345",
|
|
|
|
};
|
|
|
|
const component = getComponent({ relation });
|
|
|
|
|
|
|
|
expect(getShareTypeOption(component, LocationShareType.Live).length).toBeFalsy();
|
|
|
|
});
|
|
|
|
|
2022-06-30 15:33:51 +08:00
|
|
|
it("creates beacon info event on submission", async () => {
|
2022-03-18 17:52:24 +08:00
|
|
|
const onFinished = jest.fn();
|
|
|
|
const component = getComponent({ onFinished });
|
|
|
|
|
|
|
|
// advance to location picker
|
|
|
|
setShareType(component, LocationShareType.Live);
|
|
|
|
setLocation(component);
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
getSubmitButton(component).at(0).simulate("click");
|
|
|
|
component.setProps({});
|
|
|
|
});
|
|
|
|
|
2022-06-30 15:33:51 +08:00
|
|
|
// flush stopping existing beacons promises
|
|
|
|
await flushPromisesWithFakeTimers();
|
|
|
|
|
2022-03-18 17:52:24 +08:00
|
|
|
expect(onFinished).toHaveBeenCalled();
|
2022-04-08 16:53:06 +08:00
|
|
|
const [eventRoomId, eventContent] = mockClient.unstable_createLiveBeacon.mock.calls[0];
|
2022-03-18 17:52:24 +08:00
|
|
|
expect(eventRoomId).toEqual(defaultProps.roomId);
|
|
|
|
expect(eventContent).toEqual(
|
|
|
|
expect.objectContaining({
|
2022-04-08 16:53:06 +08:00
|
|
|
// default timeout
|
|
|
|
timeout: DEFAULT_DURATION_MS,
|
|
|
|
description: `Ernie's live location`,
|
|
|
|
live: true,
|
2022-03-18 17:52:24 +08:00
|
|
|
[M_ASSET.name]: {
|
|
|
|
type: LocationAssetType.Self,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2022-07-13 18:55:08 +08:00
|
|
|
it("opens error dialog when beacon creation fails", async () => {
|
2022-03-18 17:52:24 +08:00
|
|
|
// stub logger to keep console clean from expected error
|
|
|
|
const logSpy = jest.spyOn(logger, "error").mockReturnValue(undefined);
|
|
|
|
const error = new Error("oh no");
|
|
|
|
mockClient.unstable_createLiveBeacon.mockRejectedValue(error);
|
|
|
|
const component = getComponent();
|
|
|
|
|
|
|
|
// advance to location picker
|
|
|
|
setShareType(component, LocationShareType.Live);
|
|
|
|
setLocation(component);
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
getSubmitButton(component).at(0).simulate("click");
|
|
|
|
component.setProps({});
|
|
|
|
});
|
|
|
|
|
2022-06-30 15:33:51 +08:00
|
|
|
await flushPromisesWithFakeTimers();
|
2022-04-28 19:37:20 +08:00
|
|
|
await flushPromisesWithFakeTimers();
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-03-18 17:52:24 +08:00
|
|
|
|
|
|
|
expect(logSpy).toHaveBeenCalledWith("We couldn't start sharing your live location", error);
|
2022-07-13 18:55:08 +08:00
|
|
|
expect(mocked(Modal).createDialog).toHaveBeenCalledWith(
|
|
|
|
QuestionDialog,
|
|
|
|
expect.objectContaining({
|
|
|
|
button: "Try again",
|
|
|
|
description: "Element could not send your location. Please try again later.",
|
|
|
|
title: `We couldn't send your location`,
|
|
|
|
cancelButton: "Cancel",
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("opens error dialog when beacon creation fails with permission error", async () => {
|
|
|
|
// stub logger to keep console clean from expected error
|
|
|
|
const logSpy = jest.spyOn(logger, "error").mockReturnValue(undefined);
|
|
|
|
const error = { errcode: "M_FORBIDDEN" } as unknown as Error;
|
|
|
|
mockClient.unstable_createLiveBeacon.mockRejectedValue(error);
|
|
|
|
const component = getComponent();
|
|
|
|
|
|
|
|
// advance to location picker
|
|
|
|
setShareType(component, LocationShareType.Live);
|
|
|
|
setLocation(component);
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
getSubmitButton(component).at(0).simulate("click");
|
|
|
|
component.setProps({});
|
|
|
|
});
|
|
|
|
|
|
|
|
await flushPromisesWithFakeTimers();
|
|
|
|
await flushPromisesWithFakeTimers();
|
|
|
|
await flushPromisesWithFakeTimers();
|
|
|
|
|
|
|
|
expect(logSpy).toHaveBeenCalledWith("Insufficient permissions to start sharing your live location", error);
|
|
|
|
expect(mocked(Modal).createDialog).toHaveBeenCalledWith(
|
|
|
|
QuestionDialog,
|
|
|
|
expect.objectContaining({
|
|
|
|
button: "OK",
|
|
|
|
description: "You need to have the right permissions in order to share locations in this room.",
|
|
|
|
title: `You don't have permission to share locations`,
|
|
|
|
hasCancelButton: false,
|
|
|
|
}),
|
|
|
|
);
|
2022-03-18 17:52:24 +08:00
|
|
|
});
|
|
|
|
});
|
2022-03-02 01:00:07 +08:00
|
|
|
});
|
2022-03-15 23:04:52 +08:00
|
|
|
|
|
|
|
function enableSettings(settings: string[]) {
|
|
|
|
mocked(SettingsStore).getValue.mockReturnValue(false);
|
2022-11-04 18:48:08 +08:00
|
|
|
mocked(SettingsStore).getValue.mockImplementation((settingName: string): any => settings.includes(settingName));
|
2022-03-15 23:04:52 +08:00
|
|
|
}
|