You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ma...@apache.org on 2011/01/31 20:59:18 UTC

svn commit: r1065734 - /felix/trunk/configadmin/src/test/java/org/apache/felix/cm/integration/FELIX2813_ConfigurationAdminStartupTest.java

Author: marrs
Date: Mon Jan 31 19:59:18 2011
New Revision: 1065734

URL: http://svn.apache.org/viewvc?rev=1065734&view=rev
Log:
FELIX-2813 This test shows the issue, even though it does not fail. If somebody knows how to make a test fail if another thread throws a NPE, feel free to jump in.

Added:
    felix/trunk/configadmin/src/test/java/org/apache/felix/cm/integration/FELIX2813_ConfigurationAdminStartupTest.java   (with props)

Added: felix/trunk/configadmin/src/test/java/org/apache/felix/cm/integration/FELIX2813_ConfigurationAdminStartupTest.java
URL: http://svn.apache.org/viewvc/felix/trunk/configadmin/src/test/java/org/apache/felix/cm/integration/FELIX2813_ConfigurationAdminStartupTest.java?rev=1065734&view=auto
==============================================================================
--- felix/trunk/configadmin/src/test/java/org/apache/felix/cm/integration/FELIX2813_ConfigurationAdminStartupTest.java (added)
+++ felix/trunk/configadmin/src/test/java/org/apache/felix/cm/integration/FELIX2813_ConfigurationAdminStartupTest.java Mon Jan 31 19:59:18 2011
@@ -0,0 +1,82 @@
+package org.apache.felix.cm.integration;
+
+import static org.ops4j.pax.exam.CoreOptions.mavenBundle;
+import static org.ops4j.pax.exam.CoreOptions.options;
+import static org.ops4j.pax.exam.CoreOptions.provision;
+
+import java.io.IOException;
+import java.util.Properties;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.ops4j.pax.exam.Option;
+import org.ops4j.pax.exam.junit.Configuration;
+import org.ops4j.pax.exam.junit.JUnit4TestRunner;
+import org.osgi.framework.Bundle;
+import org.osgi.framework.BundleContext;
+import org.osgi.framework.BundleException;
+import org.osgi.framework.Constants;
+import org.osgi.framework.InvalidSyntaxException;
+import org.osgi.framework.ServiceEvent;
+import org.osgi.framework.ServiceListener;
+import org.osgi.framework.ServiceReference;
+import org.osgi.service.cm.ConfigurationAdmin;
+import org.osgi.service.cm.ConfigurationEvent;
+import org.osgi.service.cm.ConfigurationListener;
+
+@RunWith(JUnit4TestRunner.class)
+public class FELIX2813_ConfigurationAdminStartupTest implements ServiceListener, ConfigurationListener {
+    private volatile BundleContext m_context;
+
+    @Configuration
+    public static Option[] configuration() {
+        return options(
+            provision(
+                mavenBundle().groupId("org.apache.felix").artifactId("org.apache.felix.configadmin").version("1.2.8").noStart()
+            )
+        );
+    }    
+
+    @Test
+    public void testAddConfigurationWhenConfigurationAdminStarts(BundleContext context) throws InvalidSyntaxException, BundleException {
+        m_context = context;
+        m_context.registerService(ConfigurationListener.class.getName(), this, null);
+        m_context.addServiceListener(this, "(" + Constants.OBJECTCLASS + "=" + ConfigurationAdmin.class.getName() + ")");
+        Bundle[] bundles = m_context.getBundles();
+        for (Bundle b : bundles) {
+            if (b.getSymbolicName().equals("org.apache.felix.configadmin")) {
+                b.start();
+            }
+        }
+        
+        /*
+         * Look at the console output for the following exception:
+         * 
+         * *ERROR* Unexpected problem executing task
+         * java.lang.NullPointerException: reference and pid must not be null
+         *     at org.osgi.service.cm.ConfigurationEvent.<init>(ConfigurationEvent.java:120)
+         *     at org.apache.felix.cm.impl.ConfigurationManager$FireConfigurationEvent.run(ConfigurationManager.java:1818)
+         *     at org.apache.felix.cm.impl.UpdateThread.run(UpdateThread.java:104)
+         *     at java.lang.Thread.run(Thread.java:680)
+         *     
+         * It is in fact the service reference that is still null, because the service registration
+         * has not been 'set' yet.
+         */
+    }
+
+    public void serviceChanged(ServiceEvent event) {
+        if (event.getType() == ServiceEvent.REGISTERED) {
+            ServiceReference ref = event.getServiceReference();
+            ConfigurationAdmin ca = (ConfigurationAdmin) m_context.getService(ref);
+            try {
+                org.osgi.service.cm.Configuration config = ca.getConfiguration("test");
+                config.update(new Properties() {{ put("abc", "123"); }});
+            }
+            catch (IOException e) {
+            }
+        }
+    }
+
+    public void configurationEvent(ConfigurationEvent event) {
+    }
+}

Propchange: felix/trunk/configadmin/src/test/java/org/apache/felix/cm/integration/FELIX2813_ConfigurationAdminStartupTest.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain