/* * 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 static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import org.apache.logging.log4j.Level; import org.apache.logging.log4j.core.appender.FileAppender; import org.apache.logging.log4j.core.config.Configuration; import org.apache.logging.log4j.core.filter.CompositeFilter; import org.apache.logging.log4j.core.filter.ThresholdFilter; import org.apache.logging.log4j.junit.LoggerContextRule; import org.junit.Assert; import org.junit.Before; import org.junit.ClassRule; import org.junit.Test; /** * */ public class CustomLevelsWithFiltersTest { private static final String CONFIG = "log4j-customLevelsWithFilters.xml"; @ClassRule public static LoggerContextRule context = new LoggerContextRule(CONFIG); private Level infom1Level; private Level infop1Level; @Before public void before() { infom1Level = Level.getLevel("INFOM1"); infop1Level = Level.getLevel("INFOP1"); } @Test public void testConfiguration() { final Configuration configuration = context.getConfiguration(); assertNotNull(configuration); final FileAppender appender = configuration.getAppender("info"); assertNotNull(appender); final CompositeFilter compFilter = (CompositeFilter) appender.getFilter(); assertNotNull(compFilter); final Filter[] filters = compFilter.getFiltersArray(); assertNotNull(filters); boolean foundLevel = false; for (final Filter filter : filters) { final ThresholdFilter tFilter = (ThresholdFilter) filter; if (infom1Level.equals(tFilter.getLevel())) { foundLevel = true; break; } } Assert.assertTrue("Level not found: " + infom1Level, foundLevel); } @Test public void testCustomLevelInts() { assertEquals(399, infom1Level.intLevel()); assertEquals(401, infop1Level.intLevel()); } @Test public void testCustomLevelPresence() { assertNotNull(infom1Level); assertNotNull(infop1Level); } }