blob: 9e00582e429721346ff70259768c2e3fb2a8acac [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.filter;
import org.apache.logging.log4j.Level;
import org.apache.logging.log4j.core.Filter;
import org.apache.logging.log4j.core.impl.Log4jLogEvent;
import org.apache.logging.log4j.core.LogEvent;
import org.junit.Test;
import java.util.Calendar;
import java.util.TimeZone;
import static org.junit.Assert.assertTrue;
/**
*
*/
public class TimeFilterTest {
@Test
public void testTime() {
TimeFilter filter = TimeFilter.createFilter("02:00:00", "03:00:00", "America/LosAngeles", null, null);
filter.start();
assertTrue(filter.isStarted());
Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("America/LosAngeles"));
cal.set(Calendar.HOUR_OF_DAY, 02);
long tod = cal.getTimeInMillis();
LogEvent event = new Log4jLogEvent(null, null, null, null, null, null, null, null, null, null, tod);
assertTrue(filter.filter(null, Level.ERROR, null, null, (Throwable)null) == Filter.Result.NEUTRAL);
assertTrue(filter.filter(event) == Filter.Result.NEUTRAL);
cal.roll(Calendar.DAY_OF_MONTH, true);
tod = cal.getTimeInMillis();
event = new Log4jLogEvent(null, null, null, null, null, null, null, null, null, null, tod);
assertTrue(filter.filter(event) == Filter.Result.NEUTRAL);
cal.set(Calendar.HOUR_OF_DAY, 04);
tod = cal.getTimeInMillis();
event = new Log4jLogEvent(null, null, null, null, null, null, null, null, null, null, tod);
assertTrue(filter.filter(event) == Filter.Result.DENY);
}
}