use of org.apache.logging.log4j.message.SimpleMessage in project logging-log4j2 by apache.
the class MarkerLookupTest method testLookupEventNonExistant.
@Test
public void testLookupEventNonExistant() {
final LogEvent event = //
Log4jLogEvent.newBuilder().setLoggerName(//
this.getClass().getName()).setLoggerFqcn(//
"org.apache.logging.log4j.core.Logger").setLevel(//
Level.INFO).setMessage(new SimpleMessage("Hello, world!")).build();
final String value = strLookup.lookup(event, ABSENT_MARKER_NAME);
assertNull(value);
}
use of org.apache.logging.log4j.message.SimpleMessage in project logging-log4j2 by apache.
the class MarkerLookupTest method testLookupEventNonExistantKey.
@Test
public void testLookupEventNonExistantKey() {
final Marker marker = MarkerManager.getMarker(markerName);
final LogEvent event = //
Log4jLogEvent.newBuilder().setLoggerName(//
this.getClass().getName()).setMarker(//
marker).setLoggerFqcn(//
"org.apache.logging.log4j.core.Logger").setLevel(//
Level.INFO).setMessage(new SimpleMessage("Hello, world!")).build();
final String value = strLookup.lookup(event, ABSENT_MARKER_NAME);
assertEquals(markerName, value);
}
use of org.apache.logging.log4j.message.SimpleMessage in project logging-log4j2 by apache.
the class MarkerLookupTest method testLookupEventExistant.
@Test
public void testLookupEventExistant() {
final Marker marker = MarkerManager.getMarker(markerName);
final LogEvent event = //
Log4jLogEvent.newBuilder().setLoggerName(//
this.getClass().getName()).setMarker(//
marker).setLoggerFqcn(//
"org.apache.logging.log4j.core.Logger").setLevel(//
Level.INFO).setMessage(new SimpleMessage("Hello, world!")).build();
final String value = strLookup.lookup(event, marker.getName());
assertEquals(markerName, value);
}
use of org.apache.logging.log4j.message.SimpleMessage in project logging-log4j2 by apache.
the class LogEventFixtures method createLogEvent.
/**
* @return a log event that uses all the bells and whistles, features, nooks and crannies
*/
static Log4jLogEvent createLogEvent() {
final Marker cMarker = MarkerManager.getMarker("Marker1");
final Marker pMarker1 = MarkerManager.getMarker("ParentMarker1");
final Marker pMarker2 = MarkerManager.getMarker("ParentMarker2");
final Marker gfMarker = MarkerManager.getMarker("GrandFatherMarker");
final Marker gmMarker = MarkerManager.getMarker("GrandMotherMarker");
cMarker.addParents(pMarker1);
cMarker.addParents(pMarker2);
pMarker1.addParents(gmMarker);
pMarker1.addParents(gfMarker);
final Exception sourceHelper = new Exception();
sourceHelper.fillInStackTrace();
final Exception cause = new NullPointerException("testNPEx");
sourceHelper.fillInStackTrace();
final StackTraceElement source = sourceHelper.getStackTrace()[0];
final IOException ioException = new IOException("testIOEx", cause);
ioException.addSuppressed(new IndexOutOfBoundsException("I am suppressed exception 1"));
ioException.addSuppressed(new IndexOutOfBoundsException("I am suppressed exception 2"));
final ThrowableProxy throwableProxy = new ThrowableProxy(ioException);
final Map<String, String> contextMap = new HashMap<>();
contextMap.put("MDC.A", "A_Value");
contextMap.put("MDC.B", "B_Value");
final DefaultThreadContextStack contextStack = new DefaultThreadContextStack(true);
contextStack.clear();
contextStack.push("stack_msg1");
contextStack.add("stack_msg2");
final Log4jLogEvent expected = //
Log4jLogEvent.newBuilder().setLoggerName(//
"a.B").setMarker(//
cMarker).setLoggerFqcn(//
"f.q.c.n").setLevel(//
Level.DEBUG).setMessage(//
new SimpleMessage("Msg")).setThrown(//
ioException).setThrownProxy(//
throwableProxy).setContextMap(//
contextMap).setContextStack(//
contextStack).setThreadName(//
"MyThreadName").setSource(//
source).setTimeMillis(1).build();
// validate event?
return expected;
}
use of org.apache.logging.log4j.message.SimpleMessage in project logging-log4j2 by apache.
the class PatternLayoutTest method testEqualsEmptyMarker.
@Test
public void testEqualsEmptyMarker() throws Exception {
// replace "[]" with the empty string
final PatternLayout layout = PatternLayout.newBuilder().withPattern("[%logger]%equals{[%marker]}{[]}{} %msg").withConfiguration(ctx.getConfiguration()).build();
// Not empty marker
final LogEvent event1 = //
Log4jLogEvent.newBuilder().setLoggerName(this.getClass().getName()).setLoggerFqcn(//
"org.apache.logging.log4j.core.Logger").setLevel(//
Level.INFO).setMarker(//
MarkerManager.getMarker("TestMarker")).setMessage(new SimpleMessage("Hello, world!")).build();
assertToByteArray("[org.apache.logging.log4j.core.layout.PatternLayoutTest][TestMarker] Hello, world!", layout, event1);
assertEncode("[org.apache.logging.log4j.core.layout.PatternLayoutTest][TestMarker] Hello, world!", layout, event1);
// empty marker
final LogEvent event2 = //
Log4jLogEvent.newBuilder().setLoggerName(this.getClass().getName()).setLoggerFqcn(//
"org.apache.logging.log4j.core.Logger").setLevel(//
Level.INFO).setMessage(new SimpleMessage("Hello, world!")).build();
assertToByteArray("[org.apache.logging.log4j.core.layout.PatternLayoutTest] Hello, world!", layout, event2);
assertEncode("[org.apache.logging.log4j.core.layout.PatternLayoutTest] Hello, world!", layout, event2);
}
Aggregations