/* Copyright 2023 New Vector Ltd 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 { describe, expect, test, vi } from "vitest"; import { render, configure } from "@testing-library/react"; import userEvent from "@testing-library/user-event"; import { Toast } from "../src/Toast"; import { withFakeTimers } from "./utils/test"; configure({ defaultHidden: true, }); // Test Explanation: // This test the toast. We need to use { document: window.document } because the toast listens // for user input on `window`. describe("Toast", () => { test("renders", () => { const { queryByRole } = render( {}}> Hello world! , ); expect(queryByRole("dialog")).toBe(null); const { getByRole } = render( {}}> Hello world! , ); expect(getByRole("dialog")).toMatchSnapshot(); }); test("dismisses when Esc is pressed", async () => { const user = userEvent.setup({ document: window.document }); const onDismiss = vi.fn(); render( Hello world! , ); await user.keyboard("[Escape]"); expect(onDismiss).toHaveBeenCalled(); }); test("dismisses when background is clicked", async () => { const user = userEvent.setup(); const onDismiss = vi.fn(); const { getByRole, unmount } = render( Hello world! , ); const background = getByRole("dialog").previousSibling! as Element; await user.click(background); expect(onDismiss).toHaveBeenCalled(); unmount(); }); test("dismisses itself after the specified timeout", () => { withFakeTimers(() => { const onDismiss = vi.fn(); render( Hello world! , ); vi.advanceTimersByTime(2000); expect(onDismiss).toHaveBeenCalled(); }); }); });