* Add support for storing debug logs locally and allowing local downloads. * static * Comprehensive testing for bug report flow. * Driveby cleanup of typography * fix i18n * Improvements to UX * More testing * update snaps * linting * lint * Fix feedback * Fix boldnewss * fix bold * fix heading * Increase test coverage * remove focus * Don't show the FAQ depending on whether you can submit feedback. * move reset * fix err * Remove unused * update snap * Remove text * Bumping up that coverage * tidy * lint * update snap * Use a const * fix imports * Remove import in e2e test * whoops
54 lines
2.2 KiB
TypeScript
54 lines
2.2 KiB
TypeScript
/*
|
|
Copyright 2026 Element Creations Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { render } from "jest-matrix-react";
|
|
import React, { type ComponentProps } from "react";
|
|
import { afterEach } from "node:test";
|
|
import userEvent from "@testing-library/user-event";
|
|
|
|
import { BugReportDialogButton } from "../../../../../src/components/views/elements/BugReportDialogButton";
|
|
import SdkConfig from "../../../../../src/SdkConfig";
|
|
import Modal from "../../../../../src/Modal";
|
|
import BugReportDialog from "../../../../../src/components/views/dialogs/BugReportDialog";
|
|
import { BugReportEndpointURLLocal } from "../../../../../src/IConfigOptions";
|
|
|
|
describe("<BugReportDialogButton />", () => {
|
|
const getComponent = (props: ComponentProps<typeof BugReportDialogButton> = {}) =>
|
|
render(<BugReportDialogButton {...props} />);
|
|
|
|
afterEach(() => {
|
|
SdkConfig.reset();
|
|
jest.restoreAllMocks();
|
|
});
|
|
|
|
it("renders nothing if the bug reporter is disabled", () => {
|
|
SdkConfig.put({ bug_report_endpoint_url: undefined });
|
|
const { container } = getComponent({});
|
|
expect(container).toBeEmptyDOMElement();
|
|
});
|
|
|
|
it("renders 'submit' label if a URL is configured", () => {
|
|
SdkConfig.put({ bug_report_endpoint_url: "https://example.org" });
|
|
const { container } = getComponent({});
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it("renders 'download' label if 'loca' is configured", () => {
|
|
SdkConfig.put({ bug_report_endpoint_url: BugReportEndpointURLLocal });
|
|
const { container } = getComponent({});
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it("passes through props to dialog", async () => {
|
|
SdkConfig.put({ bug_report_endpoint_url: BugReportEndpointURLLocal });
|
|
const spy = jest.spyOn(Modal, "createDialog");
|
|
const { getByRole } = getComponent({ label: "a label", error: "an error" });
|
|
await userEvent.click(getByRole("button"));
|
|
expect(spy).toHaveBeenCalledWith(BugReportDialog, { error: "an error", label: "a label" });
|
|
});
|
|
});
|