]> source.dussan.org Git - sonarqube.git/blob
af7f97e9f0ead41c86e62a02e09f2bb823f1d39d
[sonarqube.git] /
1 /*
2  * SonarQube, open source software quality management tool.
3  * Copyright (C) 2008-2013 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * SonarQube 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  * SonarQube 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.plugins.core.issue.ignore.pattern;
21
22 import com.google.common.collect.Sets;
23
24 import org.junit.Before;
25 import org.junit.Test;
26 import org.sonar.api.issue.Issue;
27 import org.sonar.api.rule.RuleKey;
28 import org.sonar.api.rules.Rule;
29
30 import java.io.IOException;
31 import java.util.Set;
32
33 import static org.fest.assertions.Assertions.assertThat;
34 import static org.mockito.Mockito.mock;
35 import static org.mockito.Mockito.when;
36
37 public class PatternMatcherTest {
38
39   public static final Rule CHECKSTYLE_RULE = Rule.create("checkstyle", "MagicNumber", "");
40   public static final String JAVA_FILE = "org.foo.Hello";
41
42   private PatternMatcher patternMatcher;
43
44   @Before
45   public void setUp() {
46     patternMatcher = new PatternMatcher();
47   }
48
49   @Test
50   public void shouldReturnExtraPatternForResource() {
51     String file = "foo";
52     patternMatcher.addPatternToExcludeResource(file);
53
54     IssuePattern extraPattern = patternMatcher.getPatternsForComponent(file).iterator().next();
55     assertThat(extraPattern.matchResource(file)).isTrue();
56     assertThat(extraPattern.isCheckLines()).isFalse();
57   }
58
59   @Test
60   public void shouldReturnExtraPatternForLinesOfResource() {
61     String file = "foo";
62     Set<LineRange> lineRanges = Sets.newHashSet();
63     lineRanges.add(new LineRange(25, 28));
64     patternMatcher.addPatternToExcludeLines(file, lineRanges);
65
66     IssuePattern extraPattern = patternMatcher.getPatternsForComponent(file).iterator().next();
67     assertThat(extraPattern.matchResource(file)).isTrue();
68     assertThat(extraPattern.getAllLines()).isEqualTo(Sets.newHashSet(25, 26, 27, 28));
69   }
70
71   @Test
72   public void shouldHaveNoMatcherIfNoneDefined() {
73     assertThat(patternMatcher.getMatchingPattern(create(CHECKSTYLE_RULE, JAVA_FILE, null))).isNull();
74   }
75
76   @Test
77   public void shouldMatchWithStandardPatterns() throws IOException {
78     patternMatcher.addPatternForComponent(JAVA_FILE, createPattern("org.foo.Hello;checkstyle:MagicNumber;[15-200]"));
79
80     assertThat(patternMatcher.getMatchingPattern(create(CHECKSTYLE_RULE, JAVA_FILE, 150))).isNotNull();
81   }
82
83   @Test
84   public void shouldNotMatchWithStandardPatterns() throws IOException {
85     patternMatcher.addPatternForComponent(JAVA_FILE, createPattern("org.foo.Hello;checkstyle:MagicNumber;[15-200]"));
86
87     assertThat(patternMatcher.getMatchingPattern(create(CHECKSTYLE_RULE, JAVA_FILE, 5))).isNull();
88   }
89
90   @Test
91   public void shouldMatchWithExtraPattern() throws IOException {
92     patternMatcher.addPatternForComponent(JAVA_FILE, createPattern("org.foo.Hello;*;[15-200]"));
93
94     assertThat(patternMatcher.getMatchingPattern(create(CHECKSTYLE_RULE, JAVA_FILE, 150))).isNotNull();
95   }
96
97   @Test
98   public void shouldNotMatchWithExtraPattern() throws IOException {
99     patternMatcher.addPatternForComponent(JAVA_FILE, createPattern("org.foo.Hello;*;[15-200]"));
100
101     assertThat(patternMatcher.getMatchingPattern(create(CHECKSTYLE_RULE, JAVA_FILE, 5))).isNull();
102   }
103
104   private Issue create(Rule rule, String component, Integer line) {
105     Issue mockIssue = mock(Issue.class);
106     RuleKey ruleKey = null;
107     if (rule != null) {
108       ruleKey = rule.ruleKey();
109     }
110     when(mockIssue.ruleKey()).thenReturn(ruleKey);
111     when(mockIssue.componentKey()).thenReturn(component);
112     when(mockIssue.line()).thenReturn(line);
113     return mockIssue;
114   }
115
116   private IssuePattern createPattern(String line) {
117     return new PatternDecoder().decode(line).get(0);
118   }
119
120 }