Package hivemind.test.lib

Source Code of hivemind.test.lib.TestSpringObjectProvider

// Copyright 2004, 2005 The Apache Software Foundation
//
// Licensed 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 hivemind.test.lib;

import org.apache.hivemind.Registry;
import org.apache.hivemind.lib.SpringBeanFactoryHolder;
import org.apache.hivemind.lib.impl.SpringObjectProvider;
import org.apache.hivemind.xml.XmlTestCase;
import org.easymock.MockControl;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.ClassPathResource;

/**
* @author Howard M. Lewis Ship
* @since 1.1
*/
public class TestSpringObjectProvider extends XmlTestCase
{
    public void testBasic()
    {
        Object bean = new Object();
        MockControl control = newControl(BeanFactory.class);
        BeanFactory bf = (BeanFactory) control.getMock();

        bf.getBean("fred");
        control.setReturnValue(bean);

        replayControls();

        SpringObjectProvider p = new SpringObjectProvider();
        p.setBeanFactory(bf);

        Object result = p.provideObject(null, null, "fred", null);

        assertSame(bean, result);

        verifyControls();
    }

    public void testSpringIntegration() throws Exception
    {
        // Spring setup

        ClassPathResource springBeansResource = new ClassPathResource("SpringBeans.xml",
                TestSpringLookupFactory.class);

        BeanFactory beanFactory = new XmlBeanFactory(springBeansResource);

        Registry r = buildFrameworkRegistry("SpringProvider.xml");

        SpringBeanFactoryHolder h = (SpringBeanFactoryHolder) r.getService(
                "hivemind.lib.DefaultSpringBeanFactoryHolder",
                SpringBeanFactoryHolder.class);

        h.setBeanFactory(beanFactory);

        SimpleService a = (SimpleService) r.getService(
                "hivemind.test.lib.Adder",
                SimpleService.class);

        assertEquals(17, a.add(9, 8));
    }
}
TOP

Related Classes of hivemind.test.lib.TestSpringObjectProvider

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.