shlink-web-client/test/visits/GraphCard.test.js

93 lines
3 KiB
JavaScript
Raw Normal View History

2018-09-08 10:06:18 +03:00
import React from 'react';
import { shallow } from 'enzyme';
import { Doughnut, HorizontalBar } from 'react-chartjs-2';
import { keys, values } from 'ramda';
import GraphCard from '../../src/visits/GraphCard';
2018-09-08 10:06:18 +03:00
describe('<GraphCard />', () => {
let wrapper;
const stats = {
foo: 123,
bar: 456,
};
afterEach(() => wrapper && wrapper.unmount());
2018-09-08 10:06:18 +03:00
it('renders Doughnut when is not a bar chart', () => {
wrapper = shallow(<GraphCard title="The chart" stats={stats} />);
2018-09-08 10:06:18 +03:00
const doughnut = wrapper.find(Doughnut);
const horizontal = wrapper.find(HorizontalBar);
expect(doughnut).toHaveLength(1);
expect(horizontal).toHaveLength(0);
const { labels, datasets } = doughnut.prop('data');
const [{ title, data, backgroundColor, borderColor }] = datasets;
2018-09-08 21:34:04 +03:00
const { legend, scales } = doughnut.prop('options');
2018-09-08 10:06:18 +03:00
expect(title).toEqual('The chart');
expect(labels).toEqual(keys(stats));
expect(data).toEqual(values(stats));
expect(datasets).toHaveLength(1);
2018-09-08 10:06:18 +03:00
expect(backgroundColor).toEqual([
'#97BBCD',
'#F7464A',
'#46BFBD',
'#FDB45C',
'#949FB1',
'#57A773',
'#414066',
'#08B2E3',
'#B6C454',
'#DCDCDC',
'#463730',
2018-09-08 10:06:18 +03:00
]);
expect(borderColor).toEqual('white');
2018-09-08 21:34:04 +03:00
expect(legend).toEqual({ position: 'right' });
expect(scales).toBeUndefined();
2018-09-08 10:06:18 +03:00
});
it('renders HorizontalBar when is not a bar chart', () => {
wrapper = shallow(<GraphCard isBarChart title="The chart" stats={stats} />);
2018-09-08 10:06:18 +03:00
const doughnut = wrapper.find(Doughnut);
const horizontal = wrapper.find(HorizontalBar);
expect(doughnut).toHaveLength(0);
expect(horizontal).toHaveLength(1);
const { datasets: [{ backgroundColor, borderColor }] } = horizontal.prop('data');
2018-09-08 21:34:04 +03:00
const { legend, scales } = horizontal.prop('options');
2018-09-08 10:06:18 +03:00
expect(backgroundColor).toEqual('rgba(70, 150, 229, 0.4)');
expect(borderColor).toEqual('rgba(70, 150, 229, 1)');
2018-09-08 21:34:04 +03:00
expect(legend).toEqual({ display: false });
expect(scales).toEqual({
xAxes: [
{
ticks: { beginAtZero: true, precision: 0 },
stacked: true,
2018-09-08 21:34:04 +03:00
},
],
yAxes: [{ stacked: true }],
2018-09-08 21:34:04 +03:00
});
2018-09-08 10:06:18 +03:00
});
it.each([
[{ foo: 23 }, [ 100, 456 ], [ 23, 0 ]],
[{ foo: 50 }, [ 73, 456 ], [ 50, 0 ]],
[{ bar: 45 }, [ 123, 411 ], [ 0, 45 ]],
[{ bar: 20, foo: 13 }, [ 110, 436 ], [ 13, 20 ]],
[ undefined, [ 123, 456 ], undefined ],
])('splits highlighted data from regular data', (highlightedStats, expectedData, expectedHighlightedData) => {
wrapper = shallow(<GraphCard isBarChart title="The chart" stats={stats} highlightedStats={highlightedStats} />);
const horizontal = wrapper.find(HorizontalBar);
const { datasets: [{ data, label }, highlightedData ] } = horizontal.prop('data');
expect(label).toEqual(highlightedStats ? 'Non-selected' : 'Visits');
expect(data).toEqual(expectedData);
expectedHighlightedData && expect(highlightedData.data).toEqual(expectedHighlightedData);
!expectedHighlightedData && expect(highlightedData).toBeUndefined();
});
2018-09-08 10:06:18 +03:00
});