File size: 15,398 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 |
import IconButton from '@mui/material/IconButton';
import DownloadIcon from '@mui/icons-material/CloudDownload';
import FilterIcon from '@mui/icons-material/FilterList';
import PrintIcon from '@mui/icons-material/Print';
import SearchIcon from '@mui/icons-material/Search';
import CloseIcon from '@mui/icons-material/Close';
import ViewColumnIcon from '@mui/icons-material/ViewColumn';
import { assert } from 'chai';
import { mount, shallow } from 'enzyme';
import React from 'react';
import { spy } from 'sinon';
import TableSearch from '../src/components/TableSearch';
import TableToolbar from '../src/components/TableToolbar';
import getTextLabels from '../src/textLabels';
describe('<TableToolbar />', function() {
let data;
let columns;
let options;
let setTableAction = () => {};
before(() => {
options = {
print: true,
download: true,
search: true,
filter: true,
viewColumns: true,
textLabels: getTextLabels(),
downloadOptions: {
separator: ',',
filename: 'tableDownload.csv',
filterOptions: {
useDisplayedRowsOnly: true,
useDisplayedColumnsOnly: true,
},
},
};
columns = ['First Name', 'Company', 'City', 'State'];
data = [
{
data: ['Joe James', 'Test Corp', 'Yonkers', 'NY'],
dataIndex: 0,
},
{
data: ['John Walsh', 'Test Corp', 'Hartford', 'CT'],
dataIndex: 1,
},
{
data: ['Bob Herm', 'Test Corp', 'Tampa', 'FL'],
dataIndex: 2,
},
{
data: ['James Houston', 'Test Corp', 'Dallas', 'TX'],
dataIndex: 3,
},
];
});
it('should render a toolbar', () => {
const mountWrapper = mount(
<TableToolbar columns={columns} data={data} options={options} setTableAction={setTableAction} />,
);
const actualResult = mountWrapper.find(IconButton);
assert.strictEqual(actualResult.length, 5);
});
it('should render a toolbar with custom title if title is not string', () => {
const title = <h1>custom title</h1>;
const mountWrapper = mount(
<TableToolbar title={title} columns={columns} data={data} options={options} setTableAction={setTableAction} />,
);
const actualResult = mountWrapper.find('h1');
assert.strictEqual(actualResult.length, 1);
});
it('should render a toolbar with search text initialized if option.searchText = some_text', () => {
const newOptions = { ...options, search: true, searchText: 'searchText' };
const mountWrapper = mount(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
);
const actualResult = mountWrapper.find(TableSearch);
assert.strictEqual(actualResult.length, 1);
assert.strictEqual(actualResult.props().options.searchText, 'searchText');
});
it('should render a toolbar with search if option.searchOpen = true', () => {
const newOptions = { ...options, searchOpen: true };
const mountWrapper = mount(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
);
const actualResult = mountWrapper.find(TableSearch);
assert.strictEqual(actualResult.length, 1);
assert.strictEqual(actualResult.props().options.searchText, undefined);
});
it('should render a toolbar with no search icon if option.search = false', () => {
const newOptions = { ...options, search: false };
const mountWrapper = mount(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
);
const actualResult = mountWrapper.find(SearchIcon);
assert.strictEqual(actualResult.length, 0);
});
it('should render a toolbar with search box and no search icon if option.searchAlwaysOpen = true', () => {
const newOptions = { ...options, searchAlwaysOpen: true };
const mountWrapper = mount(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
);
// check that textfield is rendered
const actualTextfieldResult = mountWrapper.find(TableSearch);
assert.strictEqual(actualTextfieldResult.length, 1);
assert.strictEqual(actualTextfieldResult.props().options.searchText, undefined);
// check that close icon is not rendered
const actualCloseIconResult = mountWrapper.find(CloseIcon());
assert.strictEqual(actualCloseIconResult.length, 0);
// check that search icon is rendered
const actualSearchIconResult = mountWrapper.find(SearchIcon);
assert.strictEqual(actualSearchIconResult.length, 0);
});
it('should render a toolbar with no download icon if option.download = false', () => {
const newOptions = { ...options, download: false };
const mountWrapper = mount(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
);
const actualResult = mountWrapper.find(DownloadIcon);
assert.strictEqual(actualResult.length, 0);
});
it('should render a toolbar with no print icon if option.print = false', () => {
const newOptions = { ...options, print: false };
const mountWrapper = mount(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
);
const actualResult = mountWrapper.find(PrintIcon);
assert.strictEqual(actualResult.length, 0);
});
it('should render a toolbar with no view columns icon if option.viewColumns = false', () => {
const newOptions = { ...options, viewColumns: false };
const mountWrapper = mount(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
);
const actualResult = mountWrapper.find(ViewColumnIcon);
assert.strictEqual(actualResult.length, 0);
});
it('should render a toolbar with no filter icon if option.filter = false', () => {
const newOptions = { ...options, filter: false };
const mountWrapper = mount(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
);
const actualResult = mountWrapper.find(FilterIcon);
assert.strictEqual(actualResult.length, 0);
});
it('should render a toolbar with custom search when option.customSearchRender is provided', () => {
const CustomSearchRender = () => <h1>customSearchRender</h1>;
const newOptions = { ...options, customSearchRender: CustomSearchRender };
const shallowWrapper = shallow(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
).dive();
const instance = shallowWrapper.instance();
instance.setActiveIcon('search');
shallowWrapper.update();
const actualResult = shallowWrapper.find('h1');
assert.strictEqual(actualResult.length, 1);
});
it('should render a toolbar with a search clicking search icon', () => {
const shallowWrapper = shallow(
<TableToolbar columns={columns} data={data} options={options} setTableAction={setTableAction} />,
).dive();
const instance = shallowWrapper.instance();
instance.setActiveIcon('search');
shallowWrapper.update();
const actualResult = shallowWrapper.find(TableSearch);
assert.strictEqual(actualResult.length, 1);
});
it('should hide search after clicking cancel icon', () => {
const searchTextUpdate = () => {};
const shallowWrapper = shallow(
<TableToolbar
searchClose={() => {}}
searchTextUpdate={searchTextUpdate}
columns={columns}
data={data}
options={options}
setTableAction={setTableAction}
/>,
).dive();
const instance = shallowWrapper.instance();
instance.searchButton = {
focus: () => {},
};
// display search
instance.setActiveIcon('search');
shallowWrapper.update();
let actualResult = shallowWrapper.find(TableSearch);
assert.strictEqual(actualResult.length, 1);
// now hide it and test
instance.hideSearch();
shallowWrapper.update();
actualResult = shallowWrapper.find(TableSearch);
assert.strictEqual(actualResult.length, 0);
});
it('should hide search when search icon is clicked while search is open without content', () => {
const searchTextUpdate = () => {};
const shallowWrapper = shallow(
<TableToolbar
searchClose={() => {}}
searchTextUpdate={searchTextUpdate}
columns={columns}
data={data}
options={options}
setTableAction={setTableAction}
/>,
).dive();
const instance = shallowWrapper.instance();
instance.searchButton = {
focus: () => {},
};
// click search button to display search
shallowWrapper.find('[data-testid="Search-iconButton"]').simulate('click');
shallowWrapper.update();
assert.strictEqual(shallowWrapper.state('iconActive'), 'search');
let actualResult = shallowWrapper.find(TableSearch);
assert.strictEqual(actualResult.length, 1);
// now click search button again and test
shallowWrapper.find('[data-testid="Search-iconButton"]').simulate('click');
shallowWrapper.update();
assert.strictEqual(shallowWrapper.state('iconActive'), null);
actualResult = shallowWrapper.find(TableSearch);
assert.strictEqual(actualResult.length, 0);
});
it('should not hide search when search icon is clicked while search is open with content', () => {
const searchTextUpdate = () => {};
const shallowWrapper = shallow(
<TableToolbar
searchClose={() => {}}
searchTextUpdate={searchTextUpdate}
columns={columns}
data={data}
options={options}
setTableAction={setTableAction}
/>,
).dive();
const instance = shallowWrapper.instance();
instance.searchButton = {
focus: () => {},
};
// click search button to display search
shallowWrapper.find('[data-testid="Search-iconButton"]').simulate('click');
shallowWrapper.update();
assert.strictEqual(shallowWrapper.state('iconActive'), 'search');
let actualResult = shallowWrapper.find(TableSearch);
assert.strictEqual(actualResult.length, 1);
// now set searchText and click search button again and test
shallowWrapper.setState({ searchText: 'fakeSearchText' });
shallowWrapper.find('[data-testid="Search-iconButton"]').simulate('click');
shallowWrapper.update();
assert.strictEqual(shallowWrapper.state('iconActive'), 'search');
actualResult = shallowWrapper.find(TableSearch);
assert.strictEqual(actualResult.length, 1);
});
it('should render a toolbar with a search when searchAlwaysOpen is set to true', () => {
const newOptions = { ...options, searchAlwaysOpen: true };
const shallowWrapper = shallow(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
).dive();
const actualResult = shallowWrapper.find(TableSearch);
assert.strictEqual(actualResult.length, 1);
});
it('should not hide search when opening another dialog when searchAlwaysOpen is set to true', () => {
const newOptions = { ...options, searchAlwaysOpen: true };
const shallowWrapper = shallow(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
).dive();
const instance = shallowWrapper.instance();
instance.setActiveIcon('filter');
shallowWrapper.find('[data-testid="Filter Table-iconButton"]').simulate('click');
shallowWrapper.update();
let actualResult = shallowWrapper.find(TableSearch);
assert.strictEqual(actualResult.length, 1);
});
it('should call onFilterDialogOpen when opening filters via toolbar', () => {
const onFilterDialogOpen = spy();
const newOptions = { ...options, onFilterDialogOpen };
const shallowWrapper = shallow(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
).dive();
const instance = shallowWrapper.instance();
instance.setActiveIcon('filter');
shallowWrapper.update();
assert.strictEqual(onFilterDialogOpen.callCount, 1);
});
it('should call onFilterDialogClose when closing filters dialog', () => {
const onFilterDialogClose = spy();
const newOptions = { ...options, onFilterDialogClose };
const shallowWrapper = shallow(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
).dive();
const instance = shallowWrapper.instance();
instance.setActiveIcon('filter');
shallowWrapper.update();
instance.setActiveIcon(undefined);
shallowWrapper.update();
assert.strictEqual(onFilterDialogClose.callCount, 1);
});
it('should set icon when calling method setActiveIcon', () => {
const shallowWrapper = shallow(
<TableToolbar columns={columns} data={data} options={options} setTableAction={setTableAction} />,
).dive();
const instance = shallowWrapper.instance();
instance.setActiveIcon('filter');
shallowWrapper.update();
const state = shallowWrapper.state();
assert.strictEqual(state.iconActive, 'filter');
});
it('should render search icon as active if option.searchOpen = true', () => {
const newOptions = { ...options, search: true, searchOpen: true };
const shallowWrapper = shallow(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
).dive();
const actualResult = shallowWrapper.find('[data-testid="Search-iconButton"]');
assert.strictEqual(actualResult.prop('classes').root.indexOf('MUIDataTableToolbar-iconActive-'), 0);
});
it('should render search icon as active if option.searchText = some_text', () => {
const newOptions = { ...options, search: true, searchText: 'searchText' };
const shallowWrapper = shallow(
<TableToolbar columns={columns} data={data} options={newOptions} setTableAction={setTableAction} />,
).dive();
const actualResult = shallowWrapper.find('[data-testid="Search-iconButton"]');
assert.strictEqual(actualResult.prop('classes').root.indexOf('MUIDataTableToolbar-iconActive-'), 0);
});
it('should download CSV when calling method handleCSVDownload', () => {
const shallowWrapper = shallow(
<TableToolbar
columns={columns}
displayData={data}
data={data}
options={options}
setTableAction={setTableAction}
/>,
);
const instance = shallowWrapper.dive().instance();
const appendSpy = spy(document.body, 'appendChild');
const removeSpy = spy(document.body, 'removeChild');
instance.handleCSVDownload();
assert.strictEqual(appendSpy.callCount, 1);
assert.strictEqual(removeSpy.callCount, 1);
});
it('should trigger onDownload prop callback when calling method handleCSVDownload', () => {
const onDownload = spy();
const newOptions = { ...options, onDownload };
const shallowWrapper = shallow(
<TableToolbar
columns={columns}
displayData={data}
data={data}
options={newOptions}
setTableAction={setTableAction}
/>,
);
const instance = shallowWrapper.dive().instance();
instance.handleCSVDownload();
assert.strictEqual(onDownload.callCount, 1);
});
});
|