use of org.sonar.api.config.Settings in project sonarqube by SonarSource.
the class DefaultDatabaseTest method shouldGuessDialectFromUrl.
@Test
public void shouldGuessDialectFromUrl() {
Settings settings = new MapSettings();
settings.setProperty("sonar.jdbc.url", "jdbc:postgresql://localhost/sonar");
DefaultDatabase database = new DefaultDatabase(logbackHelper, settings);
database.initSettings();
assertThat(database.getDialect().getId()).isEqualTo(PostgreSql.ID);
}
use of org.sonar.api.config.Settings in project sonarqube by SonarSource.
the class PurgeConfigurationTest method do_not_delete_directory_by_default.
@Test
public void do_not_delete_directory_by_default() {
Settings settings = new MapSettings();
settings.setProperty(PurgeConstants.PROPERTY_CLEAN_DIRECTORY, false);
settings.setProperty(PurgeConstants.DAYS_BEFORE_DELETING_CLOSED_ISSUES, 5);
Date now = new Date();
PurgeConfiguration underTest = PurgeConfiguration.newDefaultPurgeConfiguration(settings, new IdUuidPair(42L, "any-uuid"), Collections.emptyList());
assertThat(underTest.scopesWithoutHistoricalData()).contains(Scopes.FILE).doesNotContain(Scopes.DIRECTORY);
assertThat(underTest.maxLiveDateOfClosedIssues(now)).isEqualTo(DateUtils.addDays(now, -5));
}
use of org.sonar.api.config.Settings in project sonarqube by SonarSource.
the class PurgeConfigurationTest method delete_directory_if_in_settings.
@Test
public void delete_directory_if_in_settings() {
Settings settings = new MapSettings();
settings.setProperty(PurgeConstants.PROPERTY_CLEAN_DIRECTORY, true);
PurgeConfiguration underTest = PurgeConfiguration.newDefaultPurgeConfiguration(settings, new IdUuidPair(42L, "any-uuid"), Collections.emptyList());
assertThat(underTest.scopesWithoutHistoricalData()).contains(Scopes.DIRECTORY, Scopes.FILE);
}
use of org.sonar.api.config.Settings in project sonarqube by SonarSource.
the class ProjectSettingsFactory method newProjectSettings.
public Settings newProjectSettings(String projectKey) {
Settings projectSettings = new ProjectSettings(globalSettings);
dbClient.propertiesDao().selectProjectProperties(projectKey).forEach(property -> projectSettings.setProperty(property.getKey(), property.getValue()));
return projectSettings;
}
use of org.sonar.api.config.Settings in project sonarqube by SonarSource.
the class ProjectSettingsFactoryTest method return_project_settings.
@Test
public void return_project_settings() {
when(dbClient.propertiesDao().selectProjectProperties(PROJECT_KEY)).thenReturn(newArrayList(new PropertyDto().setKey("1").setValue("val1"), new PropertyDto().setKey("2").setValue("val2"), new PropertyDto().setKey("3").setValue("val3")));
Settings projectSettings = underTest.newProjectSettings(PROJECT_KEY);
assertThat(projectSettings.getString("1")).isEqualTo("val1");
assertThat(projectSettings.getString("2")).isEqualTo("val2");
assertThat(projectSettings.getString("3")).isEqualTo("val3");
}
Aggregations