Search in sources :

Example 6 with JadConfig

use of com.github.joschi.jadconfig.JadConfig in project graylog2-server by Graylog2.

the class BaseConfigurationTest method restTlsValidationFailsIfCertificateIsDirectory.

@Test
public void restTlsValidationFailsIfCertificateIsDirectory() throws Exception {
    final File privateKey = temporaryFolder.newFile("graylog.key");
    final File certificate = temporaryFolder.newFolder("graylog.crt");
    validProperties.put("rest_enable_tls", "true");
    validProperties.put("rest_tls_key_file", privateKey.getAbsolutePath());
    validProperties.put("rest_tls_cert_file", certificate.getAbsolutePath());
    assertThat(certificate.isDirectory()).isTrue();
    expectedException.expect(ValidationException.class);
    expectedException.expectMessage("Unreadable or missing REST API X.509 certificate: ");
    new JadConfig(new InMemoryRepository(validProperties), new Configuration()).process();
}
Also used : JadConfig(com.github.joschi.jadconfig.JadConfig) InMemoryRepository(com.github.joschi.jadconfig.repositories.InMemoryRepository) File(java.io.File) Test(org.junit.Test)

Example 7 with JadConfig

use of com.github.joschi.jadconfig.JadConfig in project graylog2-server by Graylog2.

the class BaseConfigurationTest method webTlsValidationFailsIfPrivateKeyIsDirectory.

@Test
public void webTlsValidationFailsIfPrivateKeyIsDirectory() throws Exception {
    final File privateKey = temporaryFolder.newFolder("graylog.key");
    final File certificate = temporaryFolder.newFile("graylog.crt");
    validProperties.put("web_enable_tls", "true");
    validProperties.put("web_tls_key_file", privateKey.getAbsolutePath());
    validProperties.put("web_tls_cert_file", certificate.getAbsolutePath());
    assertThat(privateKey.isDirectory()).isTrue();
    expectedException.expect(ValidationException.class);
    expectedException.expectMessage("Unreadable or missing web interface private key: ");
    new JadConfig(new InMemoryRepository(validProperties), new Configuration()).process();
}
Also used : JadConfig(com.github.joschi.jadconfig.JadConfig) InMemoryRepository(com.github.joschi.jadconfig.repositories.InMemoryRepository) File(java.io.File) Test(org.junit.Test)

Example 8 with JadConfig

use of com.github.joschi.jadconfig.JadConfig in project graylog2-server by Graylog2.

the class BaseConfigurationTest method testRestTransportUriWildcardKeepsPath.

@Test
public void testRestTransportUriWildcardKeepsPath() throws RepositoryException, ValidationException {
    validProperties.put("rest_listen_uri", "http://0.0.0.0:12900/api/");
    validProperties.put("rest_transport_uri", "http://0.0.0.0:12900/api/");
    Configuration configuration = new Configuration();
    new JadConfig(new InMemoryRepository(validProperties), configuration).process();
    Assert.assertNotEquals(URI.create("http://0.0.0.0:12900/api/"), configuration.getRestTransportUri());
    Assert.assertEquals("/api/", configuration.getRestTransportUri().getPath());
}
Also used : JadConfig(com.github.joschi.jadconfig.JadConfig) InMemoryRepository(com.github.joschi.jadconfig.repositories.InMemoryRepository) Test(org.junit.Test)

Example 9 with JadConfig

use of com.github.joschi.jadconfig.JadConfig in project graylog2-server by Graylog2.

the class BaseConfigurationTest method testRestTransportUriWithCustomPort.

@Test
public void testRestTransportUriWithCustomPort() throws RepositoryException, ValidationException {
    validProperties.put("rest_transport_uri", "http://example.com:12900/");
    org.graylog2.Configuration configuration = new org.graylog2.Configuration();
    new JadConfig(new InMemoryRepository(validProperties), configuration).process();
    assertThat(configuration.getRestTransportUri()).hasPort(12900);
}
Also used : JadConfig(com.github.joschi.jadconfig.JadConfig) InMemoryRepository(com.github.joschi.jadconfig.repositories.InMemoryRepository) Test(org.junit.Test)

Example 10 with JadConfig

use of com.github.joschi.jadconfig.JadConfig in project graylog2-server by Graylog2.

the class BaseConfigurationTest method testRestListenUriWildcard.

@Test
public void testRestListenUriWildcard() throws RepositoryException, ValidationException {
    validProperties.put("rest_listen_uri", "http://0.0.0.0:12900");
    Configuration configuration = new Configuration();
    new JadConfig(new InMemoryRepository(validProperties), configuration).process();
    Assert.assertNotEquals("http://0.0.0.0:12900", configuration.getDefaultRestTransportUri().toString());
    Assert.assertNotNull(configuration.getDefaultRestTransportUri());
}
Also used : JadConfig(com.github.joschi.jadconfig.JadConfig) InMemoryRepository(com.github.joschi.jadconfig.repositories.InMemoryRepository) Test(org.junit.Test)

Aggregations

JadConfig (com.github.joschi.jadconfig.JadConfig)66 InMemoryRepository (com.github.joschi.jadconfig.repositories.InMemoryRepository)65 Test (org.junit.Test)64 File (java.io.File)19 ElasticsearchConfiguration (org.graylog2.configuration.ElasticsearchConfiguration)3 Settings (org.elasticsearch.common.settings.Settings)2 RepositoryException (com.github.joschi.jadconfig.RepositoryException)1 ValidationException (com.github.joschi.jadconfig.ValidationException)1 HashMap (java.util.HashMap)1 PluginLoaderConfig (org.graylog2.plugin.PluginLoaderConfig)1