]> source.dussan.org Git - sonarqube.git/blob
389e7f008d419e9f73a0df1c79857fb5adfa3503
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2019 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.ImmutableList;
23 import com.google.common.collect.ImmutableSet;
24 import java.util.List;
25 import org.sonar.api.measures.CoreMetrics;
26
27 import static org.sonar.db.qualitygate.QualityGateConditionDto.OPERATOR_GREATER_THAN;
28
29 /**
30  * Offers constants describing the Hardcoded Quality Gate for short living branches and pull requests.
31  */
32 public final class ShortLivingBranchQualityGate {
33   public static final long ID = -1_963_456_987L;
34   public static final String NAME = "Hardcoded short living branch quality gate";
35   public static final List<Condition> CONDITIONS = ImmutableList.of(
36     new Condition(CoreMetrics.OPEN_ISSUES_KEY, OPERATOR_GREATER_THAN, "0"),
37     new Condition(CoreMetrics.REOPENED_ISSUES_KEY, OPERATOR_GREATER_THAN, "0"));
38
39   public static final QualityGate GATE = new QualityGate(String.valueOf(ID), NAME, ImmutableSet.of(
40     new org.sonar.server.qualitygate.Condition(CoreMetrics.OPEN_ISSUES_KEY, org.sonar.server.qualitygate.Condition.Operator.GREATER_THAN, "0"),
41     new org.sonar.server.qualitygate.Condition(CoreMetrics.REOPENED_ISSUES_KEY, org.sonar.server.qualitygate.Condition.Operator.GREATER_THAN, "0")));
42
43   private ShortLivingBranchQualityGate() {
44     // prevents instantiation
45   }
46
47   public static final class Condition {
48     private final String metricKey;
49     private final String operator;
50     private final String errorThreshold;
51
52     public Condition(String metricKey, String operator, String errorThreshold) {
53       this.metricKey = metricKey;
54       this.operator = operator;
55       this.errorThreshold = errorThreshold;
56     }
57
58     public String getMetricKey() {
59       return metricKey;
60     }
61
62     public String getOperator() {
63       return operator;
64     }
65
66     public String getErrorThreshold() {
67       return errorThreshold;
68     }
69   }
70 }