-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* sort scenario selector resolves #1301 * do not show sort column if no option * missing dependency * remove unwanted file * fix for python < 3.10 * format * with doc and support for sorting on datanode properties * format * fix subclass error * Good catch @fab Co-authored-by: Fabien Lelaquais <[email protected]> * Fab's comments * fix * no more Order label --------- Co-authored-by: Fred Lefévère-Laoide <[email protected]> Co-authored-by: Fabien Lelaquais <[email protected]>
- Loading branch information
1 parent
4d3e5d6
commit 27f4a9a
Showing
12 changed files
with
650 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
170 changes: 170 additions & 0 deletions
170
frontend/taipy-gui/src/components/Taipy/TableSort.spec.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); | ||
}); | ||
}); |
Oops, something went wrong.