diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2015-07-27 16:25:31 +0200 |
---|---|---|
committer | Duarte Meneses <duarte.meneses@sonarsource.com> | 2015-07-28 14:54:10 +0200 |
commit | b36bc464f98e0136d41e60774093aa946b207999 (patch) | |
tree | fabae7651b0705f3fd74144399e57350bc064565 /sonar-batch-protocol | |
parent | 7cb72d02dc84f620447d80b96cd518d8b7f54e9a (diff) | |
download | sonarqube-b36bc464f98e0136d41e60774093aa946b207999.tar.gz sonarqube-b36bc464f98e0136d41e60774093aa946b207999.zip |
SONAR-6713 Load rules in global container
Diffstat (limited to 'sonar-batch-protocol')
5 files changed, 177 insertions, 0 deletions
diff --git a/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/input/Rule.java b/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/input/Rule.java new file mode 100644 index 00000000000..e1574f1c6be --- /dev/null +++ b/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/input/Rule.java @@ -0,0 +1,74 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2014 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube 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. + * + * SonarQube 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.batch.protocol.input; + +import javax.annotation.CheckForNull; +import javax.annotation.Nullable; + +public class Rule { + private final String key; + private final String repo; + private final String internalKey; + private final String name; + private final String severity; + private final String lang; + + public Rule(String ruleKey, String repositoryKey, String internalKey, String name, @Nullable String severity, @Nullable String language) { + this.key = ruleKey; + this.repo = repositoryKey; + this.internalKey = internalKey; + this.name = name; + this.severity = severity; + this.lang = language; + } + + public String ruleKey() { + return key; + } + + public String repositoryKey() { + return repo; + } + + public String internalKey() { + return internalKey; + } + + public String name() { + return name; + } + + /** + * Is null on manual rules + */ + @CheckForNull + public String severity() { + return severity; + } + + /** + * Is null on manual rules + */ + @CheckForNull + public String language() { + return lang; + } + +} diff --git a/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/input/RulesSearchResult.java b/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/input/RulesSearchResult.java new file mode 100644 index 00000000000..91dccb179f7 --- /dev/null +++ b/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/input/RulesSearchResult.java @@ -0,0 +1,45 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2014 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube 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. + * + * SonarQube 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.batch.protocol.input; + +import java.util.List; + +import org.sonar.batch.protocol.GsonHelper; + +public class RulesSearchResult { + List<Rule> rules; + + public List<Rule> getRules() { + return rules; + } + + public void setRules(List<Rule> rules) { + this.rules = rules; + } + + public String toJson() { + return GsonHelper.create().toJson(this); + } + + public static RulesSearchResult fromJson(String json) { + return GsonHelper.create().fromJson(json, RulesSearchResult.class); + } + +} diff --git a/sonar-batch-protocol/src/test/java/org/sonar/batch/protocol/input/RulesSearchResultTest.java b/sonar-batch-protocol/src/test/java/org/sonar/batch/protocol/input/RulesSearchResultTest.java new file mode 100644 index 00000000000..0455cc2eeb1 --- /dev/null +++ b/sonar-batch-protocol/src/test/java/org/sonar/batch/protocol/input/RulesSearchResultTest.java @@ -0,0 +1,56 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2014 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube 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. + * + * SonarQube 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.batch.protocol.input; + +import org.apache.commons.io.IOUtils; + +import java.io.IOException; +import java.net.URL; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.sonar.test.JsonAssert; +import org.assertj.core.util.Lists; +import org.junit.Test; + +public class RulesSearchResultTest { + @Test + public void testJsonParsing() { + Rule rule1 = new Rule("squid:S1194", "squid", "S1194", "\"java.lang.Error\" should not be extended", "MAJOR", "java"); + Rule rule2 = new Rule("squid:ObjectFinalizeOverridenCallsSuperFinalizeCheck", "squid", "ObjectFinalizeOverridenCallsSuperFinalizeCheck", + "super.finalize() should be called at the end of Object.finalize() implementations", "BLOCKER", "java"); + + RulesSearchResult rules = new RulesSearchResult(); + rules.setRules(Lists.newArrayList(rule1, rule2)); + + JsonAssert + .assertJson(getClass().getResource("RulesSearchTest/expected.json")) + .isSimilarTo(rules.toJson()); + } + + @Test + public void testJsonParsingEmpty() throws IOException { + URL resource = getClass().getResource("RulesSearchTest/empty.json"); + String json = IOUtils.toString(resource); + RulesSearchResult result = RulesSearchResult.fromJson(json); + + assertThat(result.getRules()).isEmpty(); + } +} diff --git a/sonar-batch-protocol/src/test/resources/org/sonar/batch/protocol/input/RulesSearchTest/empty.json b/sonar-batch-protocol/src/test/resources/org/sonar/batch/protocol/input/RulesSearchTest/empty.json new file mode 100644 index 00000000000..055fe8b8d63 --- /dev/null +++ b/sonar-batch-protocol/src/test/resources/org/sonar/batch/protocol/input/RulesSearchTest/empty.json @@ -0,0 +1 @@ +{"total":3225,"p":30,"ps":500,"rules":[]}
\ No newline at end of file diff --git a/sonar-batch-protocol/src/test/resources/org/sonar/batch/protocol/input/RulesSearchTest/expected.json b/sonar-batch-protocol/src/test/resources/org/sonar/batch/protocol/input/RulesSearchTest/expected.json new file mode 100644 index 00000000000..89350a7e331 --- /dev/null +++ b/sonar-batch-protocol/src/test/resources/org/sonar/batch/protocol/input/RulesSearchTest/expected.json @@ -0,0 +1 @@ +{"total":290,"p":1,"ps":2,"rules":[{"key":"squid:S1194","internalKey":"S1194","repo":"squid","name":"\"java.lang.Error\" should not be extended","severity":"MAJOR","lang":"java"},{"key":"squid:ObjectFinalizeOverridenCallsSuperFinalizeCheck","internalKey":"ObjectFinalizeOverridenCallsSuperFinalizeCheck","repo":"squid","name":"super.finalize() should be called at the end of Object.finalize() implementations","severity":"BLOCKER","lang":"java"}]}
\ No newline at end of file |