aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-engine/src/test/java/org/sonar/scanner/externalissue/ExternalIssueReportValidatorTest.java
blob: 1d7eb5927d102cc371f9c54bd30cc6abb86cf975 (plain)
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
/*
 * SonarQube
 * Copyright (C) 2009-2025 SonarSource SA
 * mailto:info AT sonarsource DOT com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
package org.sonar.scanner.externalissue;

import com.google.gson.Gson;
import java.io.IOException;
import java.io.Reader;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.slf4j.event.Level;
import org.sonar.api.rules.RuleType;
import org.sonar.api.testfixtures.log.LogAndArguments;
import org.sonar.api.testfixtures.log.LogTester;
import org.sonar.core.documentation.DocumentationLinkGenerator;

import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatCode;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

public class ExternalIssueReportValidatorTest {

  private static final String DEPRECATED_REPORTS_LOCATION = "src/test/resources/org/sonar/scanner/externalissue/";
  private static final String REPORTS_LOCATION = "src/test/resources/org/sonar/scanner/externalissue/cct/";
  private static final String URL = "/analyzing-source-code/importing-external-issues/generic-issue-import-format/";
  private static final String TEST_URL = "test-url";

  private final Gson gson = new Gson();
  private final Path reportPath = Paths.get("report-path");
  private final DocumentationLinkGenerator documentationLinkGenerator = mock(DocumentationLinkGenerator.class);
  private final ExternalIssueReportValidator validator = new ExternalIssueReportValidator(documentationLinkGenerator);

  @Rule
  public LogTester logTester = new LogTester();

  @Before
  public void setUp() {
    when(documentationLinkGenerator.getDocumentationLink(URL)).thenReturn(TEST_URL);
  }

  @Test
  public void validate_whenInvalidReport_shouldThrowException() throws IOException {
    ExternalIssueReport report = readInvalidReport(DEPRECATED_REPORTS_LOCATION);
    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': invalid report detected.");
  }

  @Test
  public void validate_whenCorrect_shouldNotThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    assertThatCode(() -> validator.validate(report, reportPath)).doesNotThrowAnyException();
  }

  @Test
  public void validate_whenDuplicateRuleIdFound_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.rules[0].id = "rule2";

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': found duplicate rule ID 'rule2'.");
  }

  @Test
  public void validate_whenMissingEngineIdField_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.rules[0].engineId = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'engineId'.");
  }

  @Test
  public void validate_whenMissingFilepathFieldForPrimaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.issues[0].primaryLocation.filePath = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'filePath' in the primary location of the issue.");
  }

  @Test
  public void validate_whenMissingImpactsAndTypeField_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.rules[0].impacts = null;
    report.rules[0].type = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': either type, impacts or both should be provided.");
  }

  @Test
  public void validate_whenImpactIsProvided_shouldNotBeEmpty() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.rules[0].impacts = new ExternalIssueReport.Impact[0];
    report.rules[0].type = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': mandatory array 'impacts' not populated.");
  }

  @Test
  public void validate_whenSecurityHotspotAndImpactIsProvided_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.rules[0].impacts = new ExternalIssueReport.Impact[] {
      new ExternalIssueReport.Impact()
    };
    report.rules[0].type = RuleType.SECURITY_HOTSPOT.name();

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': impacts should not be provided for rule type 'SECURITY_HOTSPOT'.");
  }

  @Test
  public void validate_whenTypeIsProvidedAndNotSeverity_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.rules[0].impacts = new ExternalIssueReport.Impact[] {
      new ExternalIssueReport.Impact()
    };
    report.rules[0].type = null;
    report.rules[0].severity = "MAJOR";

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'type'.");
  }

  @Test
  public void validate_whenSeverityIsProvidedAndNotType_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.rules[0].impacts = new ExternalIssueReport.Impact[] {
      new ExternalIssueReport.Impact()
    };
    report.rules[0].type = "CODE_SMELL";
    report.rules[0].severity = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'severity'.");
  }

  @Test
  public void validate_whenMissingMessageFieldForPrimaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.issues[0].primaryLocation.message = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'message' in the primary location of the issue.");
  }

  @Test
  public void validate_whenMissingStartLineFieldForPrimaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.issues[0].primaryLocation.textRange.startLine = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'startLine of the text range' in the primary location of the issue.");
  }

  @Test
  public void validate_whenReportMissingFilePathForSecondaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.issues[3].secondaryLocations[0].filePath = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'filePath' in a secondary location of the issue.");
  }

  @Test
  public void validate_whenReportMissingTextRangeForSecondaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.issues[3].secondaryLocations[0].textRange = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'textRange' in a secondary location of the issue.");
  }

  @Test
  public void validate_whenReportMissingTextRangeStartLineForSecondaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.issues[3].secondaryLocations[0].textRange.startLine = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'startLine of the text range' in a secondary location of the issue.");
  }

  @Test
  public void validate_whenMissingNameField_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.rules[0].name = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'name'.");
  }

  @Test
  public void validate_whenMissingPrimaryLocationField_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.issues[0].primaryLocation = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'primaryLocation'.");
  }

  @Test
  public void validate_whenMissingOrEmptyRuleIdField_shouldThrowException() throws IOException {
    String errorMessage = "Failed to parse report 'report-path': missing mandatory field 'id'.";

    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.rules[0].id = null;
    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage(errorMessage);

    report.rules[0].id = "";
    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage(errorMessage);
  }

  @Test
  public void validate_whenIssueContainsRuleIdNotPresentInReport_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.issues[0].ruleId = "rule-id-not-present";

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': rule with 'rule-id-not-present' not present.");
  }

  @Test
  public void validate_whenIssueRuleIdNotPresentInReport_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.issues[0].ruleId = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'ruleId'.");
  }

  @Test
  public void validate_whenContainsDeprecatedSeverityEntry_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.issues[0].severity = "MAJOR";

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Deprecated 'severity' field found in the following report: 'report-path'.");
  }

  @Test
  public void validate_whenContainsDeprecatedTypeEntry_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.issues[0].type = "BUG";

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Deprecated 'type' field found in the following report: 'report-path'.");
  }

  @Test
  public void validate_whenContainsEmptyImpacts_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(REPORTS_LOCATION);
    report.rules[0].impacts = new ExternalIssueReport.Impact[0];

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': mandatory array 'impacts' not populated.");
  }

  @Test
  public void validate_whenDeprecatedReportFormat_shouldValidateWithWarningLog() throws IOException {
    ExternalIssueReport report = read(DEPRECATED_REPORTS_LOCATION);
    assertThatCode(() -> validator.validate(report, reportPath)).doesNotThrowAnyException();
    assertWarningLog();
  }

  @Test
  public void validate_whenDeprecatedReportMissingEngineId_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(DEPRECATED_REPORTS_LOCATION);
    report.issues[0].engineId = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'engineId'.");
    assertWarningLog();
  }

  @Test
  public void validate_whenDeprecatedReportMissingFilepathForPrimaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(DEPRECATED_REPORTS_LOCATION);
    report.issues[0].primaryLocation.filePath = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'filePath' in the primary location of the issue.");
    assertWarningLog();
  }

  @Test
  public void validate_whenDeprecatedReportMissingMessageForPrimaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(DEPRECATED_REPORTS_LOCATION);
    report.issues[0].primaryLocation.message = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'message' in the primary location of the issue.");
    assertWarningLog();
  }

  @Test
  public void validate_whenDeprecatedReportMissingPrimaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(DEPRECATED_REPORTS_LOCATION);
    report.issues[0].primaryLocation = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'primaryLocation'.");
    assertWarningLog();
  }

  @Test
  public void validate_whenDeprecatedReportMissingStartLineForPrimaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(DEPRECATED_REPORTS_LOCATION);
    report.issues[0].primaryLocation.textRange.startLine = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'startLine of the text range' in the primary location of the issue.");
    assertWarningLog();
  }

  @Test
  public void validate_whenDeprecatedReportMissingFilePathForSecondaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(DEPRECATED_REPORTS_LOCATION);
    report.issues[3].secondaryLocations[0].filePath = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'filePath' in a secondary location of the issue.");
    assertWarningLog();
  }

  @Test
  public void validate_whenDeprecatedReportMissingTextRangeForSecondaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(DEPRECATED_REPORTS_LOCATION);
    report.issues[3].secondaryLocations[0].textRange = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'textRange' in a secondary location of the issue.");
    assertWarningLog();
  }

  @Test
  public void validate_whenDeprecatedReportMissingTextRangeStartLineForSecondaryLocation_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(DEPRECATED_REPORTS_LOCATION);
    report.issues[3].secondaryLocations[0].textRange.startLine = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'startLine of the text range' in a secondary location of the issue.");
    assertWarningLog();
  }

  @Test
  public void validate_whenDeprecatedReportMissingRuleId_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(DEPRECATED_REPORTS_LOCATION);
    report.issues[0].ruleId = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'ruleId'.");
    assertWarningLog();
  }

  @Test
  public void validate_whenDeprecatedReportMissingSeverity_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(DEPRECATED_REPORTS_LOCATION);
    report.issues[0].severity = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'severity'.");
    assertWarningLog();
  }

  @Test
  public void validate_whenDeprecatedReportMissingType_shouldThrowException() throws IOException {
    ExternalIssueReport report = read(DEPRECATED_REPORTS_LOCATION);
    report.issues[0].type = null;

    assertThatThrownBy(() -> validator.validate(report, reportPath))
      .isInstanceOf(IllegalStateException.class)
      .hasMessage("Failed to parse report 'report-path': missing mandatory field 'type'.");
    assertWarningLog();
  }

  private void assertWarningLog() {
    assertThat(logTester.getLogs(Level.WARN))
      .extracting(LogAndArguments::getFormattedMsg)
      .contains("External issues were imported with a deprecated format which will be removed soon. " +
        "Please switch to the newest format to fully benefit from Clean Code: " + TEST_URL);
  }

  private ExternalIssueReport read(String location) throws IOException {
    Reader reader = Files.newBufferedReader(Paths.get(location + "report.json"), StandardCharsets.UTF_8);
    return gson.fromJson(reader, ExternalIssueReport.class);
  }

  private ExternalIssueReport readInvalidReport(String location) throws IOException {
    Reader reader = Files.newBufferedReader(Paths.get(location + "invalid_report.json"), StandardCharsets.UTF_8);
    return gson.fromJson(reader, ExternalIssueReport.class);
  }

}