blob: 68029ba10b82fe30cc2cb60cee4a872649bfdd4b [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.karaf.decanter.itests.collector;
import org.apache.karaf.itests.KarafTestSupport;
import org.apache.karaf.jaas.boot.principal.RolePrincipal;
import org.apache.log4j.Category;
import org.apache.log4j.Level;
import org.apache.log4j.spi.LoggingEvent;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.ops4j.pax.exam.Configuration;
import org.ops4j.pax.exam.Option;
import org.ops4j.pax.exam.junit.PaxExam;
import org.ops4j.pax.exam.karaf.options.KarafDistributionOption;
import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy;
import org.ops4j.pax.exam.spi.reactors.PerClass;
import org.osgi.service.event.Event;
import org.osgi.service.event.EventConstants;
import org.osgi.service.event.EventHandler;
import java.io.ObjectOutputStream;
import java.net.ConnectException;
import java.net.Socket;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Hashtable;
import java.util.List;
import java.util.stream.Stream;
@RunWith(PaxExam.class)
@ExamReactorStrategy(PerClass.class)
public class Log4jSocketCollectorTest extends KarafTestSupport {
@Configuration
public Option[] config() {
Option[] options = new Option[]{
KarafDistributionOption.editConfigurationFilePut("etc/system.properties", "decanter.version", System.getProperty("decanter.version"))
};
return Stream.of(super.config(), options).flatMap(Stream::of).toArray(Option[]::new);
}
@Test(timeout = 60000)
public void test() throws Exception {
// install decanter
System.out.println(executeCommand("feature:repo-add decanter " + System.getProperty("decanter.version")));
System.out.println(executeCommand("feature:install decanter-collector-log-socket", new RolePrincipal("admin")));
// create event handler
List<Event> received = new ArrayList();
EventHandler eventHandler = new EventHandler() {
@Override
public void handleEvent(Event event) {
received.add(event);
}
};
Hashtable serviceProperties = new Hashtable();
serviceProperties.put(EventConstants.EVENT_TOPIC, "decanter/collect/*");
bundleContext.registerService(EventHandler.class, eventHandler, serviceProperties);
LoggingEvent loggingEvent = new LoggingEvent("test", Category.getInstance("logger"), System.currentTimeMillis(), Level.toLevel("INFO"), "Test", "thread", null, "test", null, new HashMap());
Socket socket = null;
while (socket == null) {
Thread.sleep(100);
try {
socket = new Socket("localhost", 4560);
} catch (ConnectException connectException) {
// wait
}
}
try (ObjectOutputStream objectOutputStream = new ObjectOutputStream(socket.getOutputStream())) {
objectOutputStream.writeObject(loggingEvent);
}
while (received.size() == 0) {
Thread.sleep(500);
}
System.out.println("");
for (int i = 0; i < received.size(); i++) {
for (String property : received.get(i).getPropertyNames()) {
System.out.println(property + " = " + received.get(i).getProperty(property));
}
System.out.println("========");
}
System.out.println("");
Assert.assertEquals(1, received.size());
Assert.assertEquals("decanter/collect/log/logger", received.get(0).getTopic());
Assert.assertEquals("INFO", received.get(0).getProperty("level"));
Assert.assertEquals("log", received.get(0).getProperty("type"));
Assert.assertEquals("Test", received.get(0).getProperty("message"));
Assert.assertEquals("thread", received.get(0).getProperty("threadName"));
Assert.assertEquals("root", received.get(0).getProperty("karafName"));
Assert.assertEquals("logger", received.get(0).getProperty("loggerName"));
Assert.assertEquals("Test", received.get(0).getProperty("renderedMessage"));
}
}