blob: e82666a0ab911d1259ceae9b64ff97d689264f2c [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 org.apache.logging.log4j.Level;
import org.apache.logging.log4j.Marker;
import org.apache.logging.log4j.core.LogEvent;
import org.apache.logging.log4j.message.Message;
import org.junit.Test;
import java.util.Calendar;
import java.util.Map;
import java.util.Stack;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertEquals;
/**
*
*/
public class DateLookupTest {
@Test
public void testLookup() {
StrLookup lookup = new DateLookup();
LogEvent event = new MyLogEvent();
String value = lookup.lookup(event, "MM/dd/yyyy");
assertNotNull(value);
assertEquals("12/30/2011", value);
}
private class MyLogEvent implements LogEvent {
public Level getLevel() {
return null;
}
public String getLoggerName() {
return null;
}
public StackTraceElement getSource() {
return null;
}
public Message getMessage() {
return null;
}
public Marker getMarker() {
return null;
}
public String getThreadName() {
return null;
}
public long getMillis() {
Calendar cal = Calendar.getInstance();
cal.set(2011, 11, 30, 10, 56, 35);
return cal.getTimeInMillis();
}
public Throwable getThrown() {
return null;
}
public Map<String, String> getContextMap() {
return null;
}
public Stack<String> getContextStack() {
return null;
}
public String getFQCN() {
return null;
}
}
}