-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathProjectStatisticsPopup.test.tsx
351 lines (323 loc) · 10.1 KB
/
ProjectStatisticsPopup.test.tsx
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
// SPDX-FileCopyrightText: Meta Platforms, Inc. and its affiliates
// SPDX-FileCopyrightText: TNG Technology Consulting GmbH <https://www.tngtech.com>
//
// SPDX-License-Identifier: Apache-2.0
import { screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { Attributions, Criticality } from '../../../../shared/shared-types';
import { text } from '../../../../shared/text';
import { loadFromFile } from '../../../state/actions/resource-actions/load-actions';
import { setUserSetting } from '../../../state/actions/user-settings-actions/user-settings-actions';
import { getParsedInputFileEnrichedWithTestData } from '../../../test-helpers/general-test-helpers';
import { renderComponent } from '../../../test-helpers/render';
import { ProjectStatisticsPopup } from '../ProjectStatisticsPopup';
const testManualAttributions: Attributions = {
uuid_1: {
source: {
name: 'scancode',
documentConfidence: 10,
},
licenseName: 'Apache License Version 2.0',
criticality: Criticality.None,
id: 'uuid_1',
},
uuid_2: {
source: {
name: 'reuser',
documentConfidence: 90,
},
licenseName: 'The MIT License (MIT)',
criticality: Criticality.None,
id: 'uuid_2',
},
};
const testExternalAttributions: Attributions = {
uuid_3: {
source: {
name: 'scancode',
documentConfidence: 90,
},
licenseName: 'Apache License Version 3.0',
criticality: Criticality.None,
id: 'uuid_3',
},
uuid_2: {
source: {
name: 'reuser',
documentConfidence: 90,
},
licenseName: 'The MIT License (MIT)',
criticality: Criticality.None,
id: 'uuid_2',
},
};
const fileSetup = {
config: { classifications: { 0: 'GOOD', 1: 'BAD' } },
manualAttributions: testManualAttributions,
externalAttributions: testExternalAttributions,
};
describe('The ProjectStatisticsPopup', () => {
it('displays license names and source names', () => {
const testExternalAttributions: Attributions = {
uuid_1: {
source: {
name: 'scancode',
documentConfidence: 10,
},
licenseName: 'Apache License Version 2.0',
criticality: Criticality.None,
id: 'uuid_1',
},
uuid_2: {
source: {
name: 'reuser',
documentConfidence: 90,
},
licenseName: 'The MIT License (MIT)',
criticality: Criticality.None,
id: 'uuid_2',
},
};
renderComponent(<ProjectStatisticsPopup />, {
actions: [
loadFromFile(
getParsedInputFileEnrichedWithTestData({
externalAttributions: testExternalAttributions,
}),
),
],
});
expect(screen.getByText('Apache License Version 2.0')).toBeInTheDocument();
expect(screen.getByText('The MIT License (MIT)')).toBeInTheDocument();
expect(screen.getByText('Scancode')).toBeInTheDocument();
expect(screen.getByText('Reuser')).toBeInTheDocument();
});
it('renders all pie charts when there are signals and attributions', () => {
renderComponent(<ProjectStatisticsPopup />, {
actions: [
loadFromFile(getParsedInputFileEnrichedWithTestData(fileSetup)),
],
});
expect(
screen.getByText(
text.projectStatisticsPopup.charts.mostFrequentLicenseCountPieChart,
),
).toBeInTheDocument();
expect(
screen.getByText(
text.projectStatisticsPopup.charts.criticalSignalsCountPieChart.title,
),
).toBeInTheDocument();
expect(
screen.getByText(
text.projectStatisticsPopup.charts.signalCountByClassificationPieChart
.title,
),
).toBeInTheDocument();
expect(
screen.getByText(
text.projectStatisticsPopup.charts.incompleteAttributionsPieChart.title,
),
).toBeInTheDocument();
});
it('does not render pie charts when there are no signals and no attributions', () => {
const testExternalAttributions: Attributions = {};
renderComponent(<ProjectStatisticsPopup />, {
actions: [
loadFromFile(
getParsedInputFileEnrichedWithTestData({
config: { classifications: { 0: 'GOOD', 1: 'BAD' } },
externalAttributions: testExternalAttributions,
}),
),
],
});
expect(
screen.queryByText(
text.projectStatisticsPopup.charts.mostFrequentLicenseCountPieChart,
),
).not.toBeInTheDocument();
expect(
screen.queryByText(
text.projectStatisticsPopup.charts.criticalSignalsCountPieChart.title,
),
).not.toBeInTheDocument();
expect(
screen.queryByText(
text.projectStatisticsPopup.charts.signalCountByClassificationPieChart
.title,
),
).not.toBeInTheDocument();
expect(
screen.queryByText(
text.projectStatisticsPopup.charts.incompleteAttributionsPieChart.title,
),
).not.toBeInTheDocument();
});
it('renders pie charts related to signals even if there are no attributions', () => {
const testManualAttributions: Attributions = {};
const testExternalAttributions: Attributions = {
uuid_1: {
source: {
name: 'scancode',
documentConfidence: 10,
},
licenseName: 'Apache License Version 2.0',
criticality: Criticality.None,
id: 'uuid_1',
},
uuid_2: {
source: {
name: 'reuser',
documentConfidence: 90,
},
licenseName: 'The MIT License (MIT)',
criticality: Criticality.None,
id: 'uuid_2',
},
};
renderComponent(<ProjectStatisticsPopup />, {
actions: [
loadFromFile(
getParsedInputFileEnrichedWithTestData({
config: { classifications: { 0: 'GOOD', 1: 'BAD' } },
manualAttributions: testManualAttributions,
externalAttributions: testExternalAttributions,
}),
),
],
});
expect(
screen.getByText(
text.projectStatisticsPopup.charts.mostFrequentLicenseCountPieChart,
),
).toBeInTheDocument();
expect(
screen.getByText(
text.projectStatisticsPopup.charts.criticalSignalsCountPieChart.title,
),
).toBeInTheDocument();
expect(
screen.getByText(
text.projectStatisticsPopup.charts.signalCountByClassificationPieChart
.title,
),
).toBeInTheDocument();
});
it('renders attribution bar chart and signals per sources table even when there are no attributions and no signals', async () => {
const testExternalAttributions: Attributions = {};
renderComponent(<ProjectStatisticsPopup />, {
actions: [
loadFromFile(
getParsedInputFileEnrichedWithTestData({
externalAttributions: testExternalAttributions,
}),
),
],
});
expect(
screen.getByText(
text.projectStatisticsPopup.charts.attributionProperties.title,
),
).toBeInTheDocument();
await userEvent.click(
screen.getByText(text.projectStatisticsPopup.tabs.details),
);
expect(
screen.getByText(
text.attributionCountPerSourcePerLicenseTable.columns.licenseInfo,
),
).toBeInTheDocument();
});
it('supports sorting the signals per sources table', async () => {
const testExternalAttributions: Attributions = {
uuid_1: {
source: {
name: 'scancode',
documentConfidence: 10,
},
licenseName: 'Apache License Version 2.0',
criticality: Criticality.None,
id: 'uuid_1',
},
uuid_2: {
source: {
name: 'reuser',
documentConfidence: 90,
},
licenseName: 'The MIT License (MIT)',
criticality: Criticality.None,
id: 'uuid_2',
},
};
renderComponent(<ProjectStatisticsPopup />, {
actions: [
loadFromFile(
getParsedInputFileEnrichedWithTestData({
externalAttributions: testExternalAttributions,
}),
),
],
});
const getLicenseNames = () =>
screen
.getAllByTestId('signalsPerSourceBodyCell0')
.map((element) => element.textContent);
// sorted by license name ASC
expect(getLicenseNames()).toStrictEqual([
'Apache License Version 2.0',
'The MIT License (MIT)',
]);
await userEvent.click(screen.getByText('Scancode'));
// sorted by count on scancode source DESC
expect(getLicenseNames()).toStrictEqual([
'Apache License Version 2.0',
'The MIT License (MIT)',
]);
await userEvent.click(screen.getByText('Scancode'));
// sorted by count on scancode source ASC
expect(getLicenseNames()).toStrictEqual([
'The MIT License (MIT)',
'Apache License Version 2.0',
]);
});
it('does not show the classification statistics if it has been disabled', () => {
renderComponent(<ProjectStatisticsPopup />, {
actions: [
setUserSetting({ showClassifications: false }),
loadFromFile(getParsedInputFileEnrichedWithTestData(fileSetup)),
],
});
expect(
screen.queryByText(
text.projectStatisticsPopup.charts.signalCountByClassificationPieChart
.title,
),
).not.toBeInTheDocument();
});
it('does not show the criticality statistics if it has been disabled', () => {
renderComponent(<ProjectStatisticsPopup />, {
actions: [
setUserSetting({ showCriticality: false }),
loadFromFile(getParsedInputFileEnrichedWithTestData(fileSetup)),
],
});
expect(
screen.queryByText(
text.projectStatisticsPopup.charts.criticalSignalsCountPieChart.title,
),
).not.toBeInTheDocument();
});
it('allows toggling of show-on-startup checkbox', async () => {
renderComponent(<ProjectStatisticsPopup />);
expect(
screen.getByLabelText(text.projectStatisticsPopup.toggleStartupCheckbox),
).toBeChecked();
await userEvent.click(
screen.getByLabelText(text.projectStatisticsPopup.toggleStartupCheckbox),
);
expect(
screen.getByLabelText(text.projectStatisticsPopup.toggleStartupCheckbox),
).not.toBeChecked();
});
});