]> source.dussan.org Git - sonarqube.git/blob
b025b75aeaac0afe42667c4d68a55bcf187e799e
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2024 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.alm.client.github;
21
22 import java.util.Optional;
23 import org.apache.commons.lang3.RandomStringUtils;
24 import org.junit.Test;
25
26 import static java.lang.String.join;
27 import static org.assertj.core.api.Assertions.assertThat;
28 import static org.sonar.alm.client.github.SonarQubeIssueKeyFormatter.SONAR_ISSUE_KEY_PREFIX;
29 import static org.sonar.alm.client.github.SonarQubeIssueKeyFormatter.SONAR_ISSUE_KEY_SUFFIX;
30
31 public class SonarQubeIssueKeyFormatterTest {
32
33   @Test
34   public void should_serializeIssueKey() {
35     String issueKey = RandomStringUtils.randomAlphanumeric(20);
36
37     String serialized = SonarQubeIssueKeyFormatter.serialize(issueKey);
38
39     String expectedSerializedKey = join("", SONAR_ISSUE_KEY_PREFIX, issueKey, SONAR_ISSUE_KEY_SUFFIX);
40     assertThat(serialized).isEqualTo(expectedSerializedKey);
41   }
42
43   @Test
44   public void should_deserializeIssueKey() {
45     String issueKey = RandomStringUtils.randomAlphanumeric(20);
46     String message = join("", SONAR_ISSUE_KEY_PREFIX, issueKey, SONAR_ISSUE_KEY_SUFFIX, "a message");
47
48     Optional<String> deserialized = SonarQubeIssueKeyFormatter.deserialize(message);
49
50     assertThat(deserialized).hasValue(issueKey);
51   }
52
53   @Test
54   public void should_notDeserializeIssueKey_when_messageHasWrongFormat() {
55     String issueKey = RandomStringUtils.randomAlphanumeric(20);
56     String messageWithoutSuffix = join("", SONAR_ISSUE_KEY_PREFIX, issueKey, "a message");
57     String messageWithoutPrefix = join("", issueKey, SONAR_ISSUE_KEY_SUFFIX, "a message");
58     String messageWithPrefixSuffixReversed = join("", SONAR_ISSUE_KEY_SUFFIX, issueKey, SONAR_ISSUE_KEY_PREFIX, "a message");
59     String messageWithNoPrefixSuffix = join("", issueKey, "a message");
60
61     assertThat(SonarQubeIssueKeyFormatter.deserialize(messageWithoutSuffix)).isEmpty();
62     assertThat(SonarQubeIssueKeyFormatter.deserialize(messageWithoutPrefix)).isEmpty();
63     assertThat(SonarQubeIssueKeyFormatter.deserialize(messageWithPrefixSuffixReversed)).isEmpty();
64     assertThat(SonarQubeIssueKeyFormatter.deserialize(messageWithNoPrefixSuffix)).isEmpty();
65   }
66 }