2022-04-14 20:41:28 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-04-14 20:41:28 +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-14 20:41:28 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
import { mocked } from "jest-mock";
|
|
|
|
import { Beacon } from "matrix-js-sdk/src/matrix";
|
2024-10-15 00:11:58 +08:00
|
|
|
import { render, screen } from "jest-matrix-react";
|
2023-02-10 22:16:08 +08:00
|
|
|
import userEvent from "@testing-library/user-event";
|
2022-04-14 20:41:28 +08:00
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import OwnBeaconStatus from "../../../../../src/components/views/beacon/OwnBeaconStatus";
|
|
|
|
import { BeaconDisplayStatus } from "../../../../../src/components/views/beacon/displayStatus";
|
|
|
|
import { useOwnLiveBeacons } from "../../../../../src/utils/beacon";
|
|
|
|
import { makeBeaconInfoEvent } from "../../../../test-utils";
|
2022-04-14 20:41:28 +08:00
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
jest.mock("../../../../../src/utils/beacon/useOwnLiveBeacons", () => ({
|
2022-04-14 20:41:28 +08:00
|
|
|
useOwnLiveBeacons: jest.fn(),
|
|
|
|
}));
|
|
|
|
|
2023-03-02 17:58:05 +08:00
|
|
|
const defaultLiveBeaconsState = {
|
|
|
|
onStopSharing: jest.fn(),
|
|
|
|
onResetLocationPublishError: jest.fn(),
|
|
|
|
stoppingInProgress: false,
|
|
|
|
hasStopSharingError: false,
|
|
|
|
hasLocationPublishError: false,
|
|
|
|
};
|
|
|
|
|
2022-04-14 20:41:28 +08:00
|
|
|
describe("<OwnBeaconStatus />", () => {
|
|
|
|
const defaultProps = {
|
|
|
|
displayStatus: BeaconDisplayStatus.Loading,
|
|
|
|
};
|
|
|
|
const userId = "@user:server";
|
|
|
|
const roomId = "!room:server";
|
2023-02-10 22:16:08 +08:00
|
|
|
let defaultBeacon: Beacon;
|
|
|
|
const renderComponent = (props: Partial<React.ComponentProps<typeof OwnBeaconStatus>> = {}) =>
|
|
|
|
render(<OwnBeaconStatus {...defaultProps} {...props} />);
|
|
|
|
const getRetryButton = () => screen.getByRole("button", { name: "Retry" });
|
|
|
|
const getStopButton = () => screen.getByRole("button", { name: "Stop" });
|
2022-04-14 20:41:28 +08:00
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.spyOn(global.Date, "now").mockReturnValue(123456789);
|
2023-03-02 17:58:05 +08:00
|
|
|
mocked(useOwnLiveBeacons).mockClear().mockReturnValue(defaultLiveBeaconsState);
|
2022-04-14 20:41:28 +08:00
|
|
|
|
|
|
|
defaultBeacon = new Beacon(makeBeaconInfoEvent(userId, roomId));
|
|
|
|
});
|
|
|
|
|
|
|
|
it("renders without a beacon instance", () => {
|
2023-02-10 22:16:08 +08:00
|
|
|
const { asFragment } = renderComponent();
|
|
|
|
expect(asFragment()).toMatchSnapshot();
|
2022-04-14 20:41:28 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("Active state", () => {
|
|
|
|
it("renders stop button", () => {
|
|
|
|
const displayStatus = BeaconDisplayStatus.Active;
|
|
|
|
mocked(useOwnLiveBeacons).mockReturnValue({
|
2023-03-02 17:58:05 +08:00
|
|
|
...defaultLiveBeaconsState,
|
2022-04-14 20:41:28 +08:00
|
|
|
onStopSharing: jest.fn(),
|
|
|
|
});
|
2023-02-10 22:16:08 +08:00
|
|
|
renderComponent({ displayStatus, beacon: defaultBeacon });
|
|
|
|
expect(screen.getByText("Live location enabled")).toBeInTheDocument();
|
|
|
|
expect(getStopButton()).toBeInTheDocument();
|
2022-04-14 20:41:28 +08:00
|
|
|
});
|
|
|
|
|
2023-02-10 22:16:08 +08:00
|
|
|
it("stops sharing on stop button click", async () => {
|
2022-04-14 20:41:28 +08:00
|
|
|
const displayStatus = BeaconDisplayStatus.Active;
|
|
|
|
const onStopSharing = jest.fn();
|
|
|
|
mocked(useOwnLiveBeacons).mockReturnValue({
|
2023-03-02 17:58:05 +08:00
|
|
|
...defaultLiveBeaconsState,
|
2022-04-14 20:41:28 +08:00
|
|
|
onStopSharing,
|
|
|
|
});
|
2023-02-10 22:16:08 +08:00
|
|
|
renderComponent({ displayStatus, beacon: defaultBeacon });
|
|
|
|
await userEvent.click(getStopButton());
|
2022-04-14 20:41:28 +08:00
|
|
|
expect(onStopSharing).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("errors", () => {
|
|
|
|
it("renders in error mode when displayStatus is error", () => {
|
|
|
|
const displayStatus = BeaconDisplayStatus.Error;
|
2023-02-10 22:16:08 +08:00
|
|
|
renderComponent({ displayStatus });
|
|
|
|
expect(screen.getByText("Live location error")).toBeInTheDocument();
|
2022-04-14 20:41:28 +08:00
|
|
|
|
|
|
|
// no actions for plain error
|
2023-02-10 22:16:08 +08:00
|
|
|
expect(screen.queryByRole("button")).not.toBeInTheDocument();
|
2022-04-14 20:41:28 +08:00
|
|
|
});
|
|
|
|
|
2022-04-25 20:44:18 +08:00
|
|
|
describe("with location publish error", () => {
|
2022-04-14 20:41:28 +08:00
|
|
|
it("renders in error mode", () => {
|
|
|
|
const displayStatus = BeaconDisplayStatus.Active;
|
|
|
|
mocked(useOwnLiveBeacons).mockReturnValue({
|
2023-03-02 17:58:05 +08:00
|
|
|
...defaultLiveBeaconsState,
|
2022-04-25 20:44:18 +08:00
|
|
|
hasLocationPublishError: true,
|
|
|
|
onResetLocationPublishError: jest.fn(),
|
2022-04-14 20:41:28 +08:00
|
|
|
});
|
2023-02-10 22:16:08 +08:00
|
|
|
renderComponent({ displayStatus, beacon: defaultBeacon });
|
|
|
|
expect(screen.getByText("Live location error")).toBeInTheDocument();
|
2022-04-14 20:41:28 +08:00
|
|
|
// retry button
|
2023-02-10 22:16:08 +08:00
|
|
|
expect(getRetryButton()).toBeInTheDocument();
|
2022-04-14 20:41:28 +08:00
|
|
|
});
|
|
|
|
|
2023-02-10 22:16:08 +08:00
|
|
|
it("retry button resets location publish error", async () => {
|
2022-04-14 20:41:28 +08:00
|
|
|
const displayStatus = BeaconDisplayStatus.Active;
|
2022-04-25 20:44:18 +08:00
|
|
|
const onResetLocationPublishError = jest.fn();
|
2022-04-14 20:41:28 +08:00
|
|
|
mocked(useOwnLiveBeacons).mockReturnValue({
|
2023-03-02 17:58:05 +08:00
|
|
|
...defaultLiveBeaconsState,
|
2022-04-25 20:44:18 +08:00
|
|
|
hasLocationPublishError: true,
|
|
|
|
onResetLocationPublishError,
|
2022-04-14 20:41:28 +08:00
|
|
|
});
|
2023-02-10 22:16:08 +08:00
|
|
|
renderComponent({ displayStatus, beacon: defaultBeacon });
|
|
|
|
await userEvent.click(getRetryButton());
|
2022-04-14 20:41:28 +08:00
|
|
|
|
2022-04-25 20:44:18 +08:00
|
|
|
expect(onResetLocationPublishError).toHaveBeenCalled();
|
2022-04-14 20:41:28 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("with stopping error", () => {
|
|
|
|
it("renders in error mode", () => {
|
|
|
|
const displayStatus = BeaconDisplayStatus.Active;
|
|
|
|
mocked(useOwnLiveBeacons).mockReturnValue({
|
2023-03-02 17:58:05 +08:00
|
|
|
...defaultLiveBeaconsState,
|
2022-04-25 20:44:18 +08:00
|
|
|
hasLocationPublishError: false,
|
2022-04-14 20:41:28 +08:00
|
|
|
hasStopSharingError: true,
|
|
|
|
onStopSharing: jest.fn(),
|
|
|
|
});
|
2023-02-10 22:16:08 +08:00
|
|
|
renderComponent({ displayStatus, beacon: defaultBeacon });
|
|
|
|
expect(screen.getByText("Live location error")).toBeInTheDocument();
|
2022-04-14 20:41:28 +08:00
|
|
|
// retry button
|
2023-02-10 22:16:08 +08:00
|
|
|
expect(getRetryButton()).toBeInTheDocument();
|
2022-04-14 20:41:28 +08:00
|
|
|
});
|
|
|
|
|
2023-02-10 22:16:08 +08:00
|
|
|
it("retry button retries stop sharing", async () => {
|
2022-04-14 20:41:28 +08:00
|
|
|
const displayStatus = BeaconDisplayStatus.Active;
|
|
|
|
const onStopSharing = jest.fn();
|
|
|
|
mocked(useOwnLiveBeacons).mockReturnValue({
|
2023-03-02 17:58:05 +08:00
|
|
|
...defaultLiveBeaconsState,
|
2022-04-14 20:41:28 +08:00
|
|
|
hasStopSharingError: true,
|
|
|
|
onStopSharing,
|
|
|
|
});
|
2023-02-10 22:16:08 +08:00
|
|
|
renderComponent({ displayStatus, beacon: defaultBeacon });
|
|
|
|
await userEvent.click(getRetryButton());
|
2022-04-14 20:41:28 +08:00
|
|
|
|
|
|
|
expect(onStopSharing).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("renders loading state correctly", () => {
|
2023-02-10 22:16:08 +08:00
|
|
|
const component = renderComponent();
|
2022-04-14 20:41:28 +08:00
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|