import { render, screen, act } from "@testing-library/react"; import userEvent from "@testing-library/user-event"; import { describe, it, vi, expect } from "vitest"; import { BaseModal } from "#/components/shared/modals/base-modal/base-modal"; describe("BaseModal", () => { const onOpenChangeMock = vi.fn(); it("should render if the modal is open", () => { const { rerender } = render( , ); expect(screen.queryByText("Settings")).not.toBeInTheDocument(); rerender( , ); expect(screen.getByText("Settings")).toBeInTheDocument(); }); it("should render an optional subtitle", () => { render( , ); expect(screen.getByText("Subtitle")).toBeInTheDocument(); }); it("should render actions", async () => { const onPrimaryClickMock = vi.fn(); const onSecondaryClickMock = vi.fn(); const primaryAction = { action: onPrimaryClickMock, label: "Save", }; const secondaryAction = { action: onSecondaryClickMock, label: "Cancel", }; render( , ); expect(screen.getByText("Save")).toBeInTheDocument(); expect(screen.getByText("Cancel")).toBeInTheDocument(); await userEvent.click(screen.getByText("Save")); expect(onPrimaryClickMock).toHaveBeenCalledTimes(1); await userEvent.click(screen.getByText("Cancel")); expect(onSecondaryClickMock).toHaveBeenCalledTimes(1); }); it("should close the modal after an action is performed", async () => { render( {}, closeAfterAction: true, }, ]} />, ); await userEvent.click(screen.getByText("Save")); expect(onOpenChangeMock).toHaveBeenCalledTimes(1); }); it("should render children", () => { render(
Children
, ); expect(screen.getByText("Children")).toBeInTheDocument(); }); it("should disable the action given the condition", () => { const { rerender } = render( {}, isDisabled: true, }, ]} />, ); expect(screen.getByText("Save")).toBeDisabled(); rerender( {}, isDisabled: false, }, ]} />, ); expect(screen.getByText("Save")).not.toBeDisabled(); }); it.skip("should not close if the backdrop or escape key is pressed", () => { render( , ); act(() => { userEvent.keyboard("{esc}"); }); // fails because the nextui component wraps the modal content in an aria-hidden div expect(screen.getByRole("dialog")).toBeVisible(); }); });