use of com.hotels.styx.StartupConfig in project styx by ExpediaGroup.
the class StartupConfigHandlerTest method outputsExpectedData.
@Test
public void outputsExpectedData() {
StartupConfig startupConfig = newStartupConfigBuilder().styxHome("/foo").configFileLocation("/bar/configure-me.yml").logbackConfigLocation("/baz/logback-conf.xml").build();
StartupConfigHandler handler = new StartupConfigHandler(startupConfig);
HttpResponse response = Mono.from(handler.handle(get("/").build(), requestContext())).block();
assertThat(response.status(), is(OK));
assertThat(response.bodyAs(UTF_8), matchesRegex("<html><body>" + "Styx Home='[/\\\\]foo'" + "<br />Config File Location='.*[/\\\\]bar[/\\\\]configure-me.yml'" + "<br />Log Config Location='.*[/\\\\]baz[/\\\\]logback-conf.xml'" + "</body></html>"));
}
use of com.hotels.styx.StartupConfig 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));
}
use of com.hotels.styx.StartupConfig in project styx by ExpediaGroup.
the class LoggingConfigurationHandlerTest method showsErrorMessageInContentIfLogConfigFileDoesNotExist.
@Test
public void showsErrorMessageInContentIfLogConfigFileDoesNotExist() {
StartupConfig startupConfig = newStartupConfigBuilder().logbackConfigLocation("/foo/bar").build();
LoggingConfigurationHandler handler = new LoggingConfigurationHandler(startupConfig.logConfigLocation());
HttpResponse response = Mono.from(handler.handle(get("/").build(), requestContext())).block();
assertThat(response.status(), is(OK));
assertThat(response.bodyAs(UTF_8), matchesRegex("Could not load resource=.*foo[\\\\/]bar'"));
}
Aggregations