blob: 5fa75cfdb44c6547e5716301a81a06511912286c [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.lookup;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import org.apache.logging.log4j.ThreadContext;
import org.apache.logging.log4j.core.junit.JndiRule;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.rules.ExternalResource;
import org.junit.rules.RuleChain;
import static org.junit.Assert.*;
/**
*
*/
public class InterpolatorTest {
private static final String TESTKEY = "TestKey";
private static final String TESTKEY2 = "TestKey2";
private static final String TESTVAL = "TestValue";
private static final String TEST_CONTEXT_RESOURCE_NAME = "logging/context-name";
private static final String TEST_CONTEXT_NAME = "app-1";
@ClassRule
public static RuleChain rules = RuleChain.outerRule(new ExternalResource() {
@Override
protected void before() throws Throwable {
System.setProperty(TESTKEY, TESTVAL);
System.setProperty(TESTKEY2, TESTVAL);
}
@Override
protected void after() {
System.clearProperty(TESTKEY);
System.clearProperty(TESTKEY2);
}
}).around(new JndiRule(
JndiLookup.CONTAINER_JNDI_RESOURCE_PATH_PREFIX + TEST_CONTEXT_RESOURCE_NAME, TEST_CONTEXT_NAME));
@Test
public void testLookup() {
final Map<String, String> map = new HashMap<>();
map.put(TESTKEY, TESTVAL);
final StrLookup lookup = new Interpolator(new MapLookup(map));
ThreadContext.put(TESTKEY, TESTVAL);
String value = lookup.lookup(TESTKEY);
assertEquals(TESTVAL, value);
value = lookup.lookup("ctx:" + TESTKEY);
assertEquals(TESTVAL, value);
value = lookup.lookup("sys:" + TESTKEY);
assertEquals(TESTVAL, value);
value = lookup.lookup("SYS:" + TESTKEY2);
assertEquals(TESTVAL, value);
value = lookup.lookup("BadKey");
assertNull(value);
ThreadContext.clearMap();
value = lookup.lookup("ctx:" + TESTKEY);
assertEquals(TESTVAL, value);
value = lookup.lookup("jndi:" + TEST_CONTEXT_RESOURCE_NAME);
assertEquals(TEST_CONTEXT_NAME, value);
}
private void assertLookupNotEmpty(final StrLookup lookup, final String key) {
final String value = lookup.lookup(key);
assertNotNull(value);
assertFalse(value.isEmpty());
System.out.println(key + " = " + value);
}
@Test
public void testLookupWithDefaultInterpolator() {
final StrLookup lookup = new Interpolator();
String value = lookup.lookup("sys:" + TESTKEY);
assertEquals(TESTVAL, value);
value = lookup.lookup("env:PATH");
assertNotNull(value);
value = lookup.lookup("jndi:" + TEST_CONTEXT_RESOURCE_NAME);
assertEquals(TEST_CONTEXT_NAME, value);
value = lookup.lookup("date:yyyy-MM-dd");
assertNotNull("No Date", value);
final SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
final String today = format.format(new Date());
assertEquals(value, today);
assertLookupNotEmpty(lookup, "java:version");
assertLookupNotEmpty(lookup, "java:runtime");
assertLookupNotEmpty(lookup, "java:vm");
assertLookupNotEmpty(lookup, "java:os");
assertLookupNotEmpty(lookup, "java:locale");
assertLookupNotEmpty(lookup, "java:hw");
}
}