Author: pderop
Date: Sun Nov 6 23:05:42 2016
New Revision: 1768402
URL: http://svn.apache.org/viewvc?rev=1768402&view=rev
Log:
FELIX-5401: Added test for 5401 issue.
Added:
felix/trunk/dependencymanager/org.apache.felix.dependencymanager.itest/src/org/apache/felix/dm/itest/api/FELIX5401_OverrideDefaultListConfigTypeWithEmptyMap.java
Removed:
felix/trunk/dependencymanager/org.apache.felix.dependencymanager.itest/src/org/apache/felix/dm/itest/api/FELIX5400_OverrideDefaultListConfigTypeWithEmptyMap.java
Added:
felix/trunk/dependencymanager/org.apache.felix.dependencymanager.itest/src/org/apache/felix/dm/itest/api/FELIX5401_OverrideDefaultListConfigTypeWithEmptyMap.java
URL:
http://svn.apache.org/viewvc/felix/trunk/dependencymanager/org.apache.felix.dependencymanager.itest/src/org/apache/felix/dm/itest/api/FELIX5401_OverrideDefaultListConfigTypeWithEmptyMap.java?rev=1768402&view=auto
==============================================================================
---
felix/trunk/dependencymanager/org.apache.felix.dependencymanager.itest/src/org/apache/felix/dm/itest/api/FELIX5401_OverrideDefaultListConfigTypeWithEmptyMap.java
(added)
+++
felix/trunk/dependencymanager/org.apache.felix.dependencymanager.itest/src/org/apache/felix/dm/itest/api/FELIX5401_OverrideDefaultListConfigTypeWithEmptyMap.java
Sun Nov 6 23:05:42 2016
@@ -0,0 +1,83 @@
+/*
+ * 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) {
+ 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);
+ }
+ }
+}