/* * 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 org.junit.Test; import static org.junit.Assert.*; /** * */ public class MapMessageTest { @Test public void testMap() { final String testMsg = "Test message {}"; final MapMessage msg = new MapMessage(); msg.put("message", testMsg); msg.put("project", "Log4j"); final String result = msg.getFormattedMessage(); final String expected = "message=\"Test message {}\" project=\"Log4j\""; assertEquals(expected, result); } @Test public void testBuilder() { final String testMsg = "Test message {}"; final MapMessage msg = new MapMessage() .with("message", testMsg) .with("project", "Log4j"); final String result = msg.getFormattedMessage(); final String expected = "message=\"Test message {}\" project=\"Log4j\""; assertEquals(expected, result); } @Test public void testXML() { final String testMsg = "Test message {}"; final MapMessage msg = new MapMessage(); msg.put("message", testMsg); msg.put("project", "Log4j"); final String result = msg.getFormattedMessage(new String[]{"XML"}); final String expected = "<Map>\n <Entry key=\"message\">Test message {}</Entry>\n" + " <Entry key=\"project\">Log4j</Entry>\n" + "</Map>"; assertEquals(expected, result); } @Test public void testJSON() { final String testMsg = "Test message {}"; final MapMessage msg = new MapMessage(); msg.put("message", testMsg); msg.put("project", "Log4j"); final String result = msg.getFormattedMessage(new String[]{"JSON"}); final String expected = "{\"message\":\"Test message {}\", \"project\":\"Log4j\"}"; assertEquals(expected, result); } @Test public void testJava() { final String testMsg = "Test message {}"; final MapMessage msg = new MapMessage(); msg.put("message", testMsg); msg.put("project", "Log4j"); final String result = msg.getFormattedMessage(new String[]{"Java"}); final String expected = "{message=\"Test message {}\", project=\"Log4j\"}"; assertEquals(expected, result); } @Test public void testMutableByDesign() { // LOG4J2-763 final MapMessage msg = new MapMessage(); // modify parameter before calling msg.getFormattedMessage msg.put("key1", "value1"); msg.put("key2", "value2"); final String result = msg.getFormattedMessage(new String[]{"Java"}); final String expected = "{key1=\"value1\", key2=\"value2\"}"; assertEquals(expected, result); // modify parameter after calling msg.getFormattedMessage msg.put("key3", "value3"); final String result2 = msg.getFormattedMessage(new String[]{"Java"}); final String expected2 = "{key1=\"value1\", key2=\"value2\", key3=\"value3\"}"; assertEquals(expected2, result2); } }