Skip to content

Commit

Permalink
[17] Create a simple log consumer which writes the container logs to …
Browse files Browse the repository at this point in the history
…a logger.

Signed-off-by: James R. Perkins <[email protected]>
  • Loading branch information
jamezp committed Jul 2, 2024
1 parent 1420ef7 commit f3e0706
Showing 1 changed file with 75 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
/*
* Copyright The Arquillian Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.jboss.arquillian.testcontainers.api;

import java.util.function.Consumer;
import java.util.logging.Logger;

import org.testcontainers.containers.output.OutputFrame;

/**
* A simple consumer for containers which logs the container lines to a {@linkplain Logger logger}.
*
* @author <a href="mailto:[email protected]">James R. Perkins</a>
*/
public class LoggingConsumer implements Consumer<OutputFrame> {

private final Logger logger;

/**
* Creates a new logger with the name of {@link Class#getName()}.
*
* @param type the type to extract the name from
*/
public LoggingConsumer(final Class<?> type) {
this(type.getName());
}

/**
* Creates a new logger with the name passed in.
*
* @param name the name for the logger
*/
public LoggingConsumer(final String name) {
this.logger = Logger.getLogger(name);
}

/**
* Creates a new logger with the name of {@link Class#getName()}.
*
* @param type the type to extract the name from
*/
public static LoggingConsumer of(final Class<?> type) {
return new LoggingConsumer(type);
}

/**
* Creates a new logger with the name passed in.
*
* @param name the name for the logger
*/
public static LoggingConsumer of(final String name) {
return new LoggingConsumer(name);
}

@Override
public void accept(final OutputFrame outputFrame) {
final OutputFrame.OutputType outputType = outputFrame.getType();
final String utf8String = outputFrame.getUtf8StringWithoutLineEnding();
switch (outputType) {
case END:
break;
case STDOUT:
logger.info(utf8String);
break;
case STDERR:
logger.severe(utf8String);
break;
default:
throw new IllegalArgumentException("Unexpected outputType " + outputType);
}
}
}

0 comments on commit f3e0706

Please sign in to comment.