/* * 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.solr.handler.admin; import org.apache.log4j.Level; import org.apache.log4j.Logger; import org.apache.solr.SolrTestCaseJ4; import org.apache.solr.common.params.CommonParams; import org.apache.solr.common.util.SuppressForbidden; import org.apache.solr.logging.log4j.Log4jInfo; import org.junit.BeforeClass; import org.junit.Test; @SuppressForbidden(reason = "test uses log4j because it tests output at a specific level") public class LoggingHandlerTest extends SolrTestCaseJ4 { // TODO: This only tests Log4j at the moment, as that's what's defined // through the CoreContainer. // TODO: Would be nice to throw an exception on trying to set a // log level that doesn't exist @BeforeClass public static void beforeClass() throws Exception { initCore("solrconfig.xml", "schema.xml"); } @Test public void testLogLevelHandlerOutput() throws Exception { Logger tst = Logger.getLogger("org.apache.solr.SolrTestCaseJ4"); tst.setLevel(Level.INFO); Log4jInfo wrap = new Log4jInfo(tst.getName(), tst); assertQ("Show Log Levels OK", req(CommonParams.QT,"/admin/logging") ,"//arr[@name='loggers']/lst/str[.='"+wrap.getName()+"']/../str[@name='level'][.='"+wrap.getLevel()+"']" ,"//arr[@name='loggers']/lst/str[.='org.apache']/../null[@name='level']" ); assertQ("Set and remove a level", req(CommonParams.QT,"/admin/logging", "set", "org.xxx.yyy.abc:null", "set", "org.xxx.yyy.zzz:TRACE") ,"//arr[@name='loggers']/lst/str[.='org.xxx.yyy.zzz']/../str[@name='level'][.='TRACE']" ); } }