summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/tags/2.0.1-RC1/modules/core-spi/src/test/java/org/apache/tuscany/sca/context/DefaultContextFactoryExtensionPointTestCase.java
blob: 6486a5ed4f5fa44a17ed42f6c23a9d843790a7f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
 * 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.apache.tuscany.sca.core.DefaultExtensionPointRegistry;
import org.apache.tuscany.sca.core.ExtensionPointRegistry;
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();

        ExtensionPointRegistry registry = new DefaultExtensionPointRegistry();

        // Register the factories
        DefaultContextFactoryExtensionPoint ctxFactory = new DefaultContextFactoryExtensionPoint(registry);
        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() {

        ExtensionPointRegistry registry = new DefaultExtensionPointRegistry();
        DefaultContextFactoryExtensionPoint ctxFactory = new DefaultContextFactoryExtensionPoint(registry);
        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() {
        ExtensionPointRegistry registry = new DefaultExtensionPointRegistry();
        DefaultContextFactoryExtensionPoint ctxFactory = new DefaultContextFactoryExtensionPoint(registry);
        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() {
        ExtensionPointRegistry registry = new DefaultExtensionPointRegistry();
        DefaultContextFactoryExtensionPoint ctxFactory = new DefaultContextFactoryExtensionPoint(registry);
        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) {
        ExtensionPointRegistry registry = new DefaultExtensionPointRegistry();
        DefaultContextFactoryExtensionPoint ctxFactory = new DefaultContextFactoryExtensionPoint(registry);

        // 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 {
    }
}