]> source.dussan.org Git - sonarqube.git/blob
b582c101e038e8ebf4779db917e6832e904e52fc
[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
21 package org.sonar.plugins.core.issue.ignore;
22
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.sonar.api.issue.Issue;
26 import org.sonar.api.issue.batch.IssueFilterChain;
27 import org.sonar.plugins.core.issue.ignore.pattern.ExclusionPatternInitializer;
28 import org.sonar.plugins.core.issue.ignore.pattern.IssuePattern;
29 import org.sonar.plugins.core.issue.ignore.pattern.PatternMatcher;
30
31 import static org.fest.assertions.Assertions.assertThat;
32 import static org.mockito.Mockito.mock;
33 import static org.mockito.Mockito.when;
34
35 public class IgnoreIssuesFilterTest {
36
37   private ExclusionPatternInitializer exclusionPatternInitializer;
38   private PatternMatcher exclusionPatternMatcher;
39   private IgnoreIssuesFilter ignoreFilter;
40   private Issue issue;
41   private IssueFilterChain chain;
42
43   @Before
44   public void init() {
45     exclusionPatternMatcher = mock(PatternMatcher.class);
46     exclusionPatternInitializer = mock(ExclusionPatternInitializer.class);
47     when(exclusionPatternInitializer.getPatternMatcher()).thenReturn(exclusionPatternMatcher);
48     issue = mock(Issue.class);
49     chain = mock(IssueFilterChain.class);
50     when(chain.accept(issue)).thenReturn(true);
51
52     ignoreFilter = new IgnoreIssuesFilter(exclusionPatternInitializer);
53   }
54
55   @Test
56   public void shouldPassToChainIfMatcherHasNoPatternForIssue() {
57     when(exclusionPatternMatcher.getMatchingPattern(issue)).thenReturn(null);
58
59     assertThat(ignoreFilter.accept(issue, chain)).isTrue();
60   }
61
62   @Test
63   public void shouldAcceptOrRefuseIfMatcherHasPatternForIssue() {
64     when(exclusionPatternMatcher.getMatchingPattern(issue)).thenReturn(mock(IssuePattern.class));
65
66     assertThat(ignoreFilter.accept(issue, chain)).isFalse();
67   }
68 }