]> source.dussan.org Git - sonarqube.git/blob
cb888f79285e74b6062c2a521722f8e98aa9074f
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.ce.task.projectanalysis.issue.commonrule;
21
22 import java.util.Collection;
23 import org.junit.Test;
24 import org.sonar.ce.task.projectanalysis.component.Component;
25 import org.sonar.ce.task.projectanalysis.component.FileAttributes;
26 import org.sonar.ce.task.projectanalysis.component.ReportComponent;
27 import org.sonar.core.issue.DefaultIssue;
28
29 import static org.assertj.core.api.Assertions.assertThat;
30 import static org.mockito.Mockito.mock;
31 import static org.mockito.Mockito.verifyNoInteractions;
32 import static org.mockito.Mockito.when;
33 import static org.sonar.ce.task.projectanalysis.component.ReportComponent.DUMB_PROJECT;
34
35 public class CommonRuleEngineImplTest {
36
37   CommonRule rule1 = mock(CommonRule.class);
38   CommonRule rule2 = mock(CommonRule.class);
39   CommonRuleEngineImpl underTest = new CommonRuleEngineImpl(rule1, rule2);
40
41   @Test
42   public void process_files_with_known_language() {
43     ReportComponent file = ReportComponent.builder(Component.Type.FILE, 1)
44       .setKey("FILE_KEY").setUuid("FILE_UUID")
45       .setFileAttributes(new FileAttributes(false, "java", 1))
46       .build();
47     DefaultIssue issue = new DefaultIssue();
48     when(rule1.processFile(file, "java")).thenReturn(issue);
49     when(rule2.processFile(file, "java")).thenReturn(null);
50
51     Collection<DefaultIssue> issues = underTest.process(file);
52     assertThat(issues).containsOnly(issue);
53   }
54
55   @Test
56   public void do_not_process_files_with_unknown_language() {
57     ReportComponent file = ReportComponent.builder(Component.Type.FILE, 1)
58       .setKey("FILE_KEY").setUuid("FILE_UUID")
59       .setFileAttributes(new FileAttributes(false, null, 1))
60       .build();
61
62     Collection<DefaultIssue> issues = underTest.process(file);
63
64     assertThat(issues).isEmpty();
65     verifyNoInteractions(rule1, rule2);
66   }
67
68   @Test
69   public void do_not_process_non_files() {
70     Collection<DefaultIssue> issues = underTest.process(DUMB_PROJECT);
71
72     assertThat(issues).isEmpty();
73     verifyNoInteractions(rule1, rule2);
74   }
75 }