/* * Copyright 2014 Higher Frequency Trading * * http://www.higherfrequencytrading.com * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package net.openhft.chronicle.logger.logback; import ch.qos.logback.classic.spi.ILoggingEvent; import org.junit.Before; import org.junit.Test; import java.io.IOException; import static org.junit.Assert.*; public class LogbackIndexedChronicleConfigTest extends LogbackTestBase { @Before public void setup() { System.setProperty( "logback.configurationFile", System.getProperty("resources.path") + "/logback-indexed-chronicle-config.xml" ); } // ************************************************************************* // // ************************************************************************* @Test public void testBinaryIndexedChronicleAppenderConfig() throws IOException { final String loggerName = "config-binary-indexed-chronicle"; final String appenderName = "CONFIG-BINARY-INDEXED-CHRONICLE"; try { final ch.qos.logback.classic.Logger logger = getLoggerContext().getLogger(loggerName); assertNotNull(logger); final ch.qos.logback.core.Appender<ILoggingEvent> appender = logger.getAppender(appenderName); assertNotNull(appender); assertTrue(appender instanceof BinaryIndexedChronicleAppender); BinaryIndexedChronicleAppender ba = (BinaryIndexedChronicleAppender) appender; assertEquals(128, ba.getChronicleConfig().getIndexBlockSize()); assertFalse(ba.getChronicleConfig().isUseCompressedObjectSerializer()); } finally { } } @Test public void testTextIndexedChronicleAppenderConfig() throws IOException { final String loggerName = "config-text-indexed-chronicle"; final String appenderName = "CONFIG-TEXT-INDEXED-CHRONICLE"; try { final ch.qos.logback.classic.Logger logger = getLoggerContext().getLogger(loggerName); assertNotNull(logger); final ch.qos.logback.core.Appender<ILoggingEvent> appender = logger.getAppender(appenderName); assertNotNull(appender); assertTrue(appender instanceof TextIndexedChronicleAppender); TextIndexedChronicleAppender ba = (TextIndexedChronicleAppender)appender; assertEquals(128, ba.getChronicleConfig().getIndexBlockSize()); assertFalse(ba.getChronicleConfig().isUseCompressedObjectSerializer()); assertNotNull(ba.getDateFormat()); } finally { //ChronicleTools.deleteOnExit(basePath(loggerName)); } } }