]> source.dussan.org Git - sonarqube.git/blob
48b20950211c3808aa164551ed5d96950c474bf8
[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.ce.task.projectanalysis.analysis;
21
22 import org.junit.Rule;
23 import org.junit.Test;
24 import org.sonar.api.config.Configuration;
25 import org.sonar.api.config.internal.MapSettings;
26 import org.sonar.ce.task.projectanalysis.component.DefaultBranchImpl;
27 import org.sonar.db.DbTester;
28 import org.sonar.db.component.ComponentDto;
29
30 import static org.assertj.core.api.Assertions.assertThat;
31 import static org.sonar.db.property.PropertyTesting.newComponentPropertyDto;
32
33 public class ProjectConfigurationFactoryTest {
34
35   private static final String PROJECT_KEY = "PROJECT_KEY";
36
37   @Rule
38   public DbTester db = DbTester.create();
39
40   private MapSettings settings = new MapSettings();
41
42   private ProjectConfigurationFactory underTest = new ProjectConfigurationFactory(settings, db.getDbClient());
43
44   @Test
45   public void return_global_settings() {
46     settings.setProperty("key", "value");
47     Configuration config = underTest.newProjectConfiguration(PROJECT_KEY, new DefaultBranchImpl());
48
49     assertThat(config.get("key")).hasValue("value");
50   }
51
52   @Test
53   public void return_project_settings() {
54     ComponentDto project = db.components().insertPrivateProject();
55     db.properties().insertProperties(
56       newComponentPropertyDto(project).setKey("1").setValue("val1"),
57       newComponentPropertyDto(project).setKey("2").setValue("val2"),
58       newComponentPropertyDto(project).setKey("3").setValue("val3"));
59
60     Configuration config = underTest.newProjectConfiguration(project.getDbKey(), new DefaultBranchImpl());
61
62     assertThat(config.get("1")).hasValue("val1");
63     assertThat(config.get("2")).hasValue("val2");
64     assertThat(config.get("3")).hasValue("val3");
65   }
66
67   @Test
68   public void project_settings_override_global_settings() {
69     settings.setProperty("key", "value");
70     ComponentDto project = db.components().insertPrivateProject();
71     db.properties().insertProperties(newComponentPropertyDto(project).setKey("key").setValue("value2"));
72
73     Configuration projectConfig = underTest.newProjectConfiguration(project.getDbKey(), new DefaultBranchImpl());
74
75     assertThat(projectConfig.get("key")).hasValue("value2");
76   }
77 }