blob: 34be2e93c8803c28d37a66b01d34fa4dd0e876d3 [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.kafka.log4jappender;
import org.apache.kafka.common.config.ConfigException;
import org.apache.log4j.Logger;
import org.apache.log4j.PropertyConfigurator;
import org.junit.Assert;
import org.junit.Test;
import java.io.UnsupportedEncodingException;
import java.util.Properties;
public class KafkaLog4jAppenderTest {
Logger logger = Logger.getLogger(KafkaLog4jAppenderTest.class);
@Test
public void testKafkaLog4jConfigs() {
// host missing
Properties props = new Properties();
props.put("log4j.rootLogger", "INFO");
props.put("log4j.appender.KAFKA", "org.apache.kafka.log4jappender.KafkaLog4jAppender");
props.put("log4j.appender.KAFKA.layout", "org.apache.log4j.PatternLayout");
props.put("log4j.appender.KAFKA.layout.ConversionPattern", "%-5p: %c - %m%n");
props.put("log4j.appender.KAFKA.Topic", "test-topic");
props.put("log4j.logger.kafka.log4j", "INFO, KAFKA");
try {
PropertyConfigurator.configure(props);
Assert.fail("Missing properties exception was expected !");
} catch (ConfigException ex) {
// It's OK!
}
// topic missing
props = new Properties();
props.put("log4j.rootLogger", "INFO");
props.put("log4j.appender.KAFKA", "org.apache.kafka.log4jappender.KafkaLog4jAppender");
props.put("log4j.appender.KAFKA.layout", "org.apache.log4j.PatternLayout");
props.put("log4j.appender.KAFKA.layout.ConversionPattern", "%-5p: %c - %m%n");
props.put("log4j.appender.KAFKA.brokerList", "127.0.0.1:9093");
props.put("log4j.logger.kafka.log4j", "INFO, KAFKA");
try {
PropertyConfigurator.configure(props);
Assert.fail("Missing properties exception was expected !");
} catch (ConfigException ex) {
// It's OK!
}
}
@Test
public void testLog4jAppends() throws UnsupportedEncodingException {
PropertyConfigurator.configure(getLog4jConfig());
for (int i = 1; i <= 5; ++i) {
logger.error(getMessage(i));
}
Assert.assertEquals(
5, ((MockKafkaLog4jAppender) (logger.getRootLogger().getAppender("KAFKA"))).getHistory().size());
}
private byte[] getMessage(int i) throws UnsupportedEncodingException {
return ("test_" + i).getBytes("UTF-8");
}
private Properties getLog4jConfig() {
Properties props = new Properties();
props.put("log4j.rootLogger", "INFO, KAFKA");
props.put("log4j.appender.KAFKA", "org.apache.kafka.log4jappender.MockKafkaLog4jAppender");
props.put("log4j.appender.KAFKA.layout", "org.apache.log4j.PatternLayout");
props.put("log4j.appender.KAFKA.layout.ConversionPattern", "%-5p: %c - %m%n");
props.put("log4j.appender.KAFKA.BrokerList", "127.0.0.1:9093");
props.put("log4j.appender.KAFKA.Topic", "test-topic");
props.put("log4j.appender.KAFKA.RequiredNumAcks", "1");
props.put("log4j.appender.KAFKA.SyncSend", "false");
props.put("log4j.logger.kafka.log4j", "INFO, KAFKA");
return props;
}
}