Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
5.23 kB
import React from 'react';
import { render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { describe, it, expect, vi } from 'vitest';
import { CartesianGrid, Scatter, ScatterChart, Surface, Tooltip, XAxis, YAxis, ZAxis } from '../../src';
import { assertNotNull } from '../helper/assertNotNull';
import { useAppSelector } from '../../src/state/hooks';
import {
selectAxisDomain,
selectRealScaleType,
selectZAxisSettings,
selectZAxisWithScale,
} from '../../src/state/selectors/axisSelectors';
import { ZAxisSettings } from '../../src/state/cartesianAxisSlice';
import { useIsPanorama } from '../../src/context/PanoramaContext';
import { expectTooltipPayload } from '../component/Tooltip/tooltipTestHelpers';
describe('<ZAxis />', () => {
const data = [
{
name: 'Page A',
xAxis: 590,
zAxis: 800,
yAxis: 1000,
},
{
name: 'Page B',
xAxis: 490,
zAxis: 100,
yAxis: 1400,
},
];
it('should not render anything', () => {
render(
<Surface width={500} height={500}>
<ZAxis dataKey="x" name="stature" unit="cm" />
</Surface>,
);
const svg = document.querySelector('svg');
assertNotNull(svg);
expect(svg).toBeInTheDocument();
expect(svg.children).toHaveLength(2);
});
it('Renders Scatters symbols and tooltips with Z axis data', async () => {
const { container } = render(
<ScatterChart height={400} width={400}>
<XAxis dataKey="xAxis" type="number" />
<YAxis dataKey="yAxis" />
<ZAxis dataKey="zAxis" name="test name" range={[0, 2000]} unit="km" />
<CartesianGrid />
<Scatter data={data} name="pageData" />
<Tooltip />
</ScatterChart>,
);
const svg = document.querySelector('svg');
const gContainers = svg.querySelectorAll('.recharts-layer.recharts-scatter-symbol');
expect(gContainers).toHaveLength(data.length);
const firstShape = gContainers[0].querySelector('path');
const firstShapeName = firstShape.getAttribute('name');
expect(firstShapeName).toBe(data[0].name);
const secondShape = gContainers[1].querySelector('path');
const secondShapeName = secondShape.getAttribute('name');
expect(secondShapeName).toBe(data[1].name);
const firstShapeWidth = Number(firstShape.getAttribute('width'));
const secondShapeWidth = Number(secondShape.getAttribute('width'));
expect(firstShapeWidth).toBeGreaterThan(secondShapeWidth);
const tooltip = container.querySelector('.recharts-tooltip-wrapper');
expect(tooltip).not.toBeVisible();
await userEvent.hover(firstShape);
expectTooltipPayload(container, '', [
`test name : ${data[0].zAxis}km`,
`xAxis : ${data[0].xAxis}`,
`yAxis : ${data[0].yAxis}`,
]);
await userEvent.unhover(firstShape);
expect(tooltip).not.toBeVisible();
await userEvent.hover(secondShape);
expectTooltipPayload(container, '', [
`test name : ${data[1].zAxis}km`,
`xAxis : ${data[1].xAxis}`,
`yAxis : ${data[1].yAxis}`,
]);
});
describe('state integration', () => {
it('should publish its configuration to redux store', () => {
const axisSettingsSpy = vi.fn();
const axisDomainSpy = vi.fn();
const axisScaleSpy = vi.fn();
const Comp = (): null => {
const isPanorama = useIsPanorama();
axisSettingsSpy(useAppSelector(state => selectZAxisSettings(state, 'zaxis id')));
axisDomainSpy(useAppSelector(state => selectAxisDomain(state, 'zAxis', 'zaxis id', isPanorama)));
const axis = useAppSelector(state => selectZAxisWithScale(state, 'zAxis', 'zaxis id', false));
const realScaleType = useAppSelector(state => selectRealScaleType(state, 'zAxis', 'zaxis id'));
axisScaleSpy({
domain: axis?.scale?.domain(),
range: axis?.scale?.range(),
realScaleType,
});
return null;
};
render(
<ScatterChart height={400} width={400}>
<XAxis dataKey="xAxis" type="number" />
<YAxis dataKey="yAxis" />
<ZAxis zAxisId="zaxis id" dataKey="zAxis" name="test name" range={[20, 30]} unit="km" />
<CartesianGrid />
<Scatter data={data} name="pageData" zAxisId="zaxis id" />
<Tooltip />
<Comp />
</ScatterChart>,
);
const expected: ZAxisSettings = {
domain: undefined,
allowDataOverflow: false,
allowDuplicatedCategory: false,
includeHidden: false,
reversed: false,
scale: 'auto',
type: 'number',
id: 'zaxis id',
dataKey: 'zAxis',
name: 'test name',
unit: 'km',
range: [20, 30],
};
expect(axisSettingsSpy).toHaveBeenLastCalledWith(expected);
expect(axisSettingsSpy).toHaveBeenCalledTimes(3);
expect(axisDomainSpy).toHaveBeenLastCalledWith([0, 800]);
expect(axisDomainSpy).toHaveBeenCalledTimes(3);
expect(axisScaleSpy).toHaveBeenLastCalledWith({
domain: [0, 800],
range: [20, 30],
realScaleType: 'linear',
});
expect(axisScaleSpy).toHaveBeenCalledTimes(3);
});
});
});