3 * Copyright (C) 2009-2016 SonarSource SA
4 * mailto:contact AT sonarsource DOT com
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.
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.
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.
20 package org.sonar.server.computation.qualitygate;
22 import java.util.Collections;
23 import org.junit.Test;
25 import static org.assertj.core.api.Assertions.assertThat;
26 import static org.assertj.guava.api.Assertions.assertThat;
28 public class QualityGateHolderImplTest {
30 public static final QualityGate QUALITY_GATE = new QualityGate("name", Collections.<Condition>emptyList());
32 @Test(expected = IllegalStateException.class)
33 public void getQualityGate_throws_ISE_if_QualityGate_not_set() {
34 new QualityGateHolderImpl().getQualityGate();
37 @Test(expected = NullPointerException.class)
38 public void setQualityGate_throws_NPE_if_argument_is_null() {
39 new QualityGateHolderImpl().setQualityGate(null);
42 @Test(expected = IllegalStateException.class)
43 public void setQualityGate_throws_ISE_if_called_twice() {
44 QualityGateHolderImpl holder = new QualityGateHolderImpl();
46 holder.setQualityGate(QUALITY_GATE);
47 holder.setQualityGate(QUALITY_GATE);
51 public void getQualityGate_returns_QualityGate_set_by_setQualityGate() {
52 QualityGateHolderImpl holder = new QualityGateHolderImpl();
54 holder.setQualityGate(QUALITY_GATE);
56 assertThat(holder.getQualityGate().get()).isSameAs(QUALITY_GATE);
60 public void getQualityGate_returns_absent_if_holder_initialized_with_setNoQualityGate() {
61 QualityGateHolderImpl holder = new QualityGateHolderImpl();
63 holder.setNoQualityGate();
65 assertThat(holder.getQualityGate()).isAbsent();