]> source.dussan.org Git - sonarqube.git/blob
128ed0603927a8c2c836ed6fb41630102c10d533
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2022 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.api.batch.sensor.issue.internal;
21
22 import org.apache.commons.lang.StringUtils;
23 import org.junit.Test;
24 import org.sonar.api.batch.fs.InputFile;
25 import org.sonar.api.batch.fs.internal.TestInputFileBuilder;
26
27 import static org.assertj.core.api.Assertions.assertThat;
28 import static org.assertj.core.api.Assertions.assertThatThrownBy;
29
30 public class DefaultIssueLocationTest {
31
32   private InputFile inputFile = new TestInputFileBuilder("foo", "src/Foo.php")
33     .initMetadata("Foo\nBar\n")
34     .build();
35
36   @Test
37   public void should_build() {
38     assertThat(new DefaultIssueLocation()
39       .on(inputFile)
40       .message("pipo bimbo")
41       .message()
42     ).isEqualTo("pipo bimbo");
43   }
44
45   @Test
46   public void not_allowed_to_call_on_twice() {
47     assertThatThrownBy(() -> new DefaultIssueLocation()
48       .on(inputFile)
49       .on(inputFile)
50       .message("Wrong way!"))
51       .isInstanceOf(IllegalStateException.class)
52       .hasMessage("on() already called");
53   }
54
55   @Test
56   public void prevent_too_long_messages() {
57     assertThat(new DefaultIssueLocation()
58       .on(inputFile)
59       .message(StringUtils.repeat("a", 4000)).message()).hasSize(4000);
60
61     assertThat(new DefaultIssueLocation()
62       .on(inputFile)
63       .message(StringUtils.repeat("a", 4001)).message()).hasSize(4000);
64   }
65
66   @Test
67   public void prevent_null_character_in_message_text() {
68     assertThatThrownBy(() -> new DefaultIssueLocation()
69       .message("pipo " + '\u0000' + " bimbo"))
70       .isInstanceOf(IllegalArgumentException.class)
71       .hasMessageContaining("Character \\u0000 is not supported in issue message");
72   }
73
74   @Test
75   public void prevent_null_character_in_message_text_when_builder_has_been_initialized() {
76     assertThatThrownBy(() -> new DefaultIssueLocation()
77       .on(inputFile)
78       .message("pipo " + '\u0000' + " bimbo"))
79       .isInstanceOf(IllegalArgumentException.class)
80       .hasMessageStartingWith("Character \\u0000 is not supported in issue message")
81       .hasMessageEndingWith(", on component: src/Foo.php");
82   }
83 }