Migrated HorizontalBarChart test to react testing library

This commit is contained in:
Alejandro Celaya
2022-05-13 20:18:40 +02:00
parent 4999f982e4
commit 64ee9a39cc
4 changed files with 50 additions and 41 deletions

View File

@@ -1,47 +1,24 @@
import { shallow, ShallowWrapper } from 'enzyme';
import { Doughnut } from 'react-chartjs-2';
import { keys, values } from 'ramda';
import { DoughnutChart } from '../../../src/visits/charts/DoughnutChart';
import { setUpCanvas } from '../../__mocks__/setUpCanvas';
import { screen } from '@testing-library/react';
describe('<DoughnutChart />', () => {
let wrapper: ShallowWrapper;
const stats = {
foo: 123,
bar: 456,
};
afterEach(() => wrapper?.unmount());
it('renders Doughnut with expected props', () => {
wrapper = shallow(<DoughnutChart stats={stats} />);
const doughnut = wrapper.find(Doughnut);
const cols = wrapper.find('.col-sm-12');
const { events } = setUpCanvas(<DoughnutChart stats={stats} />);
expect(doughnut).toHaveLength(1);
const { labels, datasets } = doughnut.prop('data') as any;
const [{ data, backgroundColor, borderColor }] = datasets;
const { plugins, scales } = (doughnut.prop('options') ?? {}) as any;
expect(labels).toEqual(keys(stats));
expect(data).toEqual(values(stats));
expect(datasets).toHaveLength(1);
expect(backgroundColor).toEqual([
'#97BBCD',
'#F7464A',
'#46BFBD',
'#FDB45C',
'#949FB1',
'#57A773',
'#414066',
'#08B2E3',
'#B6C454',
'#DCDCDC',
'#463730',
]);
expect(borderColor).toEqual('white');
expect(plugins.legend).toEqual({ display: false });
expect(scales).toBeUndefined();
expect(cols).toHaveLength(2);
expect(events).toBeTruthy();
expect(events).toMatchSnapshot();
});
it('renders expected legend', () => {
setUpCanvas(<DoughnutChart stats={stats} />);
expect(screen.getByText('foo')).toBeInTheDocument();
expect(screen.getByText('bar')).toBeInTheDocument();
})
});