2022-03-21 19:42:58 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-03-21 19:42:58 +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-21 19:42:58 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2023-02-14 15:53:36 +08:00
|
|
|
import { render, screen } from "@testing-library/react";
|
|
|
|
import userEvent from "@testing-library/user-event";
|
2022-03-21 19:42:58 +08:00
|
|
|
|
|
|
|
import LiveDurationDropdown, {
|
|
|
|
DEFAULT_DURATION_MS,
|
|
|
|
} from "../../../../src/components/views/location/LiveDurationDropdown";
|
2023-02-14 15:53:36 +08:00
|
|
|
import { mockPlatformPeg } from "../../../test-utils";
|
2022-03-21 19:42:58 +08:00
|
|
|
|
|
|
|
mockPlatformPeg({ overrideBrowserShortcuts: jest.fn().mockReturnValue(false) });
|
|
|
|
|
|
|
|
describe("<LiveDurationDropdown />", () => {
|
|
|
|
const defaultProps = {
|
|
|
|
timeout: DEFAULT_DURATION_MS,
|
|
|
|
onChange: jest.fn(),
|
|
|
|
};
|
2023-02-14 15:53:36 +08:00
|
|
|
const renderComponent = (props = {}) => render(<LiveDurationDropdown {...defaultProps} {...props} />);
|
2022-03-21 19:42:58 +08:00
|
|
|
|
2023-02-14 15:53:36 +08:00
|
|
|
const getOption = (duration: string) => screen.getByRole("option", { name: `Share for ${duration}` });
|
|
|
|
const getSelectedOption = (duration: string) => screen.getByRole("button", { name: `Share for ${duration}` });
|
|
|
|
const openDropdown = async () => {
|
|
|
|
await userEvent.click(screen.getByRole("button"));
|
|
|
|
};
|
2022-03-21 19:42:58 +08:00
|
|
|
|
|
|
|
it("renders timeout as selected option", () => {
|
2023-02-14 15:53:36 +08:00
|
|
|
renderComponent();
|
|
|
|
expect(getSelectedOption("15m")).toBeInTheDocument();
|
2022-03-21 19:42:58 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("renders non-default timeout as selected option", () => {
|
|
|
|
const timeout = 1234567;
|
2023-02-14 15:53:36 +08:00
|
|
|
renderComponent({ timeout });
|
|
|
|
expect(getSelectedOption("21m")).toBeInTheDocument();
|
2022-03-21 19:42:58 +08:00
|
|
|
});
|
|
|
|
|
2023-02-14 15:53:36 +08:00
|
|
|
it("renders a dropdown option for a non-default timeout value", async () => {
|
2022-03-21 19:42:58 +08:00
|
|
|
const timeout = 1234567;
|
2023-02-14 15:53:36 +08:00
|
|
|
renderComponent({ timeout });
|
|
|
|
await openDropdown();
|
|
|
|
expect(getOption("21m")).toBeInTheDocument();
|
2022-03-21 19:42:58 +08:00
|
|
|
});
|
|
|
|
|
2023-02-14 15:53:36 +08:00
|
|
|
it("updates value on option selection", async () => {
|
2022-03-21 19:42:58 +08:00
|
|
|
const onChange = jest.fn();
|
2023-02-14 15:53:36 +08:00
|
|
|
renderComponent({ onChange });
|
2022-03-21 19:42:58 +08:00
|
|
|
|
|
|
|
const ONE_HOUR = 3600000;
|
|
|
|
|
2023-02-14 15:53:36 +08:00
|
|
|
await openDropdown();
|
|
|
|
await userEvent.click(getOption("1h"));
|
2022-03-21 19:42:58 +08:00
|
|
|
|
|
|
|
expect(onChange).toHaveBeenCalledWith(ONE_HOUR);
|
|
|
|
});
|
|
|
|
});
|