Search in sources :

Example 1 with ClasspathResource

use of com.hotels.styx.common.io.ClasspathResource in project styx by ExpediaGroup.

the class LoggingConfigurationHandlerTest method showsLogConfigContent.

@Test
public void showsLogConfigContent() throws IOException {
    StartupConfig startupConfig = newStartupConfigBuilder().logbackConfigLocation(fixturesHome() + "/conf/environment/styx-config-test.yml").build();
    LoggingConfigurationHandler handler = new LoggingConfigurationHandler(startupConfig.logConfigLocation());
    HttpResponse response = Mono.from(handler.handle(get("/").build(), requestContext())).block();
    String expected = Resources.load(new ClasspathResource("conf/environment/styx-config-test.yml", LoggingConfigurationHandlerTest.class));
    assertThat(response.status(), is(OK));
    assertThat(response.bodyAs(UTF_8), is(expected));
}
Also used : ClasspathResource(com.hotels.styx.common.io.ClasspathResource) HttpResponse(com.hotels.styx.api.HttpResponse) StartupConfig(com.hotels.styx.StartupConfig) Test(org.junit.jupiter.api.Test)

Aggregations

StartupConfig (com.hotels.styx.StartupConfig)1 HttpResponse (com.hotels.styx.api.HttpResponse)1 ClasspathResource (com.hotels.styx.common.io.ClasspathResource)1 Test (org.junit.jupiter.api.Test)1