forked from SonarSource/sonarqube
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
129 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
tests/src/test/java/org/sonarqube/tests/issue/ExternalIssueTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
/* | ||
* SonarQube | ||
* Copyright (C) 2009-2018 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.sonarqube.tests.issue; | ||
|
||
import com.sonar.orchestrator.build.SonarScanner; | ||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
import org.junit.Before; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.sonarqube.qa.util.Tester; | ||
import org.sonarqube.ws.Common.RuleScope; | ||
import org.sonarqube.ws.Common.RuleType; | ||
import org.sonarqube.ws.Common.Severity; | ||
import org.sonarqube.ws.Issues.Issue; | ||
import org.sonarqube.ws.client.issues.SearchRequest; | ||
import util.ItUtils; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
public class ExternalIssueTest extends AbstractIssueTest { | ||
private static final String PROJECT_KEY = "project"; | ||
|
||
@Rule | ||
public Tester tester = new Tester(ORCHESTRATOR); | ||
|
||
@Before | ||
public void setUp() { | ||
ORCHESTRATOR.getServer().provisionProject(PROJECT_KEY, PROJECT_KEY); | ||
ItUtils.restoreProfile(ORCHESTRATOR, getClass().getResource("/issue/ExternalIssueTest/no-rules.xml")); | ||
ORCHESTRATOR.getServer().associateProjectToQualityProfile(PROJECT_KEY, "xoo", "no-rules"); | ||
} | ||
|
||
@Test | ||
public void should_import_external_issues_and_create_external_rules() { | ||
noExternalRuleAndNoIssues(); | ||
|
||
SonarScanner sonarScanner = ItUtils.runProjectAnalysis(ORCHESTRATOR, "shared/xoo-sample", | ||
"sonar.oneExternalIssuePerLine.activate", "true"); | ||
List<Issue> issuesList = tester.wsClient().issues().search(new SearchRequest()).getIssuesList(); | ||
assertThat(issuesList).hasSize(17); | ||
|
||
assertThat(issuesList).allMatch(issue -> "external_xoo:OneExternalIssuePerLine".equals(issue.getRule())); | ||
assertThat(issuesList).allMatch(issue -> "This issue is generated on each line".equals(issue.getMessage())); | ||
assertThat(issuesList).allMatch(issue -> "This issue is generated on each line".equals(issue.getMessage())); | ||
assertThat(issuesList).allMatch(issue -> Severity.MAJOR.equals(issue.getSeverity())); | ||
assertThat(issuesList).allMatch(issue -> RuleType.CODE_SMELL.equals(issue.getType())); | ||
assertThat(issuesList).allMatch(issue -> "sample:src/main/xoo/sample/Sample.xoo".equals(issue.getComponent())); | ||
assertThat(issuesList).allMatch(issue -> "OPEN".equals(issue.getStatus())); | ||
assertThat(issuesList).allMatch(issue -> Boolean.TRUE.equals(issue.getFromExternalRule())); | ||
|
||
List<org.sonarqube.ws.Rules.Rule> rulesList = tester.wsClient().rules() | ||
.search(new org.sonarqube.ws.client.rules.SearchRequest().setIsExternal(Boolean.toString(true))).getRulesList(); | ||
List<org.sonarqube.ws.Rules.Rule> externalRules = rulesList.stream().filter(rule -> rule.getIsExternal()).collect(Collectors.toList()); | ||
|
||
assertThat(externalRules).hasSize(1); | ||
assertThat(externalRules.get(0).getKey()).isEqualTo("external_xoo:OneExternalIssuePerLine"); | ||
assertThat(externalRules.get(0).getIsTemplate()).isFalse(); | ||
assertThat(externalRules.get(0).getIsExternal()).isTrue(); | ||
assertThat(externalRules.get(0).getTags().getTagsCount()).isEqualTo(0); | ||
assertThat(externalRules.get(0).getScope()).isEqualTo(RuleScope.ALL); | ||
|
||
// second analysis, issue tracking should work | ||
sonarScanner = ItUtils.runProjectAnalysis(ORCHESTRATOR, "shared/xoo-sample", | ||
"sonar.oneExternalIssuePerLine.activate", "true"); | ||
issuesList = tester.wsClient().issues().search(new SearchRequest()).getIssuesList(); | ||
assertThat(issuesList).hasSize(17); | ||
} | ||
|
||
private void noExternalRuleAndNoIssues() { | ||
List<org.sonarqube.ws.Rules.Rule> rulesList = tester.wsClient().rules() | ||
.search(new org.sonarqube.ws.client.rules.SearchRequest().setIsExternal(Boolean.toString(true))).getRulesList(); | ||
assertThat(rulesList).noneMatch(rule -> rule.getIsExternal()); | ||
|
||
List<Issue> issuesList = tester.wsClient().issues().search(new SearchRequest()).getIssuesList(); | ||
assertThat(issuesList).isEmpty(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
tests/src/test/resources/issue/ExternalIssueTest/no-rules.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<profile> | ||
<name>no-rules</name> | ||
<language>xoo</language> | ||
<rules> | ||
</rules> | ||
</profile> |