diff options
author | Léo Geoffroy <leo.geoffroy@sonarsource.com> | 2023-12-06 14:58:09 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-12-08 20:03:05 +0000 |
commit | 27897c461a07e38db86a9f96cd936556c593cd90 (patch) | |
tree | 5a4203064abc35af0a4799fb7beefa5bc2b0fb30 | |
parent | ebeadfc3d5cb912cd86efc8a2f17e9b0e8528ed7 (diff) | |
download | sonarqube-27897c461a07e38db86a9f96cd936556c593cd90.tar.gz sonarqube-27897c461a07e38db86a9f96cd936556c593cd90.zip |
SONAR-21131 Add tests for RuleService and fix code smells
2 files changed, 70 insertions, 1 deletions
diff --git a/server/sonar-webserver-common/src/main/java/org/sonar/server/common/rule/RuleCreator.java b/server/sonar-webserver-common/src/main/java/org/sonar/server/common/rule/RuleCreator.java index b9bb99d192e..bcae391b0e2 100644 --- a/server/sonar-webserver-common/src/main/java/org/sonar/server/common/rule/RuleCreator.java +++ b/server/sonar-webserver-common/src/main/java/org/sonar/server/common/rule/RuleCreator.java @@ -228,7 +228,8 @@ public class RuleCreator { } private void setCleanCodeAttributeAndImpacts(NewCustomRule newRule, RuleDto ruleDto, RuleDto templateRuleDto) { - int type = newRule.type() == null ? templateRuleDto.getType() : newRule.type().getDbConstant(); + RuleType ruleType = newRule.type(); + int type = ruleType == null ? templateRuleDto.getType() : ruleType.getDbConstant(); String severity = ofNullable(newRule.severity()).orElse(Severity.MAJOR); if (type == RuleType.SECURITY_HOTSPOT.getDbConstant()) { diff --git a/server/sonar-webserver-common/src/test/java/org/sonar/server/common/rule/service/RuleServiceTest.java b/server/sonar-webserver-common/src/test/java/org/sonar/server/common/rule/service/RuleServiceTest.java new file mode 100644 index 00000000000..b2aecd75e7f --- /dev/null +++ b/server/sonar-webserver-common/src/test/java/org/sonar/server/common/rule/service/RuleServiceTest.java @@ -0,0 +1,68 @@ +/* + * SonarQube + * Copyright (C) 2009-2023 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.server.common.rule.service; + +import java.util.List; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Answers; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.junit.MockitoJUnitRunner; +import org.sonar.api.rule.RuleKey; +import org.sonar.db.DbClient; +import org.sonar.db.DbSession; +import org.sonar.db.rule.RuleDto; +import org.sonar.db.rule.RuleParamDto; +import org.sonar.server.common.rule.RuleCreator; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +@RunWith(MockitoJUnitRunner.class) +public class RuleServiceTest { + + @Mock(answer = Answers.RETURNS_DEEP_STUBS) + private DbClient dbClient; + + @Mock + private RuleCreator ruleCreator; + + @InjectMocks + private RuleService ruleService; + + @Test + public void createCustomRule_shouldReturnExceptedRuleInformation() { + when(ruleCreator.create(Mockito.any(), Mockito.any(NewCustomRule.class))).thenReturn(new RuleDto().setUuid("uuid")); + when(dbClient.ruleDao().selectRuleParamsByRuleUuids(any(), eq(List.of("uuid")))).thenReturn(List.of(new RuleParamDto().setUuid("paramUuid"))); + RuleInformation customRule = ruleService.createCustomRule(NewCustomRule.createForCustomRule(RuleKey.of("rep", "key"), RuleKey.of("rep", "custom"))); + assertThat(customRule.ruleDto().getUuid()).isEqualTo("uuid"); + assertThat(customRule.params()).extracting(RuleParamDto::getUuid).containsExactly("paramUuid"); + + customRule = ruleService.createCustomRule(NewCustomRule.createForCustomRule(RuleKey.of("rep", "key"), RuleKey.of("rep", "custom")), mock(DbSession.class)); + assertThat(customRule.ruleDto().getUuid()).isEqualTo("uuid"); + assertThat(customRule.params()).extracting(RuleParamDto::getUuid).containsExactly("paramUuid"); + } + +} |