From: Michal Klobukowski Date: Thu, 5 Jul 2018 13:30:11 +0000 (+0200) Subject: Update existing tests to work with latest changes X-Git-Tag: 1.2.0~59^2~4 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/9ab26fe1f0838a97818416bd6b833fc74968ed65 Update existing tests to work with latest changes Feature #13703 Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski --- diff --git a/src/components/data-explorer/data-explorer.test.tsx b/src/components/data-explorer/data-explorer.test.tsx index 94c7be6d..33899c00 100644 --- a/src/components/data-explorer/data-explorer.test.tsx +++ b/src/components/data-explorer/data-explorer.test.tsx @@ -12,6 +12,7 @@ import ColumnSelector from "../column-selector/column-selector"; import DataTable from "../data-table/data-table"; import SearchInput from "../search-input/search-input"; import { TablePagination } from "@material-ui/core"; +import { MockItem } from "../data-table/data-table.test"; configure({ adapter: new Adapter() }); @@ -23,7 +24,7 @@ describe("", () => { {...mockDataExplorerProps()} contextActions={[]} onContextAction={onContextAction} - items={["Item 1"]} + items={[{ key: "1", name: "item 1" }] as MockItem[]} columns={[{ name: "Column 1", render: jest.fn(), selected: true }]} />); expect(dataExplorer.find(ContextMenu).prop("actions")).toEqual([]); dataExplorer.find(DataTable).prop("onRowContextMenu")({ @@ -38,7 +39,7 @@ describe("", () => { const onSearch = jest.fn(); const dataExplorer = mount(); expect(dataExplorer.find(SearchInput).prop("value")).toEqual("search value"); @@ -54,7 +55,7 @@ describe("", () => { columns={columns} onColumnToggle={onColumnToggle} contextActions={[]} - items={["Item 1"]} />); + items={[{ key: "1", name: "item 1" }] as MockItem[]} />); expect(dataExplorer.find(ColumnSelector).prop("columns")).toBe(columns); dataExplorer.find(ColumnSelector).prop("onColumnToggle")("columns"); expect(onColumnToggle).toHaveBeenCalledWith("columns"); @@ -65,7 +66,7 @@ describe("", () => { const onSortToggle = jest.fn(); const onRowClick = jest.fn(); const columns = [{ name: "Column 1", render: jest.fn(), selected: true }]; - const items = ["Item 1"]; + const items = [{ key: "1", name: "item 1" }] as MockItem[]; const dataExplorer = mount(", () => { expect(onRowClick).toHaveBeenCalledWith("rowClick"); }); - it("does not render , and if there is no items", () => { + it("does not render if there is no items", () => { const dataExplorer = mount(); - expect(dataExplorer.find(SearchInput)).toHaveLength(0); expect(dataExplorer.find(TablePagination)).toHaveLength(0); }); @@ -97,7 +97,7 @@ describe("", () => { const onChangeRowsPerPage = jest.fn(); const dataExplorer = mount(", () => { const mockDataExplorerProps = () => ({ columns: [], items: [], + itemsAvailable: 0, contextActions: [], searchValue: "", page: 0, diff --git a/src/components/data-table/data-table.test.tsx b/src/components/data-table/data-table.test.tsx index b9d11252..6dbccb5e 100644 --- a/src/components/data-table/data-table.test.tsx +++ b/src/components/data-table/data-table.test.tsx @@ -6,14 +6,19 @@ import * as React from "react"; import { mount, configure } from "enzyme"; import { TableHead, TableCell, Typography, TableBody, Button, TableSortLabel } from "@material-ui/core"; import * as Adapter from "enzyme-adapter-react-16"; -import DataTable, { DataColumns } from "./data-table"; +import DataTable, { DataColumns, DataItem } from "./data-table"; import DataTableFilters from "../data-table-filters/data-table-filters"; +import { SortDirection } from "./data-column"; configure({ adapter: new Adapter() }); +export interface MockItem extends DataItem { + name: string; +} + describe("", () => { it("shows only selected columns", () => { - const columns: DataColumns = [ + const columns: DataColumns = [ { name: "Column 1", render: () => , @@ -32,7 +37,7 @@ describe("", () => { ]; const dataTable = mount(", () => { }); it("renders column name", () => { - const columns: DataColumns = [ + const columns: DataColumns = [ { name: "Column 1", render: () => , @@ -50,7 +55,7 @@ describe("", () => { ]; const dataTable = mount(", () => { }); it("uses renderHeader instead of name prop", () => { - const columns: DataColumns = [ + const columns: DataColumns = [ { name: "Column 1", renderHeader: () => Column Header, @@ -69,7 +74,7 @@ describe("", () => { ]; const dataTable = mount(", () => { }); it("passes column key prop to corresponding cells", () => { - const columns: DataColumns = [ + const columns: DataColumns = [ { name: "Column 1", key: "column-1-key", @@ -88,7 +93,7 @@ describe("", () => { ]; const dataTable = mount(", () => { }); it("renders items", () => { - const columns: DataColumns = [ + const columns: DataColumns = [ { name: "Column 1", - render: (item) => {item}, + render: (item) => {item.name}, selected: true }, { name: "Column 2", - render: (item) => , + render: (item) => , selected: true } ]; - const dataTable = mount(", () => { }); it("passes sorting props to ", () => { - const columns: DataColumns = [{ + const columns: DataColumns = [{ name: "Column 1", - sortDirection: "asc", + sortDirection: SortDirection.Asc, selected: true, - render: (item) => {item} + render: (item) => {item.name} }]; const onSortToggle = jest.fn(); - const dataTable = mount(); + onSortToggle={onSortToggle} />); expect(dataTable.find(TableSortLabel).prop("active")).toBeTruthy(); dataTable.find(TableSortLabel).at(0).simulate("click"); expect(onSortToggle).toHaveBeenCalledWith(columns[0]); }); it("passes filter props to ", () => { - const columns: DataColumns = [{ + const columns: DataColumns = [{ name: "Column 1", - sortDirection: "asc", + sortDirection: SortDirection.Asc, selected: true, - filters: [{name: "Filter 1", selected: true}], - render: (item) => {item} + filters: [{ name: "Filter 1", selected: true }], + render: (item) => {item.name} }]; const onFiltersChange = jest.fn(); - const dataTable = mount(); + onSortToggle={jest.fn()} />); expect(dataTable.find(DataTableFilters).prop("filters")).toBe(columns[0].filters); dataTable.find(DataTableFilters).prop("onChange")([]); expect(onFiltersChange).toHaveBeenCalledWith([], columns[0]);