]> source.dussan.org Git - sonarqube.git/blob
ee861e7935a495b727b02e914b1e49a4c223cfb1
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2016 SonarSource SA
4  * mailto:contact 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.computation.qualitygate;
21
22 import java.util.Collections;
23 import org.junit.Test;
24
25 import static org.assertj.core.api.Assertions.assertThat;
26 import static org.assertj.guava.api.Assertions.assertThat;
27
28 public class QualityGateHolderImplTest {
29
30   public static final QualityGate QUALITY_GATE = new QualityGate("name", Collections.<Condition>emptyList());
31
32   @Test(expected = IllegalStateException.class)
33   public void getQualityGate_throws_ISE_if_QualityGate_not_set() {
34     new QualityGateHolderImpl().getQualityGate();
35   }
36
37   @Test(expected = NullPointerException.class)
38   public void setQualityGate_throws_NPE_if_argument_is_null() {
39     new QualityGateHolderImpl().setQualityGate(null);
40   }
41
42   @Test(expected = IllegalStateException.class)
43   public void setQualityGate_throws_ISE_if_called_twice() {
44     QualityGateHolderImpl holder = new QualityGateHolderImpl();
45
46     holder.setQualityGate(QUALITY_GATE);
47     holder.setQualityGate(QUALITY_GATE);
48   }
49
50   @Test
51   public void getQualityGate_returns_QualityGate_set_by_setQualityGate() {
52     QualityGateHolderImpl holder = new QualityGateHolderImpl();
53
54     holder.setQualityGate(QUALITY_GATE);
55
56     assertThat(holder.getQualityGate().get()).isSameAs(QUALITY_GATE);
57   }
58
59   @Test
60   public void getQualityGate_returns_absent_if_holder_initialized_with_setNoQualityGate() {
61     QualityGateHolderImpl holder = new QualityGateHolderImpl();
62
63     holder.setNoQualityGate();
64
65     assertThat(holder.getQualityGate()).isAbsent();
66   }
67
68 }