blob: ca3b8928f5ade506e8776d6d81e21930d151770f [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 java.util.Collection;
import org.apache.logging.log4j.Level;
import org.apache.logging.log4j.core.Filter;
import org.apache.logging.log4j.core.config.Configuration;
import org.apache.logging.log4j.core.util.KeyValuePair;
import org.apache.logging.log4j.core.junit.LoggerContextSource;
import org.apache.logging.log4j.message.StructuredDataMessage;
import org.apache.logging.log4j.util.IndexedReadOnlyStringMap;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class StructuredDataFilterTest {
@Test
public void testFilter() {
final KeyValuePair[] pairs = new KeyValuePair[] { new KeyValuePair("id.name", "AccountTransfer"),
new KeyValuePair("ToAccount", "123456")};
StructuredDataFilter filter = StructuredDataFilter.createFilter(pairs, "and", null, null);
assertNotNull(filter);
filter.start();
StructuredDataMessage msg = new StructuredDataMessage("AccountTransfer@18060", "Transfer Successful", "Audit");
msg.put("ToAccount", "123456");
msg.put("FromAccount", "211000");
msg.put("Amount", "1000.00");
assertTrue(filter.isStarted());
assertSame(Filter.Result.NEUTRAL, filter.filter(null, Level.DEBUG, null, msg, null));
msg.put("ToAccount", "111111");
assertSame(Filter.Result.DENY, filter.filter(null, Level.ERROR, null, msg, null));
filter = StructuredDataFilter.createFilter(pairs, "or", null, null);
assertNotNull(filter);
filter.start();
msg = new StructuredDataMessage("AccountTransfer@18060", "Transfer Successful", "Audit");
msg.put("ToAccount", "123456");
msg.put("FromAccount", "211000");
msg.put("Amount", "1000.00");
assertTrue(filter.isStarted());
assertSame(Filter.Result.NEUTRAL, filter.filter(null, Level.DEBUG, null, msg, null));
msg.put("ToAccount", "111111");
assertSame(Filter.Result.NEUTRAL, filter.filter(null, Level.ERROR, null, msg, null));
}
@Test
@LoggerContextSource("log4j2-sdfilter.xml")
public void testConfig(final Configuration config) {
final Filter filter = config.getFilter();
assertNotNull(filter, "No StructuredDataFilter");
assertTrue(filter instanceof StructuredDataFilter, "Not a StructuredDataFilter");
final StructuredDataFilter sdFilter = (StructuredDataFilter) filter;
assertFalse(sdFilter.isAnd(), "Should not be And filter");
final IndexedReadOnlyStringMap map = sdFilter.getStringMap();
assertNotNull(map, "No Map");
assertFalse(map.isEmpty(), "No elements in Map");
assertEquals(1, map.size(), "Incorrect number of elements in Map");
assertTrue(map.containsKey("eventId"), "Map does not contain key eventId");
assertEquals(2, map.<Collection<?>>getValue("eventId").size(), "List does not contain 2 elements");
}
}