commit 39af9fea5f508d5a817726691985a87416e3f9f6 Author: phymbert Date: Wed Feb 15 21:32:41 2017 +0300 LOG4J2-1804 Unit test diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/rolling/RollingAppenderSizeNoCompressTest.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/rolling/RollingAppenderSizeNoCompressTest.java new file mode 100644 index 0000000..03472ac --- /dev/null +++ b/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/rolling/RollingAppenderSizeNoCompressTest.java @@ -0,0 +1,97 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 org.apache.logging.log4j.core.appender.rolling; + +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + +import java.io.ByteArrayOutputStream; +import java.io.File; +import java.io.FileInputStream; +import java.nio.charset.Charset; +import java.util.ArrayList; +import java.util.List; +import java.util.concurrent.TimeUnit; + +import org.apache.commons.compress.utils.IOUtils; +import org.apache.logging.log4j.Logger; +import org.apache.logging.log4j.junit.LoggerContextRule; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.RuleChain; + +/** + * LOG4J2-1804. + */ +public class RollingAppenderSizeNoCompressTest { + + private static final String CONFIG = "log4j-rolling-size.xml"; + + private static final String DIR = "target/rolling1"; + + public static LoggerContextRule loggerContextRule = LoggerContextRule.createShutdownTimeoutLoggerContextRule(CONFIG); + + @Rule + public RuleChain chain = loggerContextRule.withCleanFoldersRule(DIR); + + private Logger logger; + + @Before + public void setUp() throws Exception { + this.logger = loggerContextRule.getLogger(RollingAppenderSizeNoCompressTest.class.getName()); + } + + @Test + public void testAppender() throws Exception { + List messages = new ArrayList<>(); + for (int i=0; i < 1000; ++i) { + String message = "This is test message number " + i; + messages.add(message); + logger.debug(message); + if (i % 100 == 0) { + Thread.sleep(500); + } + } + if (!loggerContextRule.getLoggerContext().stop(30, TimeUnit.SECONDS)) { + System.err.println("Could not stop cleanly " + loggerContextRule + " for " + this); + } + final File dir = new File(DIR); + assertTrue("Directory not created", dir.exists()); + final File[] files = dir.listFiles(); + assertNotNull(files); + for (File file : files) { + final ByteArrayOutputStream baos = new ByteArrayOutputStream(); + try (FileInputStream fis = new FileInputStream(file)) { + try { + IOUtils.copy(fis, baos); + } catch (final Exception ex) { + ex.printStackTrace(); + fail("Unable to read " + file.getAbsolutePath()); + } + } + final String text = new String(baos.toByteArray(), Charset.defaultCharset()); + final String[] lines = text.split("[\\r\\n]+"); + for (final String line : lines) { + messages.remove(line); + } + } + assertTrue("Log messages lost : " + messages.size(), messages.isEmpty()); + assertTrue("Files not rolled : " + files.length, files.length > 2); + } +} diff --git a/log4j-core/src/test/resources/log4j-rolling-size.xml b/log4j-core/src/test/resources/log4j-rolling-size.xml new file mode 100644 index 0000000..9760f40 --- /dev/null +++ b/log4j-core/src/test/resources/log4j-rolling-size.xml @@ -0,0 +1,58 @@ + + + + + target/rolling1/rollingtest.log + + + + + + + + + + %m%n + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file