Package org.apache.tuscany.core.implementation.composite

Source Code of org.apache.tuscany.core.implementation.composite.AutowireResolutionTestCase

/*
* 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.core.implementation.composite;

import org.apache.tuscany.spi.component.CompositeComponent;

import junit.framework.TestCase;
import org.easymock.EasyMock;
import static org.easymock.EasyMock.createMock;
import static org.easymock.EasyMock.eq;
import static org.easymock.EasyMock.replay;
import static org.easymock.EasyMock.verify;

/**
* Verfies specific autowire resolution scenarios
*
* @version $Rev: 451895 $ $Date: 2006-10-01 23:58:18 -0700 (Sun, 01 Oct 2006) $
*/
public class AutowireResolutionTestCase extends TestCase {

    public void testConstruction() {
        CompositeComponent parent = createMock(CompositeComponent.class);
        replay(parent);
        CompositeComponent component = new CompositeComponentImpl("test", parent, null, null);
        assertEquals("test", component.getName());
        assertSame(parent, component.getParent());
        verify(parent);
    }

    public void testResolveToSelf() {
        CompositeComponent parent = createMock(CompositeComponent.class);
        replay(parent);
        CompositeComponent component = new CompositeComponentImpl("test", parent, null, null);
        assertSame(component, component.resolveInstance(CompositeComponent.class));
        verify(parent);
    }

    public void testSystemResolveToSelf() {
        CompositeComponent parent = createMock(CompositeComponent.class);
        replay(parent);
        CompositeComponent component = new CompositeComponentImpl("test", parent, null, null);
        assertSame(component, component.resolveSystemInstance(CompositeComponent.class));
        verify(parent);
    }

    public void testResolvedByAutowire() {
        Foo foo = new Foo() {
        };
        CompositeComponent parent = createMock(CompositeComponent.class);
        EasyMock.expect(parent.resolveInstance(eq(Foo.class))).andReturn(foo);
        replay(parent);
        CompositeComponent component = new CompositeComponentImpl("test", parent, null, null);
        assertSame(foo, component.resolveInstance(Foo.class));
        verify(parent);
    }

    public void testSystemResolvedByAutowire() {
        Foo foo = new Foo() {
        };
        CompositeComponent parent = createMock(CompositeComponent.class);
        EasyMock.expect(parent.resolveSystemInstance(eq(Foo.class))).andReturn(foo);
        replay(parent);
        CompositeComponent component = new CompositeComponentImpl("test", parent, null, null);
        assertSame(foo, component.resolveSystemInstance(Foo.class));
        verify(parent);
    }

    /**
     * Verify parent resolution strategy for application services
     */
    public void testNamespaceIsolationAutowire() {
        Foo foo = new Foo() {
        };
        CompositeComponent parent = new CompositeComponentImpl("parent", null, null, null);
        parent.registerJavaObject("foo", Foo.class, foo);
        CompositeComponent component = new CompositeComponentImpl("test", parent, null, null);
        assertNull(component.resolveInstance(Foo.class));
    }

    protected void setUp() throws Exception {
        super.setUp();
    }

    public static interface Foo {
    }
}
TOP

Related Classes of org.apache.tuscany.core.implementation.composite.AutowireResolutionTestCase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.