|
@@ -0,0 +1,170 @@
|
|
|
|
+/*
|
|
|
|
+ * Copyright 2021-2024 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 { getByTitle, render } from "@testing-library/react";
|
|
|
|
+import "@testing-library/jest-dom";
|
|
|
|
+import userEvent from "@testing-library/user-event";
|
|
|
|
+
|
|
|
|
+import TableSort from "./TableSort";
|
|
|
|
+import { ColumnDesc } from "./tableUtils";
|
|
|
|
+
|
|
|
|
+const tableColumns = {
|
|
|
|
+ StringCol: { dfid: "StringCol", type: "object", index: 0, format: "", filter: true },
|
|
|
|
+ NumberCol: { dfid: "NumberCol", type: "int", index: 1, format: "", filter: true },
|
|
|
|
+ BoolCol: { dfid: "BoolCol", type: "bool", index: 2, format: "", filter: true },
|
|
|
|
+ DateCol: { dfid: "DateCol", type: "datetime", index: 3, format: "", filter: true },
|
|
|
|
+} as Record<string, ColumnDesc>;
|
|
|
|
+const colsOrder = ["StringCol", "NumberCol", "BoolCol", "DateCol"];
|
|
|
|
+
|
|
|
|
+beforeEach(() => {
|
|
|
|
+ // add window.matchMedia
|
|
|
|
+ // this is necessary for the date picker to be rendered in desktop mode.
|
|
|
|
+ // if this is not provided, the mobile mode is rendered, which might lead to unexpected behavior
|
|
|
|
+ Object.defineProperty(window, "matchMedia", {
|
|
|
|
+ writable: true,
|
|
|
|
+ value: (query: string): MediaQueryList => ({
|
|
|
|
+ media: query,
|
|
|
|
+ // this is the media query that @material-ui/pickers uses to determine if a device is a desktop device
|
|
|
|
+ matches: query === "(pointer: fine)",
|
|
|
|
+ onchange: () => {},
|
|
|
|
+ addEventListener: () => {},
|
|
|
|
+ removeEventListener: () => {},
|
|
|
|
+ addListener: () => {},
|
|
|
|
+ removeListener: () => {},
|
|
|
|
+ dispatchEvent: () => false,
|
|
|
|
+ }),
|
|
|
|
+ });
|
|
|
|
+});
|
|
|
|
+
|
|
|
|
+afterEach(() => {
|
|
|
|
+ // @ts-ignore
|
|
|
|
+ delete window.matchMedia;
|
|
|
|
+});
|
|
|
|
+
|
|
|
|
+describe("Table Filter Component", () => {
|
|
|
|
+ it("renders an icon", async () => {
|
|
|
|
+ const { getByTestId } = render(
|
|
|
|
+ <TableSort columns={tableColumns} colsOrder={colsOrder} onValidate={jest.fn()} />
|
|
|
|
+ );
|
|
|
|
+ const elt = getByTestId("SortByAlphaIcon");
|
|
|
|
+ expect(elt.parentElement?.parentElement?.tagName).toBe("BUTTON");
|
|
|
|
+ });
|
|
|
|
+ it("renders popover when clicked", async () => {
|
|
|
|
+ const { getByTestId, getAllByText, getAllByTestId } = render(
|
|
|
|
+ <TableSort columns={tableColumns} colsOrder={colsOrder} onValidate={jest.fn()} />
|
|
|
|
+ );
|
|
|
|
+ const elt = getByTestId("SortByAlphaIcon");
|
|
|
|
+ await userEvent.click(elt);
|
|
|
|
+ expect(getAllByText("Column")).toHaveLength(2);
|
|
|
|
+ const dropdownElts = getAllByTestId("ArrowDropDownIcon");
|
|
|
|
+ expect(dropdownElts).toHaveLength(1);
|
|
|
|
+ expect(getByTestId("CheckIcon").parentElement).toBeDisabled();
|
|
|
|
+ expect(getByTestId("DeleteIcon").parentElement).toBeDisabled();
|
|
|
|
+ });
|
|
|
|
+ it("behaves on column", async () => {
|
|
|
|
+ const { getByTestId, getAllByTestId, findByRole, getByText } = render(
|
|
|
|
+ <TableSort columns={tableColumns} colsOrder={colsOrder} onValidate={jest.fn()} />
|
|
|
|
+ );
|
|
|
|
+ const elt = getByTestId("SortByAlphaIcon");
|
|
|
|
+ await userEvent.click(elt);
|
|
|
|
+ const dropdownElts = getAllByTestId("ArrowDropDownIcon");
|
|
|
|
+ expect(dropdownElts).toHaveLength(1);
|
|
|
|
+ await userEvent.click(dropdownElts[0].parentElement?.firstElementChild || dropdownElts[0]);
|
|
|
|
+ await findByRole("listbox");
|
|
|
|
+ await userEvent.click(getByText("StringCol"));
|
|
|
|
+ await findByRole("checkbox");
|
|
|
|
+ const validate = getByTestId("CheckIcon").parentElement;
|
|
|
|
+ expect(validate).not.toBeDisabled();
|
|
|
|
+ });
|
|
|
|
+ it("adds a row on validation", async () => {
|
|
|
|
+ const onValidate = jest.fn();
|
|
|
|
+ const { getByTestId, getAllByTestId, findByRole, getByText } = render(
|
|
|
|
+ <TableSort columns={tableColumns} colsOrder={colsOrder} onValidate={onValidate} />
|
|
|
|
+ );
|
|
|
|
+ const elt = getByTestId("SortByAlphaIcon");
|
|
|
|
+ await userEvent.click(elt);
|
|
|
|
+ const dropdownElts = getAllByTestId("ArrowDropDownIcon");
|
|
|
|
+ expect(dropdownElts).toHaveLength(1);
|
|
|
|
+ await userEvent.click(dropdownElts[0].parentElement?.firstElementChild || dropdownElts[0]);
|
|
|
|
+ await findByRole("listbox");
|
|
|
|
+ await userEvent.click(getByText("StringCol"));
|
|
|
|
+ await findByRole("checkbox");
|
|
|
|
+ const validate = getByTestId("CheckIcon");
|
|
|
|
+ expect(validate.parentElement).not.toBeDisabled();
|
|
|
|
+ await userEvent.click(validate);
|
|
|
|
+ const ddElts = getAllByTestId("ArrowDropDownIcon");
|
|
|
|
+ expect(ddElts).toHaveLength(2);
|
|
|
|
+ getByText("1");
|
|
|
|
+ expect(onValidate).toHaveBeenCalled();
|
|
|
|
+ });
|
|
|
|
+ it("delete a row", async () => {
|
|
|
|
+ const onValidate = jest.fn();
|
|
|
|
+ const { getByTestId, getAllByTestId, findByRole, getByText } = render(
|
|
|
|
+ <TableSort columns={tableColumns} colsOrder={colsOrder} onValidate={onValidate} />
|
|
|
|
+ );
|
|
|
|
+ const elt = getByTestId("SortByAlphaIcon");
|
|
|
|
+ await userEvent.click(elt);
|
|
|
|
+ const dropdownElts = getAllByTestId("ArrowDropDownIcon");
|
|
|
|
+ expect(dropdownElts).toHaveLength(1);
|
|
|
|
+ await userEvent.click(dropdownElts[0].parentElement?.firstElementChild || dropdownElts[0]);
|
|
|
|
+ await findByRole("listbox");
|
|
|
|
+ await userEvent.click(getByText("StringCol"));
|
|
|
|
+ await findByRole("checkbox");
|
|
|
|
+ const validate = getByTestId("CheckIcon");
|
|
|
|
+ expect(validate.parentElement).not.toBeDisabled();
|
|
|
|
+ await userEvent.click(validate);
|
|
|
|
+ const ddElts = getAllByTestId("ArrowDropDownIcon");
|
|
|
|
+ expect(ddElts).toHaveLength(2);
|
|
|
|
+ const deletes = getAllByTestId("DeleteIcon");
|
|
|
|
+ expect(deletes).toHaveLength(2);
|
|
|
|
+ expect(deletes[0].parentElement).not.toBeDisabled();
|
|
|
|
+ expect(deletes[1].parentElement).toBeDisabled();
|
|
|
|
+ await userEvent.click(deletes[0]);
|
|
|
|
+ const ddElts2 = getAllByTestId("ArrowDropDownIcon");
|
|
|
|
+ expect(ddElts2).toHaveLength(1);
|
|
|
|
+ });
|
|
|
|
+ it("reset filters", async () => {
|
|
|
|
+ const onValidate = jest.fn();
|
|
|
|
+ const { getAllByTestId, getByTestId } = render(
|
|
|
|
+ <TableSort
|
|
|
|
+ columns={tableColumns}
|
|
|
|
+ colsOrder={colsOrder}
|
|
|
|
+ onValidate={onValidate}
|
|
|
|
+ appliedSorts={[{ col: "StringCol", order: true }]}
|
|
|
|
+ />
|
|
|
|
+ );
|
|
|
|
+ const elt = getByTestId("SortByAlphaIcon");
|
|
|
|
+ await userEvent.click(elt);
|
|
|
|
+ const deletes = getAllByTestId("DeleteIcon");
|
|
|
|
+ expect(deletes).toHaveLength(2);
|
|
|
|
+ expect(deletes[0].parentElement).not.toBeDisabled();
|
|
|
|
+ expect(deletes[1].parentElement).toBeDisabled();
|
|
|
|
+ await userEvent.click(deletes[0]);
|
|
|
|
+ expect(onValidate).toHaveBeenCalled();
|
|
|
|
+ });
|
|
|
|
+ it("ignores unapplicable filters", async () => {
|
|
|
|
+ const { getAllByTestId, getByTestId } = render(
|
|
|
|
+ <TableSort
|
|
|
|
+ columns={tableColumns}
|
|
|
|
+ colsOrder={colsOrder}
|
|
|
|
+ onValidate={jest.fn()}
|
|
|
|
+ appliedSorts={[{ col: "unknown col", order: true }]}
|
|
|
|
+ />
|
|
|
|
+ );
|
|
|
|
+ const elt = getByTestId("SortByAlphaIcon");
|
|
|
|
+ await userEvent.click(elt);
|
|
|
|
+ const ddElts2 = getAllByTestId("ArrowDropDownIcon");
|
|
|
|
+ expect(ddElts2).toHaveLength(1);
|
|
|
|
+ });
|
|
|
|
+});
|