
org.sonar.java.checks.verifier.CheckVerifier Maven / Gradle / Ivy
/*
* SonarQube Java
* Copyright (C) 2012-2016 SonarSource SA
* mailto:contact 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.java.checks.verifier;
import com.google.common.base.Preconditions;
import com.google.common.base.Splitter;
import com.google.common.collect.ArrayListMultimap;
import com.google.common.collect.HashMultiset;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Iterables;
import com.google.common.collect.Lists;
import com.google.common.collect.Multimap;
import com.google.common.collect.Multiset;
import org.apache.commons.lang.StringUtils;
import org.fest.assertions.Fail;
import org.sonar.java.AnalyzerMessage;
import java.util.ArrayList;
import java.util.Collections;
import java.util.EnumMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import static org.fest.assertions.Assertions.assertThat;
public abstract class CheckVerifier {
public static final String ISSUE_MARKER = "Noncompliant";
public static final Map ATTRIBUTE_MAP = ImmutableMap.builder()
.put("message", IssueAttribute.MESSAGE)
.put("effortToFix", IssueAttribute.EFFORT_TO_FIX)
.put("sc", IssueAttribute.START_COLUMN)
.put("startColumn", IssueAttribute.START_COLUMN)
.put("el", IssueAttribute.END_LINE)
.put("endLine", IssueAttribute.END_LINE)
.put("ec", IssueAttribute.END_COLUMN)
.put("endColumn", IssueAttribute.END_COLUMN)
.put("secondary", IssueAttribute.SECONDARY_LOCATIONS)
.build();
public enum IssueAttribute {
MESSAGE,
START_COLUMN,
END_COLUMN,
END_LINE,
EFFORT_TO_FIX,
SECONDARY_LOCATIONS
}
private final ArrayListMultimap> expected = ArrayListMultimap.create();
private boolean expectNoIssues = false;
private String expectFileIssue;
private Integer expectFileIssueOnline;
public void expectNoIssues() {
this.expectNoIssues = true;
}
public void setExpectedFileIssue(String expectFileIssue) {
this.expectFileIssue = expectFileIssue;
}
public void expectFileIssueOnline(Integer expectFileIssueOnline) {
this.expectFileIssueOnline = expectFileIssueOnline;
}
public abstract String getExpectedIssueTrigger();
protected void collectExpectedIssues(String comment, int line) {
String expectedStart = getExpectedIssueTrigger();
if (comment.startsWith(expectedStart)) {
String cleanedComment = StringUtils.remove(comment, expectedStart);
EnumMap attr = new EnumMap<>(IssueAttribute.class);
String expectedMessage = StringUtils.substringBetween(cleanedComment, "{{", "}}");
if (StringUtils.isNotEmpty(expectedMessage)) {
attr.put(IssueAttribute.MESSAGE, expectedMessage);
}
int expectedLine = line;
String attributesSubstr = extractAttributes(comment, attr);
cleanedComment = StringUtils.stripEnd(StringUtils.remove(StringUtils.remove(cleanedComment, "[[" + attributesSubstr + "]]"), "{{" + expectedMessage + "}}"), " \t");
if (StringUtils.startsWith(cleanedComment, "@")) {
final int lineAdjustment;
final char firstChar = cleanedComment.charAt(1);
final int endIndex = cleanedComment.indexOf(' ');
if (endIndex == -1) {
lineAdjustment = Integer.parseInt(cleanedComment.substring(2));
} else {
lineAdjustment = Integer.parseInt(cleanedComment.substring(2, endIndex));
}
if (firstChar == '+') {
expectedLine += lineAdjustment;
} else if (firstChar == '-') {
expectedLine -= lineAdjustment;
} else {
Fail.fail("Use only '@+N' or '@-N' to shifts messages.");
}
}
updateEndLine(expectedLine, attr);
expected.put(expectedLine, attr);
}
}
private static String extractAttributes(String comment, Map attr) {
String attributesSubstr = StringUtils.substringBetween(comment, "[[", "]]");
if (!StringUtils.isEmpty(attributesSubstr)) {
Iterable attributes = Splitter.on(";").split(attributesSubstr);
for (String attribute : attributes) {
String[] split = StringUtils.split(attribute, '=');
if (split.length == 2 && CheckVerifier.ATTRIBUTE_MAP.containsKey(split[0])) {
attr.put(CheckVerifier.ATTRIBUTE_MAP.get(split[0]), split[1]);
} else {
Fail.fail("// Noncompliant attributes not valid: " + attributesSubstr);
}
}
}
return attributesSubstr;
}
private static void updateEndLine(int expectedLine, EnumMap attr) {
if (attr.containsKey(IssueAttribute.END_LINE)) {
String endLineStr = attr.get(IssueAttribute.END_LINE);
if (endLineStr.charAt(0) == '+') {
int endLine = Integer.parseInt(endLineStr);
attr.put(IssueAttribute.END_LINE, Integer.toString(expectedLine + endLine));
} else {
Fail.fail("endLine attribute should be relative to the line and must be +N with N integer");
}
}
}
public ArrayListMultimap> getExpected() {
return expected;
}
public void checkIssues(Set issues, boolean bypassNoIssue) {
if (expectNoIssues) {
assertNoIssues(issues, bypassNoIssue);
} else if (StringUtils.isNotEmpty(expectFileIssue)) {
assertSingleIssue(issues);
} else {
assertMultipleIssue(issues);
}
}
private void assertMultipleIssue(Set issues) throws AssertionError {
Preconditions.checkState(!issues.isEmpty(), "At least one issue expected");
List unexpectedLines = Lists.newLinkedList();
for (AnalyzerMessage issue : issues) {
validateIssue(expected, unexpectedLines, issue);
}
if (!expected.isEmpty() || !unexpectedLines.isEmpty()) {
Collections.sort(unexpectedLines);
String expectedMsg = !expected.isEmpty() ? ("Expected " + expected) : "";
String unexpectedMsg = !unexpectedLines.isEmpty() ? ((expectedMsg.isEmpty() ? "" : ", ") + "Unexpected at " + unexpectedLines) : "";
Fail.fail(expectedMsg + unexpectedMsg);
}
}
private static void validateIssue(Multimap> expected, List unexpectedLines, AnalyzerMessage issue) {
int line = issue.getLine();
if (expected.containsKey(line)) {
Map attrs = Iterables.getLast(expected.get(line));
assertEquals(issue.getMessage(), attrs, IssueAttribute.MESSAGE);
Double cost = issue.getCost();
if (cost != null) {
assertEquals(Integer.toString(cost.intValue()), attrs, IssueAttribute.EFFORT_TO_FIX);
}
validateAnalyzerMessage(attrs, issue);
expected.remove(line, attrs);
} else {
unexpectedLines.add(line);
}
}
private static void validateAnalyzerMessage(Map attrs, AnalyzerMessage analyzerMessage) {
Double effortToFix = analyzerMessage.getCost();
if (effortToFix != null) {
assertEquals(Integer.toString(effortToFix.intValue()), attrs, IssueAttribute.EFFORT_TO_FIX);
}
AnalyzerMessage.TextSpan textSpan = analyzerMessage.primaryLocation();
assertEquals(normalizeColumn(textSpan.startCharacter), attrs, IssueAttribute.START_COLUMN);
assertEquals(Integer.toString(textSpan.endLine), attrs, IssueAttribute.END_LINE);
assertEquals(normalizeColumn(textSpan.endCharacter), attrs, IssueAttribute.END_COLUMN);
if (attrs.containsKey(IssueAttribute.SECONDARY_LOCATIONS)) {
List secondaryLocations = analyzerMessage.secondaryLocations;
Multiset actualLines = HashMultiset.create();
for (AnalyzerMessage secondaryLocation : secondaryLocations) {
actualLines.add(Integer.toString(secondaryLocation.getLine()));
}
List expected = Lists.newArrayList(Splitter.on(",").omitEmptyStrings().trimResults().split(attrs.get(IssueAttribute.SECONDARY_LOCATIONS)));
List unexpected = new ArrayList<>();
for (String actualLine : actualLines) {
if (expected.contains(actualLine)) {
expected.remove(actualLine);
} else {
unexpected.add(actualLine);
}
}
if (!expected.isEmpty() || !unexpected.isEmpty()) {
Fail.fail("Secondary locations: expected: " + expected + " unexpected:" + unexpected);
}
}
}
private static String normalizeColumn(int startCharacter) {
return Integer.toString(startCharacter + 1);
}
private static void assertEquals(String value, Map attributes, IssueAttribute attribute) {
if (attributes.containsKey(attribute)) {
assertThat(value).as("attribute mismatch for " + attribute + ": " + attributes).isEqualTo(attributes.get(attribute));
}
}
private void assertSingleIssue(Set issues) {
Preconditions.checkState(issues.size() == 1, "A single issue is expected with line " + expectFileIssueOnline);
AnalyzerMessage issue = Iterables.getFirst(issues, null);
assertThat(issue.getLine()).isEqualTo(expectFileIssueOnline);
assertThat(issue.getMessage()).isEqualTo(expectFileIssue);
}
private void assertNoIssues(Set issues, boolean bypass) {
assertThat(issues).overridingErrorMessage("No issues expected but got: " + issues).isEmpty();
if (!bypass) {
// make sure we do not copy&paste verifyNoIssue call when we intend to call verify
assertThat(expected.isEmpty()).overridingErrorMessage("The file should not declare noncompliants when no issues are expected").isTrue();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy