blob: 8f762785d26134f9e7476441b7c8d9256748fab1 [file] [log] [blame]
/*
* 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.async;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.logging.log4j.core.categories.AsyncLoggers;
import org.apache.logging.log4j.core.CoreLoggerContexts;
import org.apache.logging.log4j.core.LoggerContext;
import org.apache.logging.log4j.core.config.ConfigurationFactory;
import org.apache.logging.log4j.core.selector.ContextSelector;
import org.apache.logging.log4j.core.util.Constants;
import org.apache.logging.log4j.util.Strings;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.net.URI;
import java.util.Collections;
import java.util.List;
import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.CoreMatchers.not;
import static org.hamcrest.CoreMatchers.nullValue;
import static org.hamcrest.MatcherAssert.assertThat;
@Category(AsyncLoggers.class)
public class AsyncLoggerCustomSelectorLocationTest {
@BeforeClass
public static void beforeClass() {
final File file = new File("target", "AsyncLoggerCustomSelectorLocationTest.log");
file.delete();
System.setProperty(Constants.LOG4J_CONTEXT_SELECTOR,
CustomAsyncContextSelector.class.getName());
System.setProperty(ConfigurationFactory.CONFIGURATION_FILE_PROPERTY,
"AsyncLoggerCustomSelectorLocationTest.xml");
}
@AfterClass
public static void afterClass() {
System.setProperty(Constants.LOG4J_CONTEXT_SELECTOR, Strings.EMPTY);
}
@Test
public void testCustomAsyncSelectorLocation() throws Exception {
final File file = new File("target", "AsyncLoggerCustomSelectorLocationTest.log");
final Logger log = LogManager.getLogger("com.foo.Bar");
final Logger logIncludingLocation = LogManager.getLogger("com.include.location.Bar");
final String msg = "Async logger msg with location";
log.info(msg);
logIncludingLocation.info(msg);
CoreLoggerContexts.stopLoggerContext(false, file); // stop async thread
final BufferedReader reader = new BufferedReader(new FileReader(file));
final String firstLine = reader.readLine();
final String secondLine = reader.readLine();
final String thirdLine = reader.readLine();
reader.close();
file.delete();
// By default we expect location to be disabled
assertThat(firstLine, containsString(msg));
assertThat(firstLine, not(containsString("testCustomAsyncSelectorLocation")));
// Configuration allows us to retain location
assertThat(secondLine, containsString(msg));
assertThat(secondLine, containsString("testCustomAsyncSelectorLocation"));
assertThat(thirdLine, nullValue());
}
public static final class CustomAsyncContextSelector implements ContextSelector {
private static final LoggerContext CONTEXT = new AsyncLoggerContext("AsyncDefault");
@Override
public LoggerContext getContext(String fqcn, ClassLoader loader, boolean currentContext) {
return CONTEXT;
}
@Override
public LoggerContext getContext(String fqcn, ClassLoader loader, boolean currentContext, URI configLocation) {
return CONTEXT;
}
@Override
public List<LoggerContext> getLoggerContexts() {
return Collections.singletonList(CONTEXT);
}
@Override
public void removeContext(LoggerContext context) {
// does not remove anything
}
@Override
public boolean isClassLoaderDependent() {
return false;
}
}
}