blob: 37417cdf90766dc55a45a16b4520a080ed2a4f09 [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.tamaya.spisupport;
import org.apache.tamaya.spi.ConfigurationContext;
import org.apache.tamaya.spi.FilterContext;
import org.apache.tamaya.spi.PropertyValue;
import java.util.HashMap;
import java.util.Map;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for {@link RegexPropertyFilter}. Created by anatole on 11.02.16.
*/
public class RegexPropertyFilterTest {
private static PropertyValue prop1 = PropertyValue.of("test1", "test1", "test");
private static PropertyValue prop2 = PropertyValue.of("test2", "test2", "test");
private static PropertyValue prop3 = PropertyValue.of("test1.test3", "test.test3", "test");
private static ConfigurationContext configContext = ConfigurationContext.EMPTY;
@org.junit.Test
public void testFilterProperty() throws Exception {
RegexPropertyFilter filter = new RegexPropertyFilter();
filter.setIncludes("test1.*");
Map<String,PropertyValue> map = new HashMap<>();
map.put(prop1.getKey(), prop1);
map.put(prop2.getKey(), prop2);
map.put(prop3.getKey(), prop3);
FilterContext ctx = new FilterContext(prop1, configContext);
assertThat(filter.filterProperty(prop1, ctx)).isEqualTo(prop1);
assertThat(filter.filterProperty(prop2, ctx)).isNull();
assertThat(filter.filterProperty(
prop3, ctx)).isEqualTo(prop3);
assertThat(filter.filterProperty(
prop3, ctx)).isEqualTo(prop3);
filter = new RegexPropertyFilter();
filter.setIncludes("test1.*");
assertThat(filter.filterProperty(prop1, ctx)).isNotNull();
assertThat(filter.filterProperty(prop2, ctx)).isNull();
assertThat(filter.filterProperty(prop3, ctx)).isNotNull();
filter = new RegexPropertyFilter();
filter.setExcludes("test1.*");
assertThat(filter.filterProperty(prop1, ctx)).isNull();
assertThat(filter.filterProperty(prop2, ctx)).isEqualTo(prop2);
assertThat(filter.filterProperty(prop3, ctx)).isNull();
filter = new RegexPropertyFilter();
filter.setIncludes("test1.*"); //Includes overrides Excludes
filter.setExcludes("test1.*");
assertThat(filter.filterProperty(prop1, ctx)).isNotNull();
assertThat(filter.filterProperty(prop2, ctx)).isNull();
assertThat(filter.filterProperty(prop3, ctx)).isNotNull();
}
@org.junit.Test
public void testToString() throws Exception {
RegexPropertyFilter filter = new RegexPropertyFilter();
filter.setIncludes("test\\..*");
assertThat(filter.toString()).contains("test\\..*", "RegexPropertyFilter");
}
}