]> source.dussan.org Git - sonarqube.git/blob
08b858c2ee2b6be3915cd89c15351b7fe39ddbef
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2021 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.platform.monitoring;
21
22 import org.junit.Rule;
23 import org.junit.Test;
24 import org.sonar.db.DbTester;
25 import org.sonar.db.alm.setting.AlmSettingDto;
26 import org.sonar.process.systeminfo.protobuf.ProtobufSystemInfo;
27 import org.sonar.process.systeminfo.protobuf.ProtobufSystemInfo.Attribute;
28
29 import static org.assertj.core.api.Assertions.assertThat;
30 import static org.assertj.core.api.Assertions.tuple;
31
32 public class AlmConfigurationSectionTest {
33
34   @Rule
35   public DbTester db = DbTester.create();
36
37   private AlmConfigurationSection underTest = new AlmConfigurationSection(db.getDbClient());
38
39   @Test
40   public void alm_are_listed() {
41     AlmSettingDto azure = db.almSettings().insertAzureAlmSetting();
42     AlmSettingDto github = db.almSettings().insertGitHubAlmSetting();
43     AlmSettingDto gitlab = db.almSettings().insertGitlabAlmSetting();
44     AlmSettingDto bitbucket = db.almSettings().insertBitbucketAlmSetting();
45     AlmSettingDto bitbucketCloud = db.almSettings().insertBitbucketCloudAlmSetting();
46
47     ProtobufSystemInfo.Section section = underTest.toProtobuf();
48
49     assertThat(section.getAttributesList()).hasSize(5);
50     assertThat(section.getAttributesList())
51       .extracting(Attribute::getKey, Attribute::getStringValue)
52       .containsExactlyInAnyOrder(
53         tuple(azure.getKey(), String.format("alm:%s, url:%s", azure.getRawAlm(), azure.getUrl())),
54         tuple(github.getKey(), String.format("alm:%s, url:%s, appId:%s, clientId:%s", github.getRawAlm(), github.getUrl(), github.getAppId(), github.getClientId())),
55         tuple(gitlab.getKey(), String.format("alm:%s, url:%s", gitlab.getRawAlm(), gitlab.getUrl())),
56         tuple(bitbucket.getKey(), String.format("alm:%s, url:%s", bitbucket.getRawAlm(), bitbucket.getUrl())),
57         tuple(bitbucketCloud.getKey(), String.format("alm:%s, workspace id:%s, OAuth Key:%s", bitbucketCloud.getRawAlm(), bitbucketCloud.getAppId(), bitbucketCloud.getClientId())));
58   }
59
60   @Test
61   public void several_alm_same_type() {
62     AlmSettingDto gitlab1 = db.almSettings().insertGitlabAlmSetting();
63     AlmSettingDto gitlab2 = db.almSettings().insertGitlabAlmSetting();
64
65     ProtobufSystemInfo.Section section = underTest.toProtobuf();
66
67     assertThat(section.getAttributesList()).hasSize(2);
68     assertThat(section.getAttributesList())
69       .extracting(Attribute::getKey, Attribute::getStringValue)
70       .containsExactlyInAnyOrder(
71         tuple(gitlab1.getKey(), String.format("alm:%s, url:%s", gitlab1.getRawAlm(), gitlab1.getUrl())),
72         tuple(gitlab2.getKey(), String.format("alm:%s, url:%s", gitlab2.getRawAlm(), gitlab2.getUrl())));
73   }
74
75   @Test
76   public void null_url_are_ignored() {
77     AlmSettingDto azure = db.almSettings().insertAzureAlmSetting(a -> a.setUrl(null));
78
79     ProtobufSystemInfo.Section section = underTest.toProtobuf();
80
81     assertThat(section.getAttributesList()).hasSize(1);
82     assertThat(section.getAttributesList())
83       .extracting(Attribute::getKey, Attribute::getStringValue)
84       .containsExactlyInAnyOrder(
85         tuple(azure.getKey(), String.format("alm:%s", azure.getRawAlm())));
86   }
87
88 }