123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- /*
- * Copyright 2023 Avaiga Private Limited
- *
- * 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 React from "react";
- import { render } from "@testing-library/react";
- import "@testing-library/jest-dom";
- import userEvent from "@testing-library/user-event";
- import axios from "axios";
- import Dialog from "./Dialog";
- import { TaipyContext } from "../../context/taipyContext";
- import { TaipyState, INITIAL_STATE } from "../../context/taipyReducers";
- import { HelmetProvider } from "react-helmet-async";
- jest.mock("axios");
- const mockedAxios = axios as jest.Mocked<typeof axios>;
- mockedAxios.get.mockRejectedValue("Network error: Something went wrong");
- mockedAxios.get.mockResolvedValue({ data: { jsx_no: '<div key="mock" data-testid="mocked"></div>' } });
- jest.mock("react-router-dom", () => ({
- ...jest.requireActual("react-router-dom"),
- useLocation: () => ({
- pathname: "pathname",
- }),
- }));
- beforeEach(() => {
- mockedAxios.get.mockClear();
- });
- describe("Dialog Component", () => {
- it("renders when value is true", async () => {
- const { getByText } = render(
- <HelmetProvider>
- <Dialog title="Dialog-Test-Title" page="page" open={true} />
- </HelmetProvider>
- );
- const elt = getByText("Dialog-Test-Title");
- expect(elt.tagName).toBe("H2");
- expect(mockedAxios.get).toHaveBeenCalled();
- });
- it("renders nothing when value is false", async () => {
- const { queryAllByText } = render(
- <HelmetProvider>
- <Dialog title="Dialog-Test-Title" page="page" open={false} />
- </HelmetProvider>
- );
- expect(queryAllByText("Dialog-Test-Title")).toHaveLength(0);
- const divs = document.getElementsByTagName("div");
- expect(divs).toHaveLength(1);
- expect(divs[0].childElementCount).toBe(0);
- });
- it("displays the right info for class", async () => {
- const wrapper = render(
- <HelmetProvider>
- <Dialog title="Dialog-Test-Title" page="page" open={true} className="taipy-dialog" />
- </HelmetProvider>
- );
- const elt = document.querySelector(".MuiDialog-root");
- expect(elt).toHaveClass("taipy-dialog");
- });
- it("displays the default value", async () => {
- const { getByText } = render(
- <HelmetProvider>
- <Dialog
- title="Dialog-Test-Title"
- page="page"
- defaultOpen="true"
- open={undefined as unknown as boolean}
- />
- </HelmetProvider>
- );
- getByText("Dialog-Test-Title");
- });
- it("doesn't show a button by default", async () => {
- const { getAllByRole } = render(
- <HelmetProvider>
- <Dialog
- title="Dialog-Test-Title"
- page="page"
- defaultOpen="true"
- open={undefined as unknown as boolean}
- />
- </HelmetProvider>
- );
- expect(getAllByRole("button")).toHaveLength(1);
- });
- it("shows one button when a label set", async () => {
- const { getAllByRole } = render(
- <HelmetProvider>
- <Dialog
- title="Dialog-Test-Title"
- page="page"
- defaultOpen="true"
- open={undefined as unknown as boolean}
- labels={JSON.stringify(["toto"])}
- />
- </HelmetProvider>
- );
- expect(getAllByRole("button")).toHaveLength(2);
- });
- it("shows 3 buttons when 3 labels set", async () => {
- const { getAllByRole } = render(
- <HelmetProvider>
- <Dialog
- title="Dialog-Test-Title"
- page="page"
- defaultOpen="true"
- open={undefined as unknown as boolean}
- labels={JSON.stringify(["toto", "titi", "toto"])}
- />
- </HelmetProvider>
- );
- expect(getAllByRole("button")).toHaveLength(4);
- });
- it("is disabled", async () => {
- const { getByText } = render(
- <HelmetProvider>
- <Dialog
- title="Dialog-Test-Title"
- page="page"
- open={true}
- active={false}
- labels={JSON.stringify(["testValidate", "testCancel"])}
- />
- </HelmetProvider>
- );
- expect(getByText("testValidate")).toBeDisabled();
- expect(getByText("testCancel")).toBeDisabled();
- });
- it("is enabled by default", async () => {
- const { getByText } = render(
- <HelmetProvider>
- <Dialog
- title="Dialog-Test-Title"
- page="page"
- open={true}
- labels={JSON.stringify(["testValidate", "testCancel"])}
- />
- </HelmetProvider>
- );
- expect(getByText("testValidate")).not.toBeDisabled();
- expect(getByText("testCancel")).not.toBeDisabled();
- });
- it("is enabled by active", async () => {
- const { getByText } = render(
- <HelmetProvider>
- <Dialog
- title="Dialog-Test-Title"
- page="page"
- open={true}
- active={true}
- labels={JSON.stringify(["testValidate", "testCancel"])}
- />
- </HelmetProvider>
- );
- expect(getByText("testValidate")).not.toBeDisabled();
- expect(getByText("testCancel")).not.toBeDisabled();
- });
- it("dispatch a well formed message on close icon press", async () => {
- const dispatch = jest.fn();
- const state: TaipyState = INITIAL_STATE;
- const { getByTitle } = render(
- <TaipyContext.Provider value={{ state, dispatch }}>
- <HelmetProvider>
- <Dialog
- id="testId"
- title="Dialog-Test-Title"
- page="page"
- open={true}
- active={true}
- onAction="testValidateAction"
- />
- </HelmetProvider>
- </TaipyContext.Provider>
- );
- await userEvent.click(getByTitle("Close"));
- expect(dispatch).toHaveBeenLastCalledWith({
- name: "testId",
- payload: { action: "testValidateAction", args: [-1] },
- type: "SEND_ACTION_ACTION",
- });
- });
- it("dispatch a well formed message on first button press", async () => {
- const dispatch = jest.fn();
- const state: TaipyState = INITIAL_STATE;
- const { getByText } = render(
- <TaipyContext.Provider value={{ state, dispatch }}>
- <HelmetProvider>
- <Dialog
- id="testId"
- title="Dialog-Test-Title"
- page="page"
- open={true}
- active={true}
- labels={JSON.stringify(["testValidate", "testCancel"])}
- onAction="testValidateAction"
- />
- </HelmetProvider>
- </TaipyContext.Provider>
- );
- await userEvent.click(getByText("testValidate"));
- expect(dispatch).toHaveBeenLastCalledWith({
- name: "testId",
- payload: { action: "testValidateAction", args: [0] },
- type: "SEND_ACTION_ACTION",
- });
- });
- it("dispatch a well formed message on third button press", async () => {
- const dispatch = jest.fn();
- const state: TaipyState = INITIAL_STATE;
- const { getByText } = render(
- <TaipyContext.Provider value={{ state, dispatch }}>
- <HelmetProvider>
- <Dialog
- id="testId"
- title="Dialog-Test-Title"
- page="page"
- open={true}
- active={true}
- labels={JSON.stringify(["testValidate", "testCancel", "Another One"])}
- onAction="testValidateAction"
- />
- </HelmetProvider>
- </TaipyContext.Provider>
- );
- await userEvent.click(getByText("Another One"));
- expect(dispatch).toHaveBeenLastCalledWith({
- name: "testId",
- payload: { action: "testValidateAction", args: [2] },
- type: "SEND_ACTION_ACTION",
- });
- });
- });
|