-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathCdcWaffleChart.test.jsx
More file actions
460 lines (420 loc) · 14.2 KB
/
CdcWaffleChart.test.jsx
File metadata and controls
460 lines (420 loc) · 14.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
import path from 'node:path'
import React from 'react'
import { render, waitFor } from '@testing-library/react'
import { testStandaloneBuild } from '@cdc/core/helpers/tests/testStandaloneBuild.ts'
import { afterEach, describe, expect, it, vi } from 'vitest'
import CdcWaffleChart from '../CdcWaffleChart'
vi.mock('resize-observer-polyfill', () => ({
default: vi.fn(() => ({
observe: vi.fn(),
unobserve: vi.fn(),
disconnect: vi.fn()
}))
}))
vi.mock('@cdc/core/components/ui/TrendArrow', () => ({
default: ({ label, wrapperClassName = '' }) => (
<span className={['mock-trend-arrow-wrap', wrapperClassName].join(' ').trim()}>
<span className='mock-trend-arrow'>{label || 'Trend'}</span>
</span>
)
}))
afterEach(() => {
vi.restoreAllMocks()
})
describe('Waffle Chart', () => {
const createBaseConfig = overrides => ({
type: 'waffle-chart',
title: 'Test Waffle',
showTitle: true,
visualizationType: 'Waffle',
shape: 'circle',
data: [{ value: 42 }],
filters: [],
content: 'Test content',
subtext: 'Test subtext',
dataColumn: 'value',
dataFunction: 'Sum',
customDenom: false,
dataDenom: '100',
dataDenomColumn: '',
dataDenomFunction: 'Sum',
showPercent: true,
showDenominator: false,
valueDescription: 'out of',
suffix: '%',
roundToPlace: 0,
nodeWidth: 10,
nodeSpacer: 2,
theme: 'theme-blue',
visual: {
border: false,
accent: false,
background: false,
hideBackgroundColor: false,
borderColorTheme: false,
whiteBackground: false,
colors: {
'theme-blue': '#005eaa'
}
},
...overrides
})
const getRenderedNodeCounts = container => {
const nodes = Array.from(container.querySelectorAll('.cove-waffle-chart svg .cdc-waffle-chart__node'))
const filled = nodes.filter(node => Number(node.getAttribute('fill-opacity') ?? 1) >= 1).length
return {
total: nodes.length,
filled
}
}
const getPrimaryValueText = container =>
container.querySelector('.cove-waffle-chart__data--primary')?.textContent?.replace(/\s+/g, ' ').trim() || ''
const renderDynamicDenominatorChart = ({ numerator, denominator, roundToPlace = '' }) =>
render(
<CdcWaffleChart
config={createBaseConfig({
data: [{ value: numerator }],
dataFunction: 'Sum',
dataDenom: String(denominator),
showPercent: false,
showDenominator: true,
suffix: '',
roundToPlace,
valueDescription: 'out of'
})}
/>
)
it('Can be built in isolation', async () => {
const pkgDir = path.join(__dirname, '..')
const result = await testStandaloneBuild(pkgDir)
expect(result).toBe(true)
}, 300000)
it('moves the trend indicator below the value when a trend label is configured', async () => {
const { container } = render(
<CdcWaffleChart
config={createBaseConfig({
visualizationType: 'TP5 Waffle',
shape: 'square',
data: [{ value: 42, total: 100, trend: 'increase' }],
customDenom: true,
dataDenomColumn: 'total',
showPercent: true,
trendIndicator: {
mode: 'categorical',
column: 'trend',
mappings: [{ sourceValue: 'increase', arrowType: 'up' }],
upLabel: 'Increasing'
}
})}
/>
)
await waitFor(() => {
expect(container.querySelector('.cove-waffle-chart__trend-slot--below')).toBeInTheDocument()
})
expect(container.querySelector('.cove-waffle-chart__trend-slot--inline')).not.toBeInTheDocument()
expect(
container.querySelector('.mock-trend-arrow-wrap.cove-trend-arrow__wrap--below.cove-trend-arrow__wrap--with-label')
).toBeInTheDocument()
})
it('moves the trend indicator below the value when a footer trend label is configured', async () => {
const { container } = render(
<CdcWaffleChart
config={createBaseConfig({
visualizationType: 'TP5 Waffle',
shape: 'square',
data: [{ value: 42, total: 100, trend: 'increase' }],
customDenom: true,
dataDenomColumn: 'total',
showPercent: true,
trendIndicator: {
mode: 'categorical',
column: 'trend',
mappings: [{ sourceValue: 'increase', arrowType: 'up' }],
trendLabel: '(compared to one year prior)'
}
})}
/>
)
await waitFor(() => {
expect(container.querySelector('.cove-waffle-chart__trend-footer-label')).toHaveTextContent(
'(compared to one year prior)'
)
})
expect(
container.querySelector('.mock-trend-arrow-wrap.cove-trend-arrow__wrap--below.cove-trend-arrow__wrap--with-label')
).not.toBeInTheDocument()
})
it('keeps the trend indicator inline when no trend label is configured', async () => {
const { container } = render(
<CdcWaffleChart
config={createBaseConfig({
visualizationType: 'TP5 Waffle',
shape: 'square',
data: [{ value: 42, total: 100, trend: 'increase' }],
customDenom: true,
dataDenomColumn: 'total',
showPercent: true,
trendIndicator: {
mode: 'categorical',
column: 'trend',
mappings: [{ sourceValue: 'increase', arrowType: 'up' }]
}
})}
/>
)
await waitFor(() => {
expect(container.querySelector('.cove-waffle-chart__trend-slot--inline')).toBeInTheDocument()
})
expect(container.querySelector('.cove-waffle-chart__trend-slot--below')).not.toBeInTheDocument()
expect(container.querySelector('.mock-trend-arrow-wrap.cove-trend-arrow__wrap--inline')).toBeInTheDocument()
})
it('renders a no-change trend label when numeric no-change arrows are enabled', async () => {
const { container } = render(
<CdcWaffleChart
config={{
type: 'waffle-chart',
title: 'Test Waffle',
showTitle: true,
visualizationType: 'TP5 Waffle',
shape: 'square',
data: [
{ value: 10, total: 100, historical: 8 },
{ value: 10, total: 100, historical: 12 }
],
filters: [],
content: 'Test content',
subtext: 'Test subtext',
dataColumn: 'value',
dataFunction: 'Sum',
customDenom: true,
dataDenom: '100',
dataDenomColumn: '',
dataDenomFunction: 'Sum',
showPercent: true,
showDenominator: false,
valueDescription: 'out of',
suffix: '%',
roundToPlace: 0,
nodeWidth: 10,
nodeSpacer: 2,
theme: 'theme-blue',
trendIndicator: {
mode: 'numeric',
column: 'historical',
numericThreshold: 5,
showNoChangeArrows: true,
noChangeLabel: 'No change'
},
visual: {
border: false,
accent: false,
background: false,
hideBackgroundColor: false,
borderColorTheme: false,
whiteBackground: false,
colors: {
'theme-blue': '#005eaa'
}
}
}}
/>
)
await waitFor(() => {
expect(container.querySelector('.mock-trend-arrow')).toHaveTextContent('No change')
})
})
it('does not render a no-change trend arrow when numeric no-change arrows are disabled', async () => {
const { container } = render(
<CdcWaffleChart
config={{
type: 'waffle-chart',
title: 'Test Waffle',
showTitle: true,
visualizationType: 'TP5 Waffle',
shape: 'square',
data: [
{ value: 10, total: 100, historical: 8 },
{ value: 10, total: 100, historical: 12 }
],
filters: [],
content: 'Test content',
subtext: 'Test subtext',
dataColumn: 'value',
dataFunction: 'Sum',
customDenom: true,
dataDenom: '100',
dataDenomColumn: '',
dataDenomFunction: 'Sum',
showPercent: true,
showDenominator: false,
valueDescription: 'out of',
suffix: '%',
roundToPlace: 0,
nodeWidth: 10,
nodeSpacer: 2,
theme: 'theme-blue',
trendIndicator: {
mode: 'numeric',
column: 'historical',
numericThreshold: 5,
noChangeLabel: 'No change'
},
visual: {
border: false,
accent: false,
background: false,
hideBackgroundColor: false,
borderColorTheme: false,
whiteBackground: false,
colors: {
'theme-blue': '#005eaa'
}
}
}}
/>
)
await waitFor(() => {
expect(container.querySelector('.mock-trend-arrow-wrap')).not.toBeInTheDocument()
})
})
it('ignores blank historical values when resolving numeric trends', async () => {
const { container } = render(
<CdcWaffleChart
config={{
type: 'waffle-chart',
title: 'Test Waffle',
showTitle: true,
visualizationType: 'TP5 Waffle',
shape: 'square',
data: [
{ value: 10, total: 100, historical: ' ' },
{ value: 10, total: 100, historical: 10 }
],
filters: [],
content: 'Test content',
subtext: 'Test subtext',
dataColumn: 'value',
dataFunction: 'Mean (Average)',
customDenom: true,
dataDenom: '100',
dataDenomColumn: '',
dataDenomFunction: 'Sum',
showPercent: true,
showDenominator: false,
valueDescription: 'out of',
suffix: '%',
roundToPlace: 0,
nodeWidth: 10,
nodeSpacer: 2,
theme: 'theme-blue',
trendIndicator: {
mode: 'numeric',
column: 'historical',
numericThreshold: 0,
upLabel: 'Increasing'
},
visual: {
border: false,
accent: false,
background: false,
hideBackgroundColor: false,
borderColorTheme: false,
whiteBackground: false,
colors: {
'theme-blue': '#005eaa'
}
}
}}
/>
)
await waitFor(() => {
expect(container.querySelector('.mock-trend-arrow-wrap')).not.toBeInTheDocument()
})
})
it('renders denominator 10 as a 5 by 2 grid while preserving full width without extra SVG height', async () => {
const { container } = render(
<CdcWaffleChart
config={createBaseConfig({
data: [{ value: 4 }],
dataDenom: '10',
showPercent: false,
showDenominator: true,
suffix: ''
})}
/>
)
await waitFor(() => {
const nodes = container.querySelectorAll('.cove-waffle-chart svg .cdc-waffle-chart__node')
expect(nodes).toHaveLength(10)
})
const nodes = Array.from(container.querySelectorAll('.cove-waffle-chart svg circle'))
const uniqueX = new Set(nodes.map(node => node.getAttribute('cx'))).size
const uniqueY = new Set(nodes.map(node => node.getAttribute('cy'))).size
const svg = container.querySelector('.cove-waffle-chart svg')
const scaledGroup = svg?.querySelector('g')
const svgWidth = Number(svg?.getAttribute('width') || 0)
const svgHeight = Number(svg?.getAttribute('height') || 0)
expect(uniqueX).toBe(5)
expect(uniqueY).toBe(2)
expect(svg).toHaveAttribute('width', '120')
expect(svgWidth).toBe(120)
expect(svgHeight).toBeGreaterThan(40)
expect(svgHeight).toBeLessThan(svgWidth)
expect(scaledGroup?.getAttribute('transform')).toContain('scale(')
expect(scaledGroup?.getAttribute('transform')).not.toContain('scale(1)')
})
it.each([
['1.2 out of 7 as 1 filled node', 1.2, 7, 7, 1],
['1.6 out of 7 as 2 filled nodes', 1.6, 7, 7, 2],
['2.6 out of 3.4 as 2 filled nodes', 2.6, 3.4, 3, 2],
['1.49 out of 1.51 as 2 filled nodes', 1.49, 1.51, 2, 2]
])(
'rounds dynamic denominator fills by raw ratio for %s',
async (_label, numerator, denominator, expectedTotal, expectedFilled) => {
const { container } = renderDynamicDenominatorChart({ numerator, denominator })
await waitFor(() => {
expect(getRenderedNodeCounts(container)).toEqual({
total: expectedTotal,
filled: expectedFilled
})
})
}
)
it('uses the rounded displayed numerator for dynamic denominator waffle geometry when roundToPlace is 0', async () => {
const { container } = renderDynamicDenominatorChart({ numerator: 17.5, denominator: 20.2, roundToPlace: 0 })
await waitFor(() => {
expect(getRenderedNodeCounts(container)).toEqual({
total: 20,
filled: 18
})
})
expect(getPrimaryValueText(container)).toContain('18 out of 20.2')
})
it('uses the rounded displayed numerator for dynamic denominator waffle geometry when roundToPlace is 1', async () => {
const { container } = renderDynamicDenominatorChart({ numerator: 17.5, denominator: 20.2, roundToPlace: 1 })
await waitFor(() => {
expect(getRenderedNodeCounts(container)).toEqual({
total: 20,
filled: 17
})
})
expect(getPrimaryValueText(container)).toContain('17.5 out of 20.2')
})
it('preserves exact numerator and denominator text while discretizing dynamic denominator dots when roundToPlace is blank', async () => {
const { container } = renderDynamicDenominatorChart({ numerator: 17.5, denominator: 20.2 })
await waitFor(() => {
expect(getRenderedNodeCounts(container)).toEqual({
total: 20,
filled: 17
})
})
expect(container.querySelector('.cove-waffle-chart__data--primary')).toHaveTextContent('17.5')
expect(container.querySelector('.cove-waffle-chart__data--primary')).toHaveTextContent('20.2')
})
it('falls back to fixed 100-node mode when numerator exceeds denominator', async () => {
const { container } = renderDynamicDenominatorChart({ numerator: 21, denominator: 20 })
await waitFor(() => {
expect(getRenderedNodeCounts(container).total).toBe(100)
})
})
})