]> source.dussan.org Git - sonarqube.git/blob
5b8d2dc9e542efba85805c950e26eb2393235ddc
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2021 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.server.qualitygate;
21
22 import com.google.common.collect.ImmutableSet;
23 import java.util.Set;
24 import java.util.stream.Collectors;
25 import org.junit.Test;
26 import org.sonar.api.measures.CoreMetrics;
27 import org.sonar.api.measures.Metric;
28
29 import static org.assertj.core.api.Assertions.assertThat;
30 import static org.mockito.Mockito.mock;
31 import static org.mockito.Mockito.when;
32 import static org.sonar.api.measures.CoreMetrics.NEW_LINES_KEY;
33
34 public class QualityGateEvaluatorImplTest {
35
36   private final QualityGateEvaluator underTest = new QualityGateEvaluatorImpl();
37
38   @Test
39   public void getMetricKeys_includes_by_default_new_lines() {
40     QualityGate gate = mock(QualityGate.class);
41     assertThat(underTest.getMetricKeys(gate)).containsExactly(NEW_LINES_KEY);
42   }
43
44   @Test
45   public void getMetricKeys_includes_metrics_from_qgate() {
46     Set<String> metricKeys = ImmutableSet.of("foo", "bar", "baz");
47     Set<Condition> conditions = metricKeys.stream().map(key -> {
48       Condition condition = mock(Condition.class);
49       when(condition.getMetricKey()).thenReturn(key);
50       return condition;
51     }).collect(Collectors.toSet());
52
53     QualityGate gate = mock(QualityGate.class);
54     when(gate.getConditions()).thenReturn(conditions);
55     assertThat(underTest.getMetricKeys(gate)).containsAll(metricKeys);
56   }
57
58   @Test
59   public void evaluated_conditions_are_sorted() {
60     Set<String> metricKeys = ImmutableSet.of("foo", "bar", CoreMetrics.NEW_MAINTAINABILITY_RATING_KEY);
61     Set<Condition> conditions = metricKeys.stream().map(key -> {
62       Condition condition = mock(Condition.class);
63       when(condition.getMetricKey()).thenReturn(key);
64       return condition;
65     }).collect(Collectors.toSet());
66
67     QualityGate gate = mock(QualityGate.class);
68     when(gate.getConditions()).thenReturn(conditions);
69     QualityGateEvaluator.Measures measures = mock(QualityGateEvaluator.Measures.class);
70
71     assertThat(underTest.evaluate(gate, measures).getEvaluatedConditions()).extracting(x -> x.getCondition().getMetricKey())
72     .containsExactly(CoreMetrics.NEW_MAINTAINABILITY_RATING_KEY, "bar", "foo");
73   }
74
75   @Test
76   public void evaluate_is_OK_for_empty_qgate() {
77     QualityGate gate = mock(QualityGate.class);
78     QualityGateEvaluator.Measures measures = mock(QualityGateEvaluator.Measures.class);
79     EvaluatedQualityGate evaluatedQualityGate = underTest.evaluate(gate, measures);
80     assertThat(evaluatedQualityGate.getStatus()).isEqualTo(Metric.Level.OK);
81   }
82 }