blob: 35bee32d1022247a16edbf92a9c0c85c961b54b5 [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.logging.log4j.core.pattern;
import org.apache.logging.log4j.Level;
import org.apache.logging.log4j.core.LogEvent;
import org.apache.logging.log4j.core.LoggerContext;
import org.apache.logging.log4j.core.impl.Log4jLogEvent;
import org.apache.logging.log4j.message.SimpleMessage;
import org.apache.logging.log4j.util.Strings;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class EqualsReplacementConverterTest {
private static final String TEST_MESSAGE = "This is a test";
@Test
public void testMarkerReplacement() {
testReplacement("%marker", Strings.EMPTY);
}
@Test
public void testMarkerSimpleNameReplacement() {
testReplacement("%markerSimpleName", Strings.EMPTY);
}
@Test
public void testLoggerNameReplacement() {
testReplacement("%logger", "[" + EqualsReplacementConverterTest.class.getName() + "]");
}
@Test
public void testMarkerReplacementWithMessage() {
testReplacement(TEST_MESSAGE, new String[]{"[%marker]", "[]", "%msg"});
}
private void testReplacement(final String tag, final String expectedValue) {
final String[] options = new String[]{"[" + tag + "]", "[]", expectedValue};
testReplacement(expectedValue, options);
}
private void testReplacement(final String expectedValue, final String[] options) {
final LogEvent event = Log4jLogEvent.newBuilder() //
.setLoggerName(EqualsReplacementConverterTest.class.getName()) //
.setLevel(Level.DEBUG) //
.setMessage(new SimpleMessage(TEST_MESSAGE)) //
.build();
final StringBuilder sb = new StringBuilder();
final LoggerContext ctx = LoggerContext.getContext();
final EqualsReplacementConverter converter = EqualsReplacementConverter.newInstance(ctx.getConfiguration(),
options);
assertNotNull(converter);
converter.format(event, sb);
assertEquals(expectedValue, sb.toString());
}
@Test
public void testParseSubstitutionWithPattern() {
testParseSubstitution("%msg", TEST_MESSAGE);
}
@Test
public void testParseSubstitutionWithoutPattern() {
final String substitution = "test";
testParseSubstitution(substitution, substitution);
}
@Test
public void testParseSubstitutionEmpty() {
testParseSubstitution("", "");
}
@Test
public void testParseSubstitutionWithWhiteSpaces() {
testParseSubstitution(" ", " ");
}
private void testParseSubstitution(final String substitution, final String expected) {
final LogEvent event = Log4jLogEvent.newBuilder()
.setLoggerName(EqualsReplacementConverterTest.class.getName())
.setLevel(Level.DEBUG)
.setMessage(new SimpleMessage(TEST_MESSAGE))
.build();
final LoggerContext ctx = LoggerContext.getContext();
final EqualsReplacementConverter converter = EqualsReplacementConverter.newInstance(ctx.getConfiguration(),
new String[]{"[%marker]", "[]", substitution});
final StringBuilder sb = new StringBuilder();
assertNotNull(converter);
converter.parseSubstitution(event, sb);
final String actual = sb.toString();
assertEquals(expected, actual);
}
}