blob: 81261971c66863bafca3d8ab9e2de4524d1335b2 [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;
import java.util.List;
import org.apache.logging.log4j.Level;
import org.apache.logging.log4j.junit.LoggerContextRule;
import org.apache.logging.log4j.test.ExtendedLevels;
import org.apache.logging.log4j.test.appender.ListAppender;
import org.junit.Before;
import org.junit.ClassRule;
import org.junit.Test;
import static org.hamcrest.Matchers.hasSize;
import static org.junit.Assert.*;
/**
*
*/
public class ExtendedLevelTest {
private static final String CONFIG = "log4j-customLevel.xml";
private ListAppender list1;
private ListAppender list2;
@ClassRule
public static LoggerContextRule context = new LoggerContextRule(CONFIG);
@Before
public void before() {
list1 = context.getListAppender("List1").clear();
list2 = context.getListAppender("List2").clear();
}
@Test
public void testLevelLogging() {
org.apache.logging.log4j.Logger logger = context.getLogger("org.apache.logging.log4j.test1");
logger.log(ExtendedLevels.DETAIL, "Detail message");
logger.log(Level.DEBUG, "Debug message");
List<LogEvent> events = list1.getEvents();
assertNotNull("No events", events);
assertThat(events, hasSize(1));
LogEvent event = events.get(0);
assertEquals("Expected level DETAIL, got" + event.getLevel(), "DETAIL", event.getLevel().name());
logger = context.getLogger("org.apache.logging.log4j.test2");
logger.log(ExtendedLevels.NOTE, "Note message");
logger.log(Level.INFO, "Info message");
events = list2.getEvents();
assertNotNull("No events", events);
assertThat(events, hasSize(1));
event = events.get(0);
assertEquals("Expected level NOTE, got" + event.getLevel(), "NOTE", event.getLevel().name());
}
}