| import React, { ComponentType, ReactNode } from 'react'; |
| import { beforeEach, describe, expect, it } from 'vitest'; |
| import { render } from '@testing-library/react'; |
| import { |
| Area, |
| AreaChart, |
| Bar, |
| BarChart, |
| CartesianGrid, |
| ComposedChart, |
| Funnel, |
| FunnelChart, |
| Legend, |
| Line, |
| LineChart, |
| Pie, |
| PieChart, |
| PolarAngleAxis, |
| Radar, |
| RadarChart, |
| RadialBar, |
| RadialBarChart, |
| Sankey, |
| Scatter, |
| ScatterChart, |
| SunburstChart, |
| Tooltip, |
| Treemap, |
| XAxis, |
| YAxis, |
| } from '../../../src'; |
| import { |
| expectTooltipNotVisible, |
| expectTooltipPayload, |
| MouseCoordinate, |
| showTooltip, |
| showTooltipOnCoordinate, |
| } from './tooltipTestHelpers'; |
| import { exampleSunburstData, exampleTreemapData, PageData, exampleSankeyData } from '../../_data'; |
| import { |
| areaChartMouseHoverTooltipSelector, |
| barChartMouseHoverTooltipSelector, |
| barMouseHoverTooltipSelector, |
| composedChartMouseHoverTooltipSelector, |
| funnelChartMouseHoverTooltipSelector, |
| lineChartMouseHoverTooltipSelector, |
| MouseHoverTooltipTriggerSelector, |
| pieChartMouseHoverTooltipSelector, |
| radarChartMouseHoverTooltipSelector, |
| radialBarChartMouseHoverTooltipSelector, |
| radialBarMouseHoverTooltipSelector, |
| sankeyLinkMouseHoverTooltipSelector, |
| sankeyNodeMouseHoverTooltipSelector, |
| sunburstChartMouseHoverTooltipSelector, |
| treemapNodeChartMouseHoverTooltipSelector, |
| } from './tooltipMouseHoverSelectors'; |
| import { createSelectorTestCase } from '../../helper/createSelectorTestCase'; |
| import { |
| selectActiveCoordinate, |
| selectActiveLabel, |
| selectIsTooltipActive, |
| selectTooltipPayload, |
| selectTooltipPayloadConfigurations, |
| } from '../../../src/state/selectors/selectors'; |
| import { selectChartDataWithIndexes } from '../../../src/state/selectors/dataSelectors'; |
| import { |
| selectAllGraphicalItemsSettings, |
| selectAllUnfilteredGraphicalItems, |
| selectTooltipAxisDomain, |
| selectTooltipAxisDomainIncludingNiceTicks, |
| selectTooltipAxisScale, |
| selectTooltipAxisTicks, |
| selectTooltipDisplayedData, |
| selectTooltipGraphicalItemsData, |
| } from '../../../src/state/selectors/tooltipSelectors'; |
| import { expectLastCalledWithScale } from '../../helper/expectScale'; |
| import { selectAxisDomain } from '../../../src/state/selectors/axisSelectors'; |
| import { mockGetBoundingClientRect } from '../../helper/mockGetBoundingClientRect'; |
| import { selectTooltipAxisId } from '../../../src/state/selectors/selectTooltipAxisId'; |
| import { selectTooltipAxisType } from '../../../src/state/selectors/selectTooltipAxisType'; |
| import { selectTooltipAxis } from '../../../src/state/selectors/selectTooltipAxis'; |
|
|
| type TooltipPayloadTestCase = { |
| |
| name: string; |
|
|
| |
| mouseHoverSelector: MouseHoverTooltipTriggerSelector; |
| mouseCoordinate?: MouseCoordinate; |
| Wrapper: ComponentType<{ children: ReactNode }>; |
|
|
| |
| expectedTooltipTitle: string; |
| expectedTooltipContent: ReadonlyArray<string>; |
| }; |
|
|
| const commonChartProps = { |
| width: 400, |
| height: 400, |
| }; |
|
|
| const AreaChartTestCase: TooltipPayloadTestCase = { |
| name: 'AreaChart', |
| Wrapper: ({ children }) => ( |
| <AreaChart {...commonChartProps} data={PageData}> |
| <Area dataKey="uv" unit="kg" /> |
| <Area dataKey="pv" unit="$$$" name="My custom name" /> |
| <Area dataKey="amt" /> |
| {children} |
| </AreaChart> |
| ), |
| mouseHoverSelector: areaChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: '2', |
| expectedTooltipContent: ['My custom name : 1398$$$', 'amt : 2400', 'uv : 300kg'], |
| }; |
|
|
| const AreaChartWithXAxisTestCase: TooltipPayloadTestCase = { |
| name: 'AreaChart with XAxis', |
| Wrapper: ({ children }) => ( |
| <AreaChart {...commonChartProps} data={PageData}> |
| <Area dataKey="uv" unit="kg" /> |
| <Area dataKey="pv" unit="$$$" name="My custom name" /> |
| <Area dataKey="amt" /> |
| {/* XAxis dataKey becomes the tooltip title */} |
| <XAxis dataKey="name" /> |
| {children} |
| </AreaChart> |
| ), |
| mouseHoverSelector: areaChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: 'Page C', |
| expectedTooltipContent: ['My custom name : 1398$$$', 'amt : 2400', 'uv : 300kg'], |
| }; |
|
|
| const BarChartTestCase: TooltipPayloadTestCase = { |
| name: 'BarChart', |
| Wrapper: ({ children }) => ( |
| <BarChart {...commonChartProps} data={PageData}> |
| <Bar dataKey="uv" unit="kg" /> |
| <Bar dataKey="pv" unit="$$$" name="My custom name" /> |
| <Bar dataKey="amt" unit="" /> |
| {children} |
| </BarChart> |
| ), |
| mouseHoverSelector: barChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: '2', |
| expectedTooltipContent: ['My custom name : 1398$$$', 'amt : 2400', 'uv : 300kg'], |
| }; |
|
|
| const LineChartTestCase: TooltipPayloadTestCase = { |
| name: 'LineChart', |
| Wrapper: ({ children }) => ( |
| <LineChart {...commonChartProps} data={PageData}> |
| <Line dataKey="uv" unit="kg" /> |
| <Line dataKey="pv" unit="$$$" name="My custom name" /> |
| <Line dataKey="amt" unit={null} /> |
| {children} |
| </LineChart> |
| ), |
| mouseHoverSelector: lineChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: '2', |
| expectedTooltipContent: ['My custom name : 1398$$$', 'amt : 2400', 'uv : 300kg'], |
| }; |
|
|
| const LineChartDataOnGraphicalItemTestCase: TooltipPayloadTestCase = { |
| name: 'LineChart with data on graphical item', |
| Wrapper: ({ children }) => ( |
| <LineChart {...commonChartProps}> |
| <Line dataKey="uv" unit="kg" data={PageData} /> |
| <Line dataKey="pv" unit="$$$" name="My custom name" data={PageData} /> |
| <Line dataKey="amt" unit={null} data={PageData} /> |
| {children} |
| </LineChart> |
| ), |
| mouseHoverSelector: lineChartMouseHoverTooltipSelector, |
| mouseCoordinate: { clientX: 20, clientY: 20 }, |
| expectedTooltipTitle: '1', |
| expectedTooltipContent: ['My custom name : 4567$$$', 'amt : 2400', 'uv : 300kg'], |
| }; |
|
|
| const LineChartVerticalTestCase: TooltipPayloadTestCase = { |
| name: 'vertical LineChart', |
| Wrapper: ({ children }) => ( |
| <LineChart layout="vertical" {...commonChartProps} data={PageData}> |
| <XAxis dataKey="name" /> |
| <YAxis dataKey="name" type="category" /> |
| <CartesianGrid strokeDasharray="3 3" /> |
| {children} |
| <Legend /> |
| <Line dataKey="uv" unit="kg" /> |
| <Line dataKey="pv" name="My custom name" unit="$$$" /> |
| <Line dataKey="amt" unit={undefined} /> |
| </LineChart> |
| ), |
| mouseHoverSelector: lineChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: 'Page E', |
| expectedTooltipContent: ['My custom name : 3908$$$', 'amt : 2400', 'uv : 278kg'], |
| }; |
|
|
| const ComposedChartTestCase: TooltipPayloadTestCase = { |
| name: 'ComposedChart', |
| Wrapper: ({ children }) => ( |
| <ComposedChart {...commonChartProps} data={PageData}> |
| {children} |
| <Area dataKey="uv" unit="kg" /> |
| <Bar dataKey="pv" name="My custom name" unit="$$$" /> |
| <Line dataKey="amt" unit={undefined} /> |
| </ComposedChart> |
| ), |
| mouseHoverSelector: composedChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: '2', |
| expectedTooltipContent: ['My custom name : 1398$$$', 'amt : 2400', 'uv : 300kg'], |
| }; |
|
|
| const PieChartTestCase: TooltipPayloadTestCase = { |
| name: 'PieChart', |
| Wrapper: ({ children }) => ( |
| <PieChart {...commonChartProps}> |
| {/* Pie does not have a unit it appears? Also, the `name` prop doesn't do anything */} |
| <Pie isAnimationActive={false} data={PageData} dataKey="uv" name="My custom name" /> |
| {/* PieChart tooltip always only renders one value, so these should stay out of the content */} |
| <Pie isAnimationActive={false} data={PageData} dataKey="pv" name="My custom name" /> |
| <Pie isAnimationActive={false} data={PageData} dataKey="amt" name="My custom name" /> |
| {children} |
| </PieChart> |
| ), |
| mouseHoverSelector: pieChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: '', |
| expectedTooltipContent: ['Page A : 400'], |
| }; |
|
|
| const FunnelChartTestCase: TooltipPayloadTestCase = { |
| name: 'FunnelChart', |
| Wrapper: ({ children }) => ( |
| <FunnelChart width={700} height={500}> |
| <Funnel isAnimationActive={false} dataKey="uv" data={PageData} /> |
| {children} |
| </FunnelChart> |
| ), |
| mouseHoverSelector: funnelChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: '', |
| expectedTooltipContent: ['Page A : 400'], |
| }; |
|
|
| const FunnelChartWithNameTestCase: TooltipPayloadTestCase = { |
| name: 'FunnelChart with name', |
| Wrapper: ({ children }) => ( |
| <FunnelChart width={700} height={500}> |
| <Funnel |
| isAnimationActive={false} |
| dataKey="uv" |
| nameKey="does not exist in the data" |
| name="This is now going to the tooltip title and it will override the 'name' property in data" |
| data={PageData} |
| /> |
| {children} |
| </FunnelChart> |
| ), |
| mouseHoverSelector: funnelChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: '', |
| expectedTooltipContent: [ |
| "This is now going to the tooltip title and it will override the 'name' property in data : 400", |
| ], |
| }; |
|
|
| const FunnelChartTestCaseWithNameKey: TooltipPayloadTestCase = { |
| name: 'FunnelChart with nameKey', |
| Wrapper: ({ children }) => ( |
| <FunnelChart width={700} height={500}> |
| <Funnel |
| isAnimationActive={false} |
| dataKey="uv" |
| nameKey="pv" |
| name="This is now ignored because the nameKey pulls the name out of the data" |
| data={PageData} |
| /> |
| {children} |
| </FunnelChart> |
| ), |
| mouseHoverSelector: funnelChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: '', |
| expectedTooltipContent: ['2400 : 400'], |
| }; |
|
|
| const PieChartWithCustomNameKeyTestCase: TooltipPayloadTestCase = { |
| name: 'PieChart with custom nameKey', |
| Wrapper: ({ children }) => ( |
| <PieChart {...commonChartProps}> |
| <Pie isAnimationActive={false} data={PageData} dataKey="uv" nameKey="pv" /> |
| <Pie isAnimationActive={false} data={PageData} dataKey="pv" name="My custom name" /> |
| <Pie isAnimationActive={false} data={PageData} dataKey="amt" name="My custom name" /> |
| {children} |
| </PieChart> |
| ), |
| mouseHoverSelector: pieChartMouseHoverTooltipSelector, |
| |
| expectedTooltipTitle: '', |
| expectedTooltipContent: ['2400 : 400'], |
| }; |
|
|
| const RadarChartTestCase: TooltipPayloadTestCase = { |
| name: 'RadarChart', |
| Wrapper: ({ children }) => ( |
| <RadarChart height={600} width={600} data={PageData}> |
| <Radar dataKey="uv" /> |
| <Radar dataKey="pv" name="My custom name" /> |
| <Radar dataKey="amt" /> |
| {children} |
| </RadarChart> |
| ), |
| mouseHoverSelector: radarChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: '5', |
| expectedTooltipContent: ['My custom name : 4800', 'amt : 2400', 'uv : 189'], |
| }; |
|
|
| const RadarChartWithAxisTestCase: TooltipPayloadTestCase = { |
| name: 'RadarChart with PolarAngleAxis', |
| Wrapper: ({ children }) => ( |
| <RadarChart height={600} width={600} data={PageData}> |
| <Radar dataKey="uv" /> |
| <Radar dataKey="pv" name="My custom name" /> |
| <Radar dataKey="amt" /> |
| <PolarAngleAxis dataKey="name" /> |
| {children} |
| </RadarChart> |
| ), |
| mouseHoverSelector: radarChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: 'Page F', |
| expectedTooltipContent: ['My custom name : 4800', 'amt : 2400', 'uv : 189'], |
| }; |
|
|
| const RadialBarChartTestCase: TooltipPayloadTestCase = { |
| name: 'RadialBarChart', |
| Wrapper: ({ children }) => ( |
| <RadialBarChart height={600} width={600} data={PageData}> |
| <RadialBar dataKey="uv" /> |
| <RadialBar dataKey="pv" name="My custom name" /> |
| <RadialBar dataKey="amt" /> |
| {children} |
| </RadialBarChart> |
| ), |
| mouseHoverSelector: radialBarChartMouseHoverTooltipSelector, |
| |
| expectedTooltipTitle: '3', |
| expectedTooltipContent: ['My custom name : 9800', 'amt : 2400', 'uv : 200'], |
| }; |
|
|
| const SankeyNodeHoverTestCase: TooltipPayloadTestCase = { |
| name: 'Sankey Node hover', |
| Wrapper: ({ children }) => ( |
| <Sankey height={600} width={600} data={exampleSankeyData}> |
| {children} |
| </Sankey> |
| ), |
| mouseHoverSelector: sankeyNodeMouseHoverTooltipSelector, |
| expectedTooltipTitle: '', |
| expectedTooltipContent: ['Agricultural waste : 124.729'], |
| }; |
|
|
| const SankeyLinkHoverTestCase: TooltipPayloadTestCase = { |
| name: 'Sankey Link hover', |
| Wrapper: ({ children }) => ( |
| <Sankey height={600} width={600} data={exampleSankeyData}> |
| {children} |
| </Sankey> |
| ), |
| mouseHoverSelector: sankeyLinkMouseHoverTooltipSelector, |
| expectedTooltipTitle: '', |
| expectedTooltipContent: ['Agricultural waste - Bio-conversion : 124.729'], |
| }; |
|
|
| const ScatterChartTestCase: TooltipPayloadTestCase = { |
| name: 'ScatterChart', |
| Wrapper: ({ children }) => ( |
| <ScatterChart width={400} height={400} margin={{ top: 20, right: 20, bottom: 20, left: 20 }}> |
| <XAxis dataKey="uv" name="stature" unit="cm" /> |
| <YAxis dataKey="pv" name="weight" unit="kg" /> |
| <Scatter line name="A school" data={PageData} fill="#ff7300" /> |
| {children} |
| </ScatterChart> |
| ), |
| mouseHoverSelector: '.recharts-scatter-symbol', |
| expectedTooltipTitle: '', |
| expectedTooltipContent: ['stature : 400cm', 'weight : 2400kg'], |
| }; |
|
|
| const SunburstChartTestCase: TooltipPayloadTestCase = { |
| name: 'SunburstChart', |
| Wrapper: ({ children }) => ( |
| <SunburstChart width={400} height={400} data={exampleSunburstData}> |
| {children} |
| </SunburstChart> |
| ), |
| mouseHoverSelector: sunburstChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: '', |
| expectedTooltipContent: ['Child1 : 30'], |
| }; |
|
|
| const TreemapTestCase: TooltipPayloadTestCase = { |
| name: 'Treemap', |
| Wrapper: ({ children }) => ( |
| <Treemap |
| width={400} |
| height={400} |
| data={exampleTreemapData} |
| dataKey="value" |
| nameKey="name" |
| stroke="#fff" |
| fill="#8884d8" |
| > |
| {children} |
| </Treemap> |
| ), |
| mouseHoverSelector: treemapNodeChartMouseHoverTooltipSelector, |
| expectedTooltipTitle: '', |
| expectedTooltipContent: ['U : 12490887132'], |
| }; |
|
|
| const testCases: ReadonlyArray<TooltipPayloadTestCase> = [ |
| AreaChartTestCase, |
| AreaChartWithXAxisTestCase, |
| BarChartTestCase, |
| LineChartTestCase, |
| LineChartDataOnGraphicalItemTestCase, |
| LineChartVerticalTestCase, |
| ComposedChartTestCase, |
| FunnelChartTestCase, |
| FunnelChartWithNameTestCase, |
| FunnelChartTestCaseWithNameKey, |
| PieChartTestCase, |
| PieChartWithCustomNameKeyTestCase, |
| RadarChartTestCase, |
| RadarChartWithAxisTestCase, |
| RadialBarChartTestCase, |
| SankeyNodeHoverTestCase, |
| SankeyLinkHoverTestCase, |
| ScatterChartTestCase, |
| SunburstChartTestCase, |
| TreemapTestCase, |
| ]; |
|
|
| describe('Tooltip payload', () => { |
| beforeEach(() => { |
| mockGetBoundingClientRect({ width: 100, height: 100 }); |
| }); |
|
|
| describe.each(testCases)( |
| 'as a child of $name', |
| ({ Wrapper, mouseHoverSelector, expectedTooltipTitle, expectedTooltipContent, mouseCoordinate }) => { |
| it('should render expected tooltip payload', () => { |
| const { container, debug } = render( |
| <Wrapper> |
| <Tooltip /> |
| </Wrapper>, |
| ); |
|
|
| expect(container.querySelector('.recharts-tooltip-item-name')).toBeNull(); |
| expect(container.querySelector('.recharts-tooltip-item-value')).toBeNull(); |
|
|
| showTooltipOnCoordinate(container, mouseHoverSelector, mouseCoordinate, debug); |
|
|
| expectTooltipPayload(container, expectedTooltipTitle, expectedTooltipContent); |
| }); |
| }, |
| ); |
|
|
| describe('LineChartDataOnGraphicalItemTestCase', () => { |
| const renderTestCase = createSelectorTestCase(({ children }) => ( |
| <LineChartDataOnGraphicalItemTestCase.Wrapper> |
| <Tooltip /> |
| {children} |
| </LineChartDataOnGraphicalItemTestCase.Wrapper> |
| )); |
|
|
| it('should select xaxis domain', () => { |
| const { spy } = renderTestCase(state => selectAxisDomain(state, 'xAxis', 0, false)); |
| expect(spy).toHaveBeenLastCalledWith([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]); |
| }); |
|
|
| it('should select tooltip axis type', () => { |
| const { spy } = renderTestCase(selectTooltipAxisType); |
| expect(spy).toHaveBeenLastCalledWith('xAxis'); |
| }); |
|
|
| it('should select tooltip axis ID', () => { |
| const { spy } = renderTestCase(selectTooltipAxisId); |
| expect(spy).toHaveBeenLastCalledWith(0); |
| }); |
|
|
| it('should select unfiltered graphical items', () => { |
| const { spy } = renderTestCase(selectAllUnfilteredGraphicalItems); |
| expect(spy).toHaveBeenLastCalledWith([ |
| { |
| id: expect.stringMatching('line-'), |
| barSize: undefined, |
| data: [ |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| ], |
| dataKey: 'uv', |
| hide: false, |
| isPanorama: false, |
| stackId: undefined, |
| type: 'line', |
| xAxisId: 0, |
| yAxisId: 0, |
| zAxisId: 0, |
| }, |
| { |
| id: expect.stringMatching('line-'), |
| barSize: undefined, |
| data: [ |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| ], |
| dataKey: 'pv', |
| hide: false, |
| isPanorama: false, |
| stackId: undefined, |
| type: 'line', |
| xAxisId: 0, |
| yAxisId: 0, |
| zAxisId: 0, |
| }, |
| { |
| id: expect.stringMatching('line-'), |
| barSize: undefined, |
| data: [ |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| ], |
| dataKey: 'amt', |
| hide: false, |
| isPanorama: false, |
| stackId: undefined, |
| type: 'line', |
| xAxisId: 0, |
| yAxisId: 0, |
| zAxisId: 0, |
| }, |
| ]); |
| }); |
|
|
| it('should select all graphical items', () => { |
| const { spy } = renderTestCase(selectAllGraphicalItemsSettings); |
| expect(spy).toHaveBeenLastCalledWith([ |
| { |
| id: expect.stringMatching('line-'), |
| barSize: undefined, |
| data: [ |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| ], |
| dataKey: 'uv', |
| hide: false, |
| isPanorama: false, |
| stackId: undefined, |
| type: 'line', |
| xAxisId: 0, |
| yAxisId: 0, |
| zAxisId: 0, |
| }, |
| { |
| id: expect.stringMatching('line-'), |
| barSize: undefined, |
| data: [ |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| ], |
| dataKey: 'pv', |
| hide: false, |
| isPanorama: false, |
| stackId: undefined, |
| type: 'line', |
| xAxisId: 0, |
| yAxisId: 0, |
| zAxisId: 0, |
| }, |
| { |
| id: expect.stringMatching('line-'), |
| barSize: undefined, |
| data: [ |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| ], |
| dataKey: 'amt', |
| hide: false, |
| isPanorama: false, |
| stackId: undefined, |
| type: 'line', |
| xAxisId: 0, |
| yAxisId: 0, |
| zAxisId: 0, |
| }, |
| ]); |
| }); |
|
|
| it('should select tooltip data defined on graphical items', () => { |
| const { spy } = renderTestCase(selectTooltipGraphicalItemsData); |
| expect(spy).toHaveBeenLastCalledWith([ |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| ]); |
| }); |
|
|
| it('should select tooltip displayed data', () => { |
| const { spy } = renderTestCase(selectTooltipDisplayedData); |
| expect(spy).toHaveBeenLastCalledWith([ |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| ]); |
| }); |
|
|
| it('should select tooltip axis domain', () => { |
| const { spy } = renderTestCase(selectTooltipAxisDomain); |
| expect(spy).toHaveBeenLastCalledWith([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]); |
| }); |
|
|
| it('should select tooltip axis domain with nice ticks', () => { |
| const { spy } = renderTestCase(selectTooltipAxisDomainIncludingNiceTicks); |
| expect(spy).toHaveBeenLastCalledWith([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]); |
| }); |
|
|
| it('should select tooltip axis scale', () => { |
| const { spy } = renderTestCase(selectTooltipAxisScale); |
| expectLastCalledWithScale(spy, { |
| domain: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], |
| range: [5, 395], |
| }); |
| }); |
|
|
| it('should select tooltip ticks', () => { |
| const { spy } = renderTestCase(selectTooltipAxisTicks); |
| expect(spy).toHaveBeenLastCalledWith([ |
| { |
| coordinate: 5, |
| index: 0, |
| offset: 0, |
| value: 0, |
| }, |
| { |
| coordinate: 27.941176470588236, |
| index: 1, |
| offset: 0, |
| value: 1, |
| }, |
| { |
| coordinate: 50.88235294117647, |
| index: 2, |
| offset: 0, |
| value: 2, |
| }, |
| { |
| coordinate: 73.82352941176471, |
| index: 3, |
| offset: 0, |
| value: 3, |
| }, |
| { |
| coordinate: 96.76470588235294, |
| index: 4, |
| offset: 0, |
| value: 4, |
| }, |
| { |
| coordinate: 119.70588235294117, |
| index: 5, |
| offset: 0, |
| value: 5, |
| }, |
| { |
| coordinate: 142.64705882352942, |
| index: 6, |
| offset: 0, |
| value: 6, |
| }, |
| { |
| coordinate: 165.58823529411765, |
| index: 7, |
| offset: 0, |
| value: 7, |
| }, |
| { |
| coordinate: 188.52941176470588, |
| index: 8, |
| offset: 0, |
| value: 8, |
| }, |
| { |
| coordinate: 211.47058823529412, |
| index: 9, |
| offset: 0, |
| value: 9, |
| }, |
| { |
| coordinate: 234.41176470588235, |
| index: 10, |
| offset: 0, |
| value: 10, |
| }, |
| { |
| coordinate: 257.3529411764706, |
| index: 11, |
| offset: 0, |
| value: 11, |
| }, |
| { |
| coordinate: 280.29411764705884, |
| index: 12, |
| offset: 0, |
| value: 12, |
| }, |
| { |
| coordinate: 303.2352941176471, |
| index: 13, |
| offset: 0, |
| value: 13, |
| }, |
| { |
| coordinate: 326.1764705882353, |
| index: 14, |
| offset: 0, |
| value: 14, |
| }, |
| { |
| coordinate: 349.11764705882354, |
| index: 15, |
| offset: 0, |
| value: 15, |
| }, |
| { |
| coordinate: 372.05882352941177, |
| index: 16, |
| offset: 0, |
| value: 16, |
| }, |
| { |
| coordinate: 395, |
| index: 17, |
| offset: 0, |
| value: 17, |
| }, |
| ]); |
| }); |
|
|
| it('should select Tooltip payload when given defaultIndex', () => { |
| const { spy } = renderTestCase(state => selectTooltipPayload(state, 'axis', 'hover', '0')); |
| expect(spy).toHaveBeenLastCalledWith([ |
| { |
| color: '#3182bd', |
| dataKey: 'uv', |
| fill: '#fff', |
| hide: false, |
| name: 'uv', |
| nameKey: undefined, |
| payload: { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| stroke: '#3182bd', |
| strokeWidth: 1, |
| type: undefined, |
| unit: 'kg', |
| value: 400, |
| }, |
| { |
| color: '#3182bd', |
| dataKey: 'pv', |
| fill: '#fff', |
| hide: false, |
| name: 'My custom name', |
| nameKey: undefined, |
| payload: { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| stroke: '#3182bd', |
| strokeWidth: 1, |
| type: undefined, |
| unit: '$$$', |
| value: 2400, |
| }, |
| { |
| color: '#3182bd', |
| dataKey: 'amt', |
| fill: '#fff', |
| hide: false, |
| name: 'amt', |
| nameKey: undefined, |
| payload: { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| stroke: '#3182bd', |
| strokeWidth: 1, |
| type: undefined, |
| unit: null, |
| value: 2400, |
| }, |
| ]); |
| }); |
|
|
| it('should select dataStartIndex and dataEndIndex', () => { |
| const { spy } = renderTestCase(selectChartDataWithIndexes); |
| expect(spy).toHaveBeenLastCalledWith({ |
| chartData: undefined, |
| dataEndIndex: 0, |
| dataStartIndex: 0, |
| }); |
| }); |
|
|
| it('should select tooltip payload settings for every graphical item', () => { |
| const { spy } = renderTestCase(state => selectTooltipPayloadConfigurations(state, 'axis', 'hover', undefined)); |
| expect(spy).toHaveBeenLastCalledWith([ |
| { |
| dataDefinedOnItem: [ |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| ], |
| settings: { |
| color: '#3182bd', |
| dataKey: 'uv', |
| fill: '#fff', |
| hide: false, |
| name: 'uv', |
| nameKey: undefined, |
| stroke: '#3182bd', |
| strokeWidth: 1, |
| type: undefined, |
| unit: 'kg', |
| }, |
| }, |
| { |
| dataDefinedOnItem: [ |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| ], |
| settings: { |
| color: '#3182bd', |
| dataKey: 'pv', |
| fill: '#fff', |
| hide: false, |
| name: 'My custom name', |
| nameKey: undefined, |
| stroke: '#3182bd', |
| strokeWidth: 1, |
| type: undefined, |
| unit: '$$$', |
| }, |
| }, |
| { |
| dataDefinedOnItem: [ |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| ], |
| settings: { |
| color: '#3182bd', |
| dataKey: 'amt', |
| fill: '#fff', |
| hide: false, |
| name: 'amt', |
| nameKey: undefined, |
| stroke: '#3182bd', |
| strokeWidth: 1, |
| type: undefined, |
| unit: null, |
| }, |
| }, |
| ]); |
| expect(spy).toHaveBeenCalledTimes(2); |
| }); |
|
|
| it('should select Tooltip payload after mouse hover', () => { |
| const { container, spy } = renderTestCase(state => selectTooltipPayload(state, 'axis', 'hover', undefined)); |
| expect(spy).toHaveBeenLastCalledWith(undefined); |
| expect(spy).toHaveBeenCalledTimes(1); |
|
|
| showTooltipOnCoordinate( |
| container, |
| LineChartDataOnGraphicalItemTestCase.mouseHoverSelector, |
| LineChartDataOnGraphicalItemTestCase.mouseCoordinate, |
| ); |
|
|
| expect(spy).toHaveBeenLastCalledWith([ |
| { |
| color: '#3182bd', |
| dataKey: 'uv', |
| fill: '#fff', |
| hide: false, |
| name: 'uv', |
| nameKey: undefined, |
| payload: { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| stroke: '#3182bd', |
| strokeWidth: 1, |
| type: undefined, |
| unit: 'kg', |
| value: 300, |
| }, |
| { |
| color: '#3182bd', |
| dataKey: 'pv', |
| fill: '#fff', |
| hide: false, |
| name: 'My custom name', |
| nameKey: undefined, |
| payload: { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| stroke: '#3182bd', |
| strokeWidth: 1, |
| type: undefined, |
| unit: '$$$', |
| value: 4567, |
| }, |
| { |
| color: '#3182bd', |
| dataKey: 'amt', |
| fill: '#fff', |
| hide: false, |
| name: 'amt', |
| nameKey: undefined, |
| payload: { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| stroke: '#3182bd', |
| strokeWidth: 1, |
| type: undefined, |
| unit: null, |
| value: 2400, |
| }, |
| ]); |
| expect(spy).toHaveBeenCalledTimes(2); |
| }); |
|
|
| it('should show tooltip after mouse hover', () => { |
| const { container } = renderTestCase(); |
|
|
| expectTooltipNotVisible(container); |
|
|
| showTooltipOnCoordinate( |
| container, |
| LineChartDataOnGraphicalItemTestCase.mouseHoverSelector, |
| LineChartDataOnGraphicalItemTestCase.mouseCoordinate, |
| ); |
|
|
| expectTooltipPayload( |
| container, |
| LineChartDataOnGraphicalItemTestCase.expectedTooltipTitle, |
| LineChartDataOnGraphicalItemTestCase.expectedTooltipContent, |
| ); |
| }); |
|
|
| it('should select active label', () => { |
| const { spy } = renderTestCase(state => selectActiveLabel(state, 'axis', 'hover', '2')); |
| expect(spy).toHaveBeenLastCalledWith(2); |
| }); |
|
|
| it('should select isActive and activeIndex, and update it after mouse hover', () => { |
| const { container, spy } = renderTestCase(state => selectIsTooltipActive(state, 'axis', 'hover', undefined)); |
| expect(spy).toHaveBeenLastCalledWith({ |
| activeIndex: null, |
| isActive: false, |
| }); |
| expect(spy).toHaveBeenCalledTimes(2); |
|
|
| showTooltipOnCoordinate( |
| container, |
| LineChartDataOnGraphicalItemTestCase.mouseHoverSelector, |
| LineChartDataOnGraphicalItemTestCase.mouseCoordinate, |
| ); |
|
|
| expect(spy).toHaveBeenLastCalledWith({ |
| activeIndex: '1', |
| isActive: true, |
| }); |
| expect(spy).toHaveBeenCalledTimes(3); |
| }); |
|
|
| it('should select active coordinate', () => { |
| const { container, spy } = renderTestCase(state => selectActiveCoordinate(state, 'axis', 'hover', undefined)); |
| expect(spy).toHaveBeenLastCalledWith(undefined); |
| expect(spy).toHaveBeenCalledTimes(1); |
|
|
| showTooltipOnCoordinate( |
| container, |
| LineChartDataOnGraphicalItemTestCase.mouseHoverSelector, |
| LineChartDataOnGraphicalItemTestCase.mouseCoordinate, |
| ); |
|
|
| expect(spy).toHaveBeenLastCalledWith({ |
| x: 27.941176470588236, |
| y: 20, |
| }); |
| expect(spy).toHaveBeenCalledTimes(2); |
| }); |
| }); |
|
|
| describe(`As a child of vertical LineChart`, () => { |
| const renderTestCase = createSelectorTestCase(({ children }) => ( |
| <LineChartVerticalTestCase.Wrapper> |
| <Tooltip /> |
| {children} |
| </LineChartVerticalTestCase.Wrapper> |
| )); |
|
|
| it('should select tooltip axis type', () => { |
| const { spy } = renderTestCase(selectTooltipAxisType); |
| expect(spy).toHaveBeenLastCalledWith('yAxis'); |
| }); |
|
|
| it('should select tooltip axis ID', () => { |
| const { spy } = renderTestCase(selectTooltipAxisId); |
| expect(spy).toHaveBeenLastCalledWith(0); |
| }); |
|
|
| it('should select dataStartIndex and dataEndIndex', () => { |
| const { spy } = renderTestCase(selectChartDataWithIndexes); |
| expect(spy).toHaveBeenLastCalledWith({ |
| chartData: [ |
| { |
| amt: 2400, |
| name: 'Page A', |
| pv: 2400, |
| uv: 400, |
| }, |
| { |
| amt: 2400, |
| name: 'Page B', |
| pv: 4567, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page C', |
| pv: 1398, |
| uv: 300, |
| }, |
| { |
| amt: 2400, |
| name: 'Page D', |
| pv: 9800, |
| uv: 200, |
| }, |
| { |
| amt: 2400, |
| name: 'Page E', |
| pv: 3908, |
| uv: 278, |
| }, |
| { |
| amt: 2400, |
| name: 'Page F', |
| pv: 4800, |
| uv: 189, |
| }, |
| ], |
| computedData: undefined, |
| dataEndIndex: 5, |
| dataStartIndex: 0, |
| }); |
| }); |
|
|
| it('should select active label', () => { |
| const { spy } = renderTestCase(state => selectActiveLabel(state, 'axis', 'hover', '2')); |
| expect(spy).toHaveBeenLastCalledWith('Page C'); |
| }); |
|
|
| it('should select active coordinate', () => { |
| const { container, spy } = renderTestCase(state => selectActiveCoordinate(state, 'axis', 'hover', undefined)); |
| expect(spy).toHaveBeenLastCalledWith(undefined); |
| expect(spy).toHaveBeenCalledTimes(1); |
|
|
| showTooltipOnCoordinate( |
| container, |
| LineChartVerticalTestCase.mouseHoverSelector, |
| LineChartVerticalTestCase.mouseCoordinate, |
| ); |
|
|
| expect(spy).toHaveBeenLastCalledWith({ |
| x: 200, |
| y: 213, |
| }); |
| expect(spy).toHaveBeenCalledTimes(2); |
| }); |
|
|
| it('should select isActive and activeIndex, and update it after mouse hover', () => { |
| const { container, spy } = renderTestCase(state => selectIsTooltipActive(state, 'axis', 'hover', undefined)); |
| expect(spy).toHaveBeenLastCalledWith({ |
| activeIndex: null, |
| isActive: false, |
| }); |
| expect(spy).toHaveBeenCalledTimes(3); |
|
|
| showTooltipOnCoordinate( |
| container, |
| LineChartVerticalTestCase.mouseHoverSelector, |
| LineChartVerticalTestCase.mouseCoordinate, |
| ); |
|
|
| expect(spy).toHaveBeenLastCalledWith({ |
| activeIndex: '4', |
| isActive: true, |
| }); |
| expect(spy).toHaveBeenCalledTimes(4); |
| }); |
| }); |
|
|
| |
| |
| |
| |
| describe.skip('filterNull prop', () => { |
| const dataWithNulls: Array<{ x: number | null; y: number | null }> = [{ x: null, y: 2 }]; |
| test.each([undefined, true])('should filter away nulls when filterNull = %s', filterNull => { |
| const { container, debug } = render( |
| <ScatterChart width={400} height={400} margin={{ top: 20, right: 20, bottom: 20, left: 20 }}> |
| <XAxis dataKey="x" /> |
| <YAxis dataKey="y" /> |
| <Scatter name="A school" data={dataWithNulls} fill="#ff7300" /> |
| <Tooltip filterNull={filterNull} /> |
| </ScatterChart>, |
| ); |
|
|
| showTooltip(container, ScatterChartTestCase.mouseHoverSelector, debug); |
|
|
| expectTooltipPayload(container, '', ['y : 2']); |
| }); |
|
|
| it('should display nulls when filterNull = false', () => { |
| const { container, debug } = render( |
| <ScatterChart width={400} height={400} margin={{ top: 20, right: 20, bottom: 20, left: 20 }}> |
| <XAxis dataKey="x" /> |
| <YAxis dataKey="y" /> |
| <Scatter name="A school" data={dataWithNulls} fill="#ff7300" /> |
| <Tooltip filterNull={false} /> |
| </ScatterChart>, |
| ); |
|
|
| showTooltip(container, ScatterChartTestCase.mouseHoverSelector, debug); |
|
|
| expectTooltipPayload(container, '', ['x : ', 'y : 2']); |
| }); |
| }); |
|
|
| |
| |
| |
| |
| describe.todo('payloadUniqBy prop'); |
|
|
| it('should contain payload data from multiple datasets', () => { |
| const lineData1 = [ |
| { category: 'A', value: 0.2 }, |
| { category: 'B', value: 0.3 }, |
| { category: 'C', value: 0.5 }, |
| { category: 'D', value: 0.6 }, |
| { category: 'E', value: 0.7 }, |
| { category: 'F', value: 0.4 }, |
| ]; |
|
|
| const lineData2 = [ |
| { category: 'A', value: null }, |
| { category: 'B', value: null }, |
| { category: 'C', value: null }, |
| { category: 'D', value: 0.2 }, |
| { category: 'E', value: 0.4 }, |
| { category: 'F', value: 0.6 }, |
| ]; |
|
|
| const { container, debug } = render( |
| <div role="main" style={{ width: '400px', height: '400px' }}> |
| <ComposedChart width={400} height={400}> |
| <XAxis dataKey="category" type="category" /> |
| <YAxis dataKey="value" /> |
| <Tooltip /> |
| |
| <Line dataKey="value" data={lineData1} /> |
| <Line dataKey="value" data={lineData2} /> |
| </ComposedChart> |
| </div>, |
| ); |
|
|
| showTooltip(container, ComposedChartTestCase.mouseHoverSelector, debug); |
|
|
| expectTooltipPayload(container, 'E', ['value : 0.7', 'value : 0.4']); |
| }); |
|
|
| describe('shared prop', () => { |
| describe('in BarChart', () => { |
| it('when true, should render tooltip payload with data from all Bars', () => { |
| const { container, debug } = render( |
| <BarChart {...commonChartProps} data={PageData}> |
| <Bar dataKey="uv" unit="kg" /> |
| <Bar dataKey="pv" unit="$$$" name="My custom name" /> |
| <Bar dataKey="amt" unit="" /> |
| <Tooltip shared /> |
| </BarChart>, |
| ); |
|
|
| showTooltip(container, barChartMouseHoverTooltipSelector, debug); |
|
|
| const expectedTooltipTitle = '2'; |
| const expectedTooltipContent = ['My custom name : 1398$$$', 'amt : 2400', 'uv : 300kg']; |
| expectTooltipPayload(container, expectedTooltipTitle, expectedTooltipContent); |
| }); |
|
|
| it('when false, should render tooltip payload with data from single Bar', () => { |
| const { container, debug } = render( |
| <BarChart {...commonChartProps} data={PageData}> |
| <Bar dataKey="uv" unit="kg" /> |
| <Bar dataKey="pv" unit="$$$" name="My custom name" /> |
| <Bar dataKey="amt" unit="" /> |
| <Tooltip shared={false} /> |
| </BarChart>, |
| ); |
|
|
| showTooltip(container, barMouseHoverTooltipSelector, debug); |
|
|
| const expectedTooltipTitle = ''; |
| const expectedTooltipContent = ['uv : 400kg']; |
| expectTooltipPayload(container, expectedTooltipTitle, expectedTooltipContent); |
| }); |
| }); |
|
|
| describe('in RadialBarChart', () => { |
| describe('when shared=true', () => { |
| const renderTestCase = createSelectorTestCase(({ children }) => ( |
| <RadialBarChart height={600} width={600} data={PageData}> |
| <RadialBar dataKey="uv" /> |
| <RadialBar dataKey="pv" name="My custom name" /> |
| <RadialBar dataKey="amt" /> |
| <Tooltip shared /> |
| {children} |
| </RadialBarChart> |
| )); |
|
|
| it('should select tooltip axis type', () => { |
| const { spy } = renderTestCase(selectTooltipAxisType); |
| expect(spy).toHaveBeenLastCalledWith('radiusAxis'); |
| }); |
|
|
| it('should select tooltip axis ID', () => { |
| const { spy } = renderTestCase(selectTooltipAxisId); |
| expect(spy).toHaveBeenLastCalledWith(0); |
| }); |
|
|
| it('should select tooltip axis settings', () => { |
| const { spy } = renderTestCase(selectTooltipAxis); |
| expect(spy).toHaveBeenLastCalledWith({ |
| allowDataOverflow: false, |
| allowDecimals: false, |
| allowDuplicatedCategory: true, |
| dataKey: undefined, |
| domain: undefined, |
| id: 0, |
| includeHidden: false, |
| name: undefined, |
| reversed: false, |
| scale: 'auto', |
| tick: true, |
| tickCount: 5, |
| ticks: undefined, |
| type: 'category', |
| unit: undefined, |
| }); |
| }); |
|
|
| it('should select tooltip axis ticks', () => { |
| const { spy } = renderTestCase(selectTooltipAxisTicks); |
| expect(spy).toHaveBeenLastCalledWith([ |
| { |
| coordinate: 19.666666666666668, |
| index: 0, |
| offset: 19.666666666666668, |
| value: 0, |
| }, |
| { |
| coordinate: 59, |
| index: 1, |
| offset: 19.666666666666668, |
| value: 1, |
| }, |
| { |
| coordinate: 98.33333333333334, |
| index: 2, |
| offset: 19.666666666666668, |
| value: 2, |
| }, |
| { |
| coordinate: 137.66666666666666, |
| index: 3, |
| offset: 19.666666666666668, |
| value: 3, |
| }, |
| { |
| coordinate: 177, |
| index: 4, |
| offset: 19.666666666666668, |
| value: 4, |
| }, |
| { |
| coordinate: 216.33333333333334, |
| index: 5, |
| offset: 19.666666666666668, |
| value: 5, |
| }, |
| ]); |
| }); |
|
|
| it('should select active label', () => { |
| const { spy } = renderTestCase(state => selectActiveLabel(state, 'axis', 'hover', '2')); |
| expect(spy).toHaveBeenLastCalledWith(2); |
| }); |
|
|
| it('should render tooltip payload with data from all Bars', () => { |
| const { container, debug } = renderTestCase(); |
|
|
| showTooltip(container, radialBarChartMouseHoverTooltipSelector, debug); |
|
|
| const expectedTooltipTitle = '3'; |
| const expectedTooltipContent = ['My custom name : 9800', 'amt : 2400', 'uv : 200']; |
| expectTooltipPayload(container, expectedTooltipTitle, expectedTooltipContent); |
| }); |
| }); |
|
|
| describe('when false', () => { |
| it('should render tooltip payload with data from single Bar', () => { |
| const { container, debug } = render( |
| <RadialBarChart height={600} width={600} data={PageData}> |
| <RadialBar dataKey="uv" isAnimationActive={false} /> |
| <RadialBar dataKey="pv" name="My custom name" isAnimationActive={false} /> |
| <RadialBar dataKey="amt" isAnimationActive={false} /> |
| <Tooltip shared={false} /> |
| </RadialBarChart>, |
| ); |
|
|
| showTooltip(container, radialBarMouseHoverTooltipSelector, debug); |
| const expectedTooltipTitle = ''; |
| const expectedTooltipContent = ['uv : 400']; |
| expectTooltipPayload(container, expectedTooltipTitle, expectedTooltipContent); |
| }); |
| }); |
| }); |
| }); |
| }); |
|
|