shlink-web-client/test/visits/charts/SortableBarChartCard.test.tsx

116 lines
3.9 KiB
TypeScript
Raw Normal View History

import { shallow, ShallowWrapper } from 'enzyme';
import { range } from 'ramda';
import { OrderingDropdown } from '../../../src/utils/OrderingDropdown';
import { PaginationDropdown } from '../../../src/utils/PaginationDropdown';
import { rangeOf } from '../../../src/utils/utils';
import { OrderDir } from '../../../src/utils/helpers/ordering';
import { Stats } from '../../../src/visits/types';
import { SortableBarChartCard } from '../../../src/visits/charts/SortableBarChartCard';
import { HorizontalBarChart } from '../../../src/visits/charts/HorizontalBarChart';
2019-01-13 01:47:41 +03:00
describe('<SortableBarChartCard />', () => {
let wrapper: ShallowWrapper;
2019-01-13 01:47:41 +03:00
const sortingItems = {
name: 'Name',
amount: 'Amount',
};
const stats = {
Foo: 100,
Bar: 50,
};
2019-03-10 19:55:02 +03:00
const createWrapper = (withPagination = false, extraStats = {}) => {
2019-01-13 01:47:41 +03:00
wrapper = shallow(
<SortableBarChartCard
2019-03-10 19:55:02 +03:00
title="Foo"
stats={{ ...stats, ...extraStats }}
sortingItems={sortingItems}
withPagination={withPagination}
2020-08-22 09:10:31 +03:00
/>,
2019-01-13 01:47:41 +03:00
);
return wrapper;
};
afterEach(() => wrapper?.unmount());
2019-01-13 01:47:41 +03:00
it('renders stats unchanged when no ordering is set', () => {
const wrapper = createWrapper();
const chart = wrapper.find(HorizontalBarChart);
2019-01-13 01:47:41 +03:00
expect(chart.prop('stats')).toEqual(stats);
2019-01-13 01:47:41 +03:00
});
describe('renders properly ordered stats when ordering is set', () => {
let assert: (sortName: string, sortDir: OrderDir, keys: string[], values: number[]) => void;
2019-01-13 01:47:41 +03:00
beforeEach(() => {
const wrapper = createWrapper();
const dropdown = wrapper.renderProp('title' as never)().find(OrderingDropdown);
2019-01-13 01:47:41 +03:00
assert = (sortName: string, sortDir: OrderDir, keys: string[], values: number[]) => {
2019-01-13 01:47:41 +03:00
dropdown.prop('onChange')(sortName, sortDir);
const stats = wrapper.find(HorizontalBarChart).prop('stats');
expect(Object.keys(stats)).toEqual(keys);
expect(Object.values(stats)).toEqual(values);
2019-01-13 01:47:41 +03:00
};
});
2022-03-26 14:17:42 +03:00
it('name - ASC', () => assert('name', 'ASC', ['Bar', 'Foo'], [50, 100]));
it('name - DESC', () => assert('name', 'DESC', ['Foo', 'Bar'], [100, 50]));
it('value - ASC', () => assert('value', 'ASC', ['Bar', 'Foo'], [50, 100]));
it('value - DESC', () => assert('value', 'DESC', ['Foo', 'Bar'], [100, 50]));
2019-01-13 01:47:41 +03:00
});
2019-03-10 19:55:02 +03:00
describe('renders properly paginated stats when pagination is set', () => {
let assert: (itemsPerPage: number, expectedStats: string[]) => void;
2019-03-10 19:55:02 +03:00
beforeEach(() => {
const wrapper = createWrapper(true, range(1, 159).reduce<Stats>((accum, value) => {
2019-03-10 19:55:02 +03:00
accum[`key_${value}`] = value;
return accum;
}, {}));
const dropdown = wrapper.renderProp('title' as never)().find(PaginationDropdown);
2019-03-10 19:55:02 +03:00
assert = (itemsPerPage: number, expectedStats: string[]) => {
2019-03-10 19:55:02 +03:00
dropdown.prop('setValue')(itemsPerPage);
const stats = wrapper.find(HorizontalBarChart).prop('stats');
expect(Object.keys(stats)).toEqual(expectedStats);
2019-03-10 19:55:02 +03:00
};
});
2022-03-26 14:17:42 +03:00
const buildExpected = (size: number): string[] => ['Foo', 'Bar', ...rangeOf(size - 2, (i) => `key_${i}`)];
2019-03-10 19:55:02 +03:00
it('50 items per page', () => assert(50, buildExpected(50)));
it('100 items per page', () => assert(100, buildExpected(100)));
it('200 items per page', () => assert(200, buildExpected(160)));
it('500 items per page', () => assert(500, buildExpected(160)));
2019-03-10 19:55:02 +03:00
});
it('renders extra header content', () => {
const wrapper = shallow(
2019-03-10 19:55:02 +03:00
<span>
<SortableBarChartCard
2019-03-10 19:55:02 +03:00
title="Foo"
stats={stats}
sortingItems={sortingItems}
extraHeaderContent={() => (
<span>
<span className="foo-span">Foo</span>
<span className="bar-span">Bar</span>
</span>
)}
/>
2020-08-22 09:10:31 +03:00
</span>,
).find(SortableBarChartCard);
2019-03-10 19:55:02 +03:00
const header = wrapper.renderProp('extraHeaderContent')();
2019-01-13 01:47:41 +03:00
2019-03-10 19:55:02 +03:00
expect(header.find('.foo-span')).toHaveLength(1);
expect(header.find('.bar-span')).toHaveLength(1);
2019-01-13 01:47:41 +03:00
});
});