Search in sources :

Example 21 with Settings

use of org.sonar.api.config.Settings in project sonarqube by SonarSource.

the class DefaultDatabaseTest method shouldStart.

@Test
public void shouldStart() {
    Settings settings = new MapSettings();
    settings.setProperty("sonar.jdbc.url", "jdbc:h2:mem:sonar");
    settings.setProperty("sonar.jdbc.driverClassName", "org.h2.Driver");
    settings.setProperty("sonar.jdbc.username", "sonar");
    settings.setProperty("sonar.jdbc.password", "sonar");
    settings.setProperty("sonar.jdbc.maxActive", "1");
    DefaultDatabase db = new DefaultDatabase(logbackHelper, settings);
    db.start();
    db.stop();
    assertThat(db.getDialect().getId()).isEqualTo("h2");
    assertThat(((BasicDataSource) db.getDataSource()).getMaxActive()).isEqualTo(1);
}
Also used : MapSettings(org.sonar.api.config.MapSettings) BasicDataSource(org.apache.commons.dbcp.BasicDataSource) Settings(org.sonar.api.config.Settings) MapSettings(org.sonar.api.config.MapSettings) Test(org.junit.Test)

Example 22 with Settings

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);
}
Also used : MapSettings(org.sonar.api.config.MapSettings) Settings(org.sonar.api.config.Settings) MapSettings(org.sonar.api.config.MapSettings) Test(org.junit.Test)

Example 23 with Settings

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));
}
Also used : MapSettings(org.sonar.api.config.MapSettings) Settings(org.sonar.api.config.Settings) MapSettings(org.sonar.api.config.MapSettings) Date(java.util.Date) Test(org.junit.Test)

Example 24 with Settings

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);
}
Also used : MapSettings(org.sonar.api.config.MapSettings) Settings(org.sonar.api.config.Settings) MapSettings(org.sonar.api.config.MapSettings) Test(org.junit.Test)

Example 25 with Settings

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;
}
Also used : Settings(org.sonar.api.config.Settings)

Aggregations

Settings (org.sonar.api.config.Settings)50 MapSettings (org.sonar.api.config.MapSettings)43 Test (org.junit.Test)39 Before (org.junit.Before)5 Languages (org.sonar.api.resources.Languages)5 FileExclusions (org.sonar.api.scan.filesystem.FileExclusions)5 DefaultLanguagesRepository (org.sonar.scanner.repository.language.DefaultLanguagesRepository)5 LanguagesRepository (org.sonar.scanner.repository.language.LanguagesRepository)5 IndexedFile (org.sonar.api.batch.fs.IndexedFile)4 DefaultIndexedFile (org.sonar.api.batch.fs.internal.DefaultIndexedFile)4 File (java.io.File)3 String.format (java.lang.String.format)3 TransportClient (org.elasticsearch.client.transport.TransportClient)3 PropertyDto (org.sonar.db.property.PropertyDto)3 InetAddress (java.net.InetAddress)2 Assertions.assertThat (org.assertj.core.api.Assertions.assertThat)2 Condition (org.assertj.core.api.Condition)2 TransportAddress (org.elasticsearch.common.transport.TransportAddress)2 Rule (org.junit.Rule)2 ExpectedException (org.junit.rules.ExpectedException)2