blob: 485c8cdd4384b4ca75553458486f9ad18b3bb3b1 [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.config;
import java.io.File;
import java.net.URI;
import org.apache.logging.log4j.core.LoggerContext;
import org.junit.Assert;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
public class ConfiguratorTest {
@Test
public void testInitializeFromAbsoluteFilePath() {
final String path = new File("src/test/resources/log4j-list.xml").getAbsolutePath();
testInitializeFromFilePath(path);
}
@Test
public void testInitializeFromRelativeFilePath() {
final String path = new File("src/test/resources/log4j-list.xml").toString();
testInitializeFromFilePath(path);
}
@Test
public void testReconfigure() {
final String path = new File("src/test/resources/log4j-list.xml").getAbsolutePath();
try (final LoggerContext loggerContext = Configurator.initialize(getClass().getName(), null, path)) {
assertNotNull(loggerContext.getConfiguration().getAppender("List"));
URI uri = loggerContext.getConfigLocation();
assertNotNull("No configuration location returned", uri);
Configurator.reconfigure();
assertEquals("Unexpected configuration location returned", uri, loggerContext.getConfigLocation());
}
}
@Test
public void testReconfigureFromPath() {
final String path = new File("src/test/resources/log4j-list.xml").getAbsolutePath();
try (final LoggerContext loggerContext = Configurator.initialize(getClass().getName(), null, path)) {
assertNotNull(loggerContext.getConfiguration().getAppender("List"));
URI uri = loggerContext.getConfigLocation();
assertNotNull("No configuration location returned", uri);
final URI location = new File("src/test/resources/log4j2-config.xml").toURI();
Configurator.reconfigure(location);
assertEquals("Unexpected configuration location returned", location, loggerContext.getConfigLocation());
}
}
private void testInitializeFromFilePath(final String path) {
try (final LoggerContext loggerContext = Configurator.initialize(getClass().getName(), null, path)) {
Assert.assertNotNull(loggerContext.getConfiguration().getAppender("List"));
}
}
}