You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by mc...@apache.org on 2008/04/10 21:52:15 UTC

svn commit: r646940 - in /incubator/tuscany/java/sca/modules/core-spi/src/test/java/org: ./ apache/ apache/tuscany/ apache/tuscany/sca/ apache/tuscany/sca/context/ apache/tuscany/sca/context/DefaultContextFactoryExtensionPointTestCase.java

Author: mcombellack
Date: Thu Apr 10 12:52:12 2008
New Revision: 646940

URL: http://svn.apache.org/viewvc?rev=646940&view=rev
Log:
TUSCANY-2216 - Added unit test for DefaultContextFactoryExtensionPoint

Added:
    incubator/tuscany/java/sca/modules/core-spi/src/test/java/org/
    incubator/tuscany/java/sca/modules/core-spi/src/test/java/org/apache/
    incubator/tuscany/java/sca/modules/core-spi/src/test/java/org/apache/tuscany/
    incubator/tuscany/java/sca/modules/core-spi/src/test/java/org/apache/tuscany/sca/
    incubator/tuscany/java/sca/modules/core-spi/src/test/java/org/apache/tuscany/sca/context/
    incubator/tuscany/java/sca/modules/core-spi/src/test/java/org/apache/tuscany/sca/context/DefaultContextFactoryExtensionPointTestCase.java   (with props)

Added: incubator/tuscany/java/sca/modules/core-spi/src/test/java/org/apache/tuscany/sca/context/DefaultContextFactoryExtensionPointTestCase.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spi/src/test/java/org/apache/tuscany/sca/context/DefaultContextFactoryExtensionPointTestCase.java?rev=646940&view=auto
==============================================================================
--- incubator/tuscany/java/sca/modules/core-spi/src/test/java/org/apache/tuscany/sca/context/DefaultContextFactoryExtensionPointTestCase.java (added)
+++ incubator/tuscany/java/sca/modules/core-spi/src/test/java/org/apache/tuscany/sca/context/DefaultContextFactoryExtensionPointTestCase.java Thu Apr 10 12:52:12 2008
@@ -0,0 +1,198 @@
+/*
+ * 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.tuscany.sca.context;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+/**
+ * This test case will test the class
+ * org.apache.tuscany.sca.context.DefaultContextFactoryExtensionPoint
+ *
+ * $Date$ $Rev$
+ */
+public class DefaultContextFactoryExtensionPointTestCase {
+
+    /**
+     * Tests adding/getting/removing a factory with no interfaces
+     */
+    @Test
+    public void testFactoryWithNoInterfaces() {
+        Object factory = new FactoryWithNoInterfaces();
+        Class<?>[] ifaces = {};
+        addGetRemoveFactory(factory, ifaces);
+    }
+
+    /**
+     * Tests adding/getting/removing a factory with one interface
+     */
+    @Test
+    public void testFactoryWithOneInterface() {
+        Object factory = new FactoryWithOneInterface();
+        Class<?>[] ifaces = { FactoryOneInterface.class };
+        addGetRemoveFactory(factory, ifaces);
+    }
+
+    /**
+     * Tests adding/getting/removing a factory with two interfaces
+     */
+    @Test
+    public void testFactoryWithTwoInterfaces() {
+        Object factory = new FactoryWithTwoInterfaces();
+        Class<?>[] ifaces = { FactoryTwoInterfacesA.class, FactoryTwoInterfacesB.class };
+        addGetRemoveFactory(factory, ifaces);
+    }
+
+    /**
+     * Tests having multiple factories registered
+     */
+    @Test
+    public void testMultipleFactories() {
+        // Create new factories
+        FactoryWithOneInterface factory1 = new FactoryWithOneInterface();
+        FactoryWithTwoInterfaces factory2 = new FactoryWithTwoInterfaces();
+
+        // Register the factories
+        DefaultContextFactoryExtensionPoint ctxFactory = new DefaultContextFactoryExtensionPoint();
+        ctxFactory.addFactory(factory1);
+        ctxFactory.addFactory(factory2);
+
+        // Re-get each of the factories
+        FactoryOneInterface regotFactory1 = ctxFactory.getFactory(FactoryOneInterface.class);
+        Assert.assertNotNull(regotFactory1);
+        Assert.assertSame(factory1, regotFactory1);
+        FactoryTwoInterfacesA regotFactory2A = ctxFactory.getFactory(FactoryTwoInterfacesA.class);
+        Assert.assertNotNull(regotFactory2A);
+        Assert.assertSame(factory2, regotFactory2A);
+        FactoryTwoInterfacesB regotFactory2B = ctxFactory.getFactory(FactoryTwoInterfacesB.class);
+        Assert.assertNotNull(regotFactory1);
+        Assert.assertSame(factory2, regotFactory2B);
+    }
+
+    /**
+     * Tests passing in null to addFactory()
+     */
+    @Test
+    public void testAddingNullFactory() {
+        DefaultContextFactoryExtensionPoint ctxFactory = new DefaultContextFactoryExtensionPoint();
+        try {
+            ctxFactory.addFactory(null);
+            Assert.fail("Should have thrown IllegalArgumentException");
+        } catch (IllegalArgumentException ex) {
+            // As expected
+        }
+    }
+
+    /**
+     * Test passing in null to removeFactory()
+     */
+    @Test
+    public void testRemovingNullFactory() {
+        DefaultContextFactoryExtensionPoint ctxFactory = new DefaultContextFactoryExtensionPoint();
+        try {
+            ctxFactory.removeFactory(null);
+            Assert.fail("Should have thrown IllegalArgumentException");
+        } catch (IllegalArgumentException ex) {
+            // As expected
+        }
+    }
+
+    /**
+     * Test passing in null to getFactory()
+     */
+    @Test
+    public void testGetNullFactory() {
+        DefaultContextFactoryExtensionPoint ctxFactory = new DefaultContextFactoryExtensionPoint();
+        try {
+            ctxFactory.getFactory(null);
+            Assert.fail("Should have thrown IllegalArgumentException");
+        } catch (IllegalArgumentException ex) {
+            // As expected
+        }
+    }
+
+    /**
+     * Utility method for testing adding and removing a factory
+     *
+     * @param factory The factory class to test
+     * @param factoryInterfaces The list of interfaces implemented by the factory
+     */
+    private void addGetRemoveFactory(Object factory, Class<?>[] factoryInterfaces) {
+        DefaultContextFactoryExtensionPoint ctxFactory = new DefaultContextFactoryExtensionPoint();
+
+        // Make sure factory not already present
+        for (Class<?> iface : factoryInterfaces) {
+            Assert.assertNull(ctxFactory.getFactory(iface));
+        }
+
+        // Add the factory
+        ctxFactory.addFactory(factory);
+
+        // Make sure we can get the factory recently registered factory
+        for (Class<?> iface : factoryInterfaces) {
+            Object regot = ctxFactory.getFactory(iface);
+            Assert.assertNotNull(regot);
+            Assert.assertSame(factory, regot);
+        }
+
+        // Remove the factory
+        ctxFactory.removeFactory(factory);
+
+        // Make sure factory is no longer registered
+        for (Class<?> iface : factoryInterfaces) {
+            Assert.assertNull(ctxFactory.getFactory(iface));
+        }
+    }
+
+    /**
+     * Simple factory with no interfaces
+     */
+    private class FactoryWithNoInterfaces {
+    }
+
+    /**
+     * Simple interface for the factory with one interface
+     */
+    private interface FactoryOneInterface {
+    }
+
+    /**
+     * Simple factory with one interface
+     */
+    private class FactoryWithOneInterface implements FactoryOneInterface {
+    }
+
+    /**
+     * Simple interface for the factory with two interfaces
+     */
+    private interface FactoryTwoInterfacesA {
+    }
+
+    /**
+     * Simple interface for the factory with two interfaces
+     */
+    private interface FactoryTwoInterfacesB {
+    }
+
+    /**
+     * Simple factory with two interfaces
+     */
+    private class FactoryWithTwoInterfaces implements FactoryTwoInterfacesA, FactoryTwoInterfacesB {
+    }
+}

Propchange: incubator/tuscany/java/sca/modules/core-spi/src/test/java/org/apache/tuscany/sca/context/DefaultContextFactoryExtensionPointTestCase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/modules/core-spi/src/test/java/org/apache/tuscany/sca/context/DefaultContextFactoryExtensionPointTestCase.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org