/* * 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.flume.source; import com.google.common.base.Charsets; import org.apache.flume.Channel; import org.apache.flume.ChannelSelector; import org.apache.flume.Context; import org.apache.flume.Event; import org.apache.flume.Transaction; import org.apache.flume.channel.ChannelProcessor; import org.apache.flume.channel.MemoryChannel; import org.apache.flume.channel.ReplicatingChannelSelector; import org.apache.flume.conf.Configurables; import org.joda.time.DateTime; import org.junit.Assert; import org.junit.Test; import org.slf4j.LoggerFactory; import java.io.IOException; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetAddress; import java.net.InetSocketAddress; import java.net.SocketException; import java.net.UnknownHostException; import java.util.ArrayList; import java.util.List; public class TestSyslogUdpSource { private static final org.slf4j.Logger logger = LoggerFactory.getLogger(TestSyslogUdpSource.class); private SyslogUDPSource source; private Channel channel; private static final int TEST_SYSLOG_PORT = 0; private final DateTime time = new DateTime(); private final String stamp1 = time.toString(); private final String host1 = "localhost.localdomain"; private final String data1 = "test syslog data"; private final String bodyWithHostname = host1 + " " + data1; private final String bodyWithTimestamp = stamp1 + " " + data1; private final String bodyWithTandH = "<10>" + stamp1 + " " + host1 + " " + data1; private void init(String keepFields) { source = new SyslogUDPSource(); channel = new MemoryChannel(); Configurables.configure(channel, new Context()); List<Channel> channels = new ArrayList<Channel>(); channels.add(channel); ChannelSelector rcs = new ReplicatingChannelSelector(); rcs.setChannels(channels); source.setChannelProcessor(new ChannelProcessor(rcs)); Context context = new Context(); context.put("host", InetAddress.getLoopbackAddress().getHostAddress()); context.put("port", String.valueOf(TEST_SYSLOG_PORT)); context.put("keepFields", keepFields); source.configure(context); } /** Tests the keepFields configuration parameter (enabled or disabled) using SyslogUDPSource.*/ private void runKeepFieldsTest(String keepFields) throws IOException { init(keepFields); source.start(); // Write some message to the syslog port DatagramPacket datagramPacket = createDatagramPacket(bodyWithTandH.getBytes()); for (int i = 0; i < 10 ; i++) { sendDatagramPacket(datagramPacket); } List<Event> channelEvents = new ArrayList<>(); Transaction txn = channel.getTransaction(); txn.begin(); for (int i = 0; i < 10; i++) { Event e = channel.take(); Assert.assertNotNull(e); channelEvents.add(e); } commitAndCloseTransaction(txn); source.stop(); for (Event e : channelEvents) { Assert.assertNotNull(e); String str = new String(e.getBody(), Charsets.UTF_8); logger.info(str); if (keepFields.equals("true") || keepFields.equals("all")) { Assert.assertArrayEquals(bodyWithTandH.trim().getBytes(), e.getBody()); } else if (keepFields.equals("false") || keepFields.equals("none")) { Assert.assertArrayEquals(data1.getBytes(), e.getBody()); } else if (keepFields.equals("hostname")) { Assert.assertArrayEquals(bodyWithHostname.getBytes(), e.getBody()); } else if (keepFields.equals("timestamp")) { Assert.assertArrayEquals(bodyWithTimestamp.getBytes(), e.getBody()); } } } @Test public void testLargePayload() throws Exception { init("true"); source.start(); // Write some message to the syslog port byte[] largePayload = getPayload(1000).getBytes(); DatagramPacket datagramPacket = createDatagramPacket(largePayload); for (int i = 0; i < 10 ; i++) { sendDatagramPacket(datagramPacket); } List<Event> channelEvents = new ArrayList<>(); Transaction txn = channel.getTransaction(); txn.begin(); for (int i = 0; i < 10; i++) { Event e = channel.take(); Assert.assertNotNull(e); channelEvents.add(e); } commitAndCloseTransaction(txn); source.stop(); for (Event e : channelEvents) { Assert.assertNotNull(e); Assert.assertArrayEquals(largePayload, e.getBody()); } } @Test public void testKeepFields() throws IOException { runKeepFieldsTest("all"); // Backwards compatibility runKeepFieldsTest("true"); } @Test public void testRemoveFields() throws IOException { runKeepFieldsTest("none"); // Backwards compatibility runKeepFieldsTest("false"); } @Test public void testKeepHostname() throws IOException { runKeepFieldsTest("hostname"); } @Test public void testKeepTimestamp() throws IOException { runKeepFieldsTest("timestamp"); } @Test public void testSourceCounter() throws Exception { init("true"); source.start(); DatagramPacket datagramPacket = createDatagramPacket("test".getBytes()); sendDatagramPacket(datagramPacket); Transaction txn = channel.getTransaction(); txn.begin(); channel.take(); commitAndCloseTransaction(txn); // Retrying up to 10 times while the acceptedCount == 0 because the event processing in // SyslogUDPSource is handled on a separate thread by Netty so message delivery, // thus the sourceCounter's increment can be delayed resulting in a flaky test for (int i = 0; i < 10 && source.getSourceCounter().getEventAcceptedCount() == 0; i++) { Thread.sleep(100); } Assert.assertEquals(1, source.getSourceCounter().getEventAcceptedCount()); Assert.assertEquals(1, source.getSourceCounter().getEventReceivedCount()); } private DatagramPacket createDatagramPacket(byte[] payload) { InetSocketAddress addr = source.getBoundAddress(); return new DatagramPacket(payload, payload.length, addr.getAddress(), addr.getPort()); } private void sendDatagramPacket(DatagramPacket datagramPacket) throws IOException { try (DatagramSocket syslogSocket = new DatagramSocket()) { syslogSocket.send(datagramPacket); } } private void commitAndCloseTransaction(Transaction txn) { try { txn.commit(); } catch (Throwable t) { logger.error("Transaction commit failed, rolling back", t); txn.rollback(); } finally { txn.close(); } } private String getPayload(int length) { StringBuilder payload = new StringBuilder(length); for (int n = 0; n < length; ++n) { payload.append("x"); } return payload.toString(); } }