blob: 019bd69c001112f5af225ca68d3490f1b4b37b0a [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.message;
import java.io.Serializable;
import java.util.Locale;
import org.apache.commons.lang3.SerializationUtils;
import org.apache.logging.log4j.junit.Mutable;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.parallel.ResourceAccessMode;
import org.junit.jupiter.api.parallel.ResourceLock;
import org.junit.jupiter.api.parallel.Resources;
import static org.junit.jupiter.api.Assertions.*;
/**
* Tests LocalizedMessage.
*/
@ResourceLock(value = Resources.LOCALE, mode = ResourceAccessMode.READ)
public class LocalizedMessageTest {
private <T extends Serializable> T roundtrip(final T msg) {
return SerializationUtils.roundtrip(msg);
}
@Test
public void testMessageFormat() {
final LocalizedMessage msg = new LocalizedMessage("MF", new Locale("en", "US"), "msg1", new Object[] { "1", "Test" });
assertEquals("This is test number 1 with string argument Test.", msg.getFormattedMessage());
}
@Test
public void testSerializationMessageFormat() {
final LocalizedMessage msg = new LocalizedMessage("MF", new Locale("en", "US"), "msg1", new Object[] { "1", "Test" });
assertEquals("This is test number 1 with string argument Test.", msg.getFormattedMessage());
final LocalizedMessage msg2 = roundtrip(msg);
assertEquals("This is test number 1 with string argument Test.", msg2.getFormattedMessage());
}
@Test
public void testSerializationStringFormat() {
final LocalizedMessage msg = new LocalizedMessage("SF", new Locale("en", "US"), "msg1", new Object[] { "1", "Test" });
assertEquals("This is test number 1 with string argument Test.", msg.getFormattedMessage());
final LocalizedMessage msg2 = roundtrip(msg);
assertEquals("This is test number 1 with string argument Test.", msg2.getFormattedMessage());
}
@Test
public void testStringFormat() {
final LocalizedMessage msg = new LocalizedMessage("SF", new Locale("en", "US"), "msg1", new Object[] { "1", "Test" });
assertEquals("This is test number 1 with string argument Test.", msg.getFormattedMessage());
}
@Test
public void testUnsafeWithMutableParams() { // LOG4J2-763
final String testMsg = "Test message %s";
final Mutable param = new Mutable().set("abc");
final LocalizedMessage msg = new LocalizedMessage(testMsg, param);
// modify parameter before calling msg.getFormattedMessage
param.set("XYZ");
final String actual = msg.getFormattedMessage();
assertEquals("Test message XYZ", actual, "Expected most recent param value");
}
@Test
public void testSafeAfterGetFormattedMessageIsCalled() { // LOG4J2-763
final String testMsg = "Test message %s";
final Mutable param = new Mutable().set("abc");
final LocalizedMessage msg = new LocalizedMessage(testMsg, param);
// modify parameter after calling msg.getFormattedMessage
msg.getFormattedMessage();
param.set("XYZ");
final String actual = msg.getFormattedMessage();
assertEquals("Test message abc", actual, "Should use initial param value");
}
}