]> source.dussan.org Git - sonarqube.git/blob
6c3094a98076e69fbf0825bf9f31d896f5eeac91
[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.measure.custom.ws;
21
22 import org.assertj.core.data.Offset;
23 import org.junit.Rule;
24 import org.junit.Test;
25 import org.junit.rules.ExpectedException;
26 import org.sonar.db.measure.custom.CustomMeasureDto;
27 import org.sonar.server.exceptions.BadRequestException;
28 import org.sonar.db.measure.custom.CustomMeasureTesting;
29
30 import static org.assertj.core.api.Assertions.assertThat;
31 import static org.sonar.api.measures.Metric.Level.WARN;
32 import static org.sonar.api.measures.Metric.ValueType.BOOL;
33 import static org.sonar.api.measures.Metric.ValueType.FLOAT;
34 import static org.sonar.api.measures.Metric.ValueType.INT;
35 import static org.sonar.api.measures.Metric.ValueType.LEVEL;
36 import static org.sonar.api.measures.Metric.ValueType.STRING;
37 import static org.sonar.api.measures.Metric.ValueType.WORK_DUR;
38 import static org.sonar.db.metric.MetricTesting.newMetricDto;
39 import static org.sonar.server.util.TypeValidationsTesting.newFullTypeValidations;
40
41 public class CustomMeasureValidatorTest {
42
43   @Rule
44   public ExpectedException expectedException = ExpectedException.none();
45   CustomMeasureValidator underTest = new CustomMeasureValidator(newFullTypeValidations());
46   CustomMeasureDto customMeasure = CustomMeasureTesting.newCustomMeasureDto();
47
48   @Test
49   public void set_boolean_true_value() {
50     underTest.setMeasureValue(customMeasure, "true", newMetricDto().setValueType(BOOL.name()));
51
52     assertThat(customMeasure.getValue()).isCloseTo(1.0d, defaultOffset());
53   }
54
55   @Test
56   public void set_boolean_false_value() {
57     underTest.setMeasureValue(customMeasure, "false", newMetricDto().setValueType(BOOL.name()));
58
59     assertThat(customMeasure.getValue()).isCloseTo(0.0d, defaultOffset());
60   }
61
62   @Test
63   public void set_integer_value() {
64     underTest.setMeasureValue(customMeasure, "1984", newMetricDto().setValueType(INT.name()));
65
66     assertThat(customMeasure.getValue()).isCloseTo(1984d, defaultOffset());
67   }
68
69   @Test
70   public void set_float_value() {
71     underTest.setMeasureValue(customMeasure, "3.14", newMetricDto().setValueType(FLOAT.name()));
72
73     assertThat(customMeasure.getValue()).isCloseTo(3.14d, defaultOffset());
74   }
75
76   @Test
77   public void set_long_value() {
78     underTest.setMeasureValue(customMeasure, "123456789", newMetricDto().setValueType(WORK_DUR.name()));
79
80     assertThat(customMeasure.getValue()).isCloseTo(123456789d, defaultOffset());
81   }
82
83   @Test
84   public void set_level_value() {
85     underTest.setMeasureValue(customMeasure, WARN.name(), newMetricDto().setValueType(LEVEL.name()));
86
87     assertThat(customMeasure.getTextValue()).isEqualTo(WARN.name());
88   }
89
90   @Test
91   public void set_string_value() {
92     underTest.setMeasureValue(customMeasure, "free-text-string", newMetricDto().setValueType(STRING.name()));
93
94     assertThat(customMeasure.getTextValue()).isEqualTo("free-text-string");
95   }
96
97   @Test
98   public void fail_when_non_compliant_value() {
99     expectedException.expect(BadRequestException.class);
100
101     underTest.setMeasureValue(customMeasure, "non-compliant-boolean-value", newMetricDto().setValueType(BOOL.name()));
102   }
103
104   @Test
105   public void fail_when_non_compliant_level_value() {
106     expectedException.expect(BadRequestException.class);
107
108     underTest.setMeasureValue(customMeasure, "non-compliant-level-value", newMetricDto().setValueType(LEVEL.name()));
109   }
110
111   private Offset<Double> defaultOffset() {
112     return Offset.offset(0.01d);
113   }
114 }