/* * 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.felix.dm.itest.api; import java.util.Map; import java.util.SortedMap; import java.util.TreeMap; import org.apache.felix.dm.Component; import org.apache.felix.dm.DependencyManager; import org.apache.felix.dm.itest.util.Ensure; import org.apache.felix.dm.itest.util.TestBase; import org.junit.Assert; import org.osgi.service.cm.ConfigurationAdmin; /** * This test validates that we can register in the actual configuration an empty map for overriding a non empty default * map that the configuration type has defined by default. * * Example: if the configuration type provides a default map value {foo=bar} for property "map", and if * there is a "map={}" entry in the actual configuration, then the empty map should be returned instead of {foo=bar}. */ public class FELIX5401_OverrideDefaultListConfigTypeWithEmptyMap extends TestBase { Ensure m_ensure = new Ensure(); public void testDefaulValues() { DependencyManager m = getDM(); ConfigurationCreator configurator = new ConfigurationCreator(m_ensure, MyConfig.class.getName(), 1, "map={}"); Component confCreator = m.createComponent() .setImplementation(configurator) .add(m.createServiceDependency().setService(ConfigurationAdmin.class).setRequired(true)); Component myComponent = m.createComponent() .setImplementation(new MyComponent()) .add(m.createConfigurationDependency().setCallback("updated", MyConfig.class).setRequired(true)); // register an empty configuration. m.add(confCreator); m_ensure.waitForStep(1, 5000); // create the component: since there is no value for the map in the actual configuration, then default map // provided by the configuration type default method should be returned. m.add(myComponent); m_ensure.waitForStep(2, 5000); } public interface MyConfig { public default SortedMap<String, String> getMap() { SortedMap<String, String> defaultMap = new TreeMap<>(); defaultMap.put("foo", "bar"); return defaultMap; } } public class MyComponent { void updated(MyConfig cnf) { if (cnf != null) { Map<String, String> map = cnf.getMap(); Assert.assertEquals(0, map.size()); // the actual configuration contains "map={}" and default "map={foo=bar}" must not be returned m_ensure.step(2); } } } }