]> source.dussan.org Git - sonarqube.git/blob
e585691f730d647f9283ccb27792985a49ee65a4
[sonarqube.git] /
1 /*
2  * Sonar, open source software quality management tool.
3  * Copyright (C) 2008-2011 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * Sonar 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  * Sonar 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
17  * License along with Sonar; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
19  */
20 package org.sonar.plugins.core.sensors;
21
22 import static org.hamcrest.core.IsNot.not;
23 import static org.hamcrest.number.OrderingComparisons.greaterThan;
24 import static org.junit.Assert.assertThat;
25 import org.junit.Test;
26 import static org.mockito.Matchers.anyObject;
27 import static org.mockito.Mockito.*;
28 import org.sonar.api.batch.DecoratorContext;
29 import org.sonar.api.measures.CoreMetrics;
30 import org.sonar.api.measures.Measure;
31 import org.sonar.api.test.IsMeasure;
32
33 public class UncoveredComplexityDecoratorTest {
34
35   @Test
36   public void nothingWhenNoMeasures() {
37     DecoratorContext context = mock(DecoratorContext.class);
38     UncoveredComplexityDecorator decorator = new UncoveredComplexityDecorator();
39     decorator.decorate(null, context);
40
41     verify(context, never()).saveMeasure((Measure) anyObject());
42   }
43
44   @Test
45   public void quotientWhenMeasures() {
46     DecoratorContext context = mock(DecoratorContext.class);
47     when(context.getMeasure(CoreMetrics.COMPLEXITY)).thenReturn(new Measure(CoreMetrics.COMPLEXITY, 1048.0));
48     when(context.getMeasure(CoreMetrics.COVERAGE)).thenReturn(new Measure(CoreMetrics.COVERAGE, 32.5));
49
50     UncoveredComplexityDecorator decorator = new UncoveredComplexityDecorator();
51     decorator.decorate(null, context);
52
53     verify(context).saveMeasure(argThat(new IsMeasure(CoreMetrics.UNCOVERED_COMPLEXITY_BY_TESTS, 707.4)));
54     verify(context).saveMeasure(argThat(new IsMeasure(CoreMetrics.UNCOVERED_COMPLEXITY_BY_TESTS, "CMP=1048;COV=32.5")));
55   }
56
57   @Test
58   public void declareDependencies() {
59     UncoveredComplexityDecorator decorator = new UncoveredComplexityDecorator();
60     assertThat(decorator.dependsUponMetrics().size(), greaterThan(0));
61     assertThat(decorator.generatesMetric(), not(isNull()));
62   }
63 }