]> source.dussan.org Git - sonarqube.git/blob
26fe4fddfdc8bad7aba12a4b663a6190b09ea242
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 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.computation.task.projectanalysis.component;
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.api.utils.System2;
27 import org.sonar.ce.queue.CeTask;
28 import org.sonar.ce.settings.ProjectConfigurationFactory;
29 import org.sonar.db.DbClient;
30 import org.sonar.db.DbTester;
31 import org.sonar.db.ce.CeTaskTypes;
32 import org.sonar.db.component.ComponentDto;
33 import org.sonar.db.property.PropertyDto;
34
35 import static org.assertj.core.api.Assertions.assertThat;
36 import static org.sonar.server.computation.task.projectanalysis.component.Component.Type.PROJECT;
37
38 public class ConfigurationRepositoryTest {
39
40   private static final Component ROOT = ReportComponent.builder(PROJECT, 1).setKey("ROOT").build();
41   private static final CeTask TASK = new CeTask.Builder()
42     .setOrganizationUuid("foo")
43     .setUuid("bar")
44     .setType(CeTaskTypes.REPORT)
45     .setComponentUuid(ROOT.getUuid())
46     .setComponentKey(ROOT.getKey())
47     .build();
48
49   @Rule
50   public final DbTester db = DbTester.create(System2.INSTANCE);
51
52   private DbClient dbClient = db.getDbClient();
53   private MapSettings globalSettings = new MapSettings();
54   private ConfigurationRepository underTest = new ConfigurationRepositoryImpl(TASK, new ProjectConfigurationFactory(globalSettings, dbClient));
55
56   @Test
57   public void get_project_settings_from_global_settings() {
58     globalSettings.setProperty("key", "value");
59
60     Configuration config = underTest.getConfiguration();
61
62     assertThat(config.get("key")).hasValue("value");
63   }
64
65   @Test
66   public void get_project_settings_from_db() {
67     ComponentDto project = db.components().insertPrivateProject(p -> p.setDbKey(ROOT.getKey()));
68     insertProjectProperty(project, "key", "value");
69
70     Configuration config = underTest.getConfiguration();
71
72     assertThat(config.get("key")).hasValue("value");
73   }
74
75   @Test
76   public void call_twice_get_project_settings() {
77     globalSettings.setProperty("key", "value");
78
79     Configuration config = underTest.getConfiguration();
80     assertThat(config.get("key")).hasValue("value");
81
82     config = underTest.getConfiguration();
83     assertThat(config.get("key")).hasValue("value");
84   }
85
86   @Test
87   public void project_settings_override_global_settings() {
88     globalSettings.setProperty("key", "value1");
89     ComponentDto project = db.components().insertPrivateProject(p -> p.setDbKey(ROOT.getKey()));
90     insertProjectProperty(project, "key", "value2");
91
92     Configuration config = underTest.getConfiguration();
93     assertThat(config.get("key")).hasValue("value2");
94   }
95
96   @Test
97   public void project_settings_are_cached_to_avoid_db_access() {
98     ComponentDto project = db.components().insertPrivateProject(p -> p.setDbKey(ROOT.getKey()));
99     insertProjectProperty(project, "key", "value");
100
101     Configuration config = underTest.getConfiguration();
102     assertThat(config.get("key")).hasValue("value");
103
104     db.executeUpdateSql("delete from properties");
105     db.commit();
106
107     assertThat(config.get("key")).hasValue("value");
108   }
109
110   private void insertProjectProperty(ComponentDto project, String propertyKey, String propertyValue) {
111     db.properties().insertProperties(new PropertyDto().setKey(propertyKey).setValue(propertyValue).setResourceId(project.getId()));
112   }
113 }