Package org.mule.module.ibeans.annotations

Source Code of org.mule.module.ibeans.annotations.IBeansHolderConfigBuilderTestCase

/*
* $Id: IBeansHolderConfigBuilderTestCase.java 21746 2011-04-28 22:08:54Z dandiep $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.module.ibeans.annotations;

import org.mule.module.ibeans.config.IBeanHolder;
import org.mule.module.ibeans.config.IBeansLoader;

import java.util.Collection;
import java.util.Iterator;
import java.util.Set;
import java.util.TreeSet;

import org.junit.Test;

public class IBeansHolderConfigBuilderTestCase extends AbstractIBeansTestCase
{
    @Override
    protected void doTearDown() throws Exception
    {
        System.getProperties().remove(IBeansLoader.SCAN_PACKAGES_PROPERTY);
    }

    @Test
    public void testConfigBuilder() throws Exception
    {
        Collection<IBeanHolder> col = muleContext.getRegistry().lookupObjects(IBeanHolder.class);
        //Ensure IBeanHolder is comparable
        Set<IBeanHolder> beans = new TreeSet<IBeanHolder>(col);

        int exprectedSize = 11;
        assertEquals(exprectedSize, beans.size());
        String[] ids = new String[exprectedSize];
        int i = 0;
        for (Iterator<IBeanHolder> iterator = beans.iterator(); iterator.hasNext(); i++)
        {
            IBeanHolder iBeanHolder = iterator.next();
            ids[i] = iBeanHolder.getId();
        }

        assertEquals("errorfilter.holder", ids[0]);
        //these are loaded from  a jar on the classpath, part test for MULE-5108
        assertEquals("flickr.holder", ids[1]);
        assertEquals("flickrauthentication.holder", ids[2]);
        assertEquals("flickrsearch.holder", ids[3]);
        assertEquals("flickrupload.holder", ids[4]);
        assertEquals("hostip.holder", ids[5]);
        assertEquals("search.holder", ids[6]);
        assertEquals("testexception.holder", ids[7]);
        assertEquals("testimplicitpropertiesinfactory.holder", ids[8]);
        assertEquals("testparamsfactory.holder", ids[9]);
        assertEquals("testuri.holder", ids[10]);
    }
}
TOP

Related Classes of org.mule.module.ibeans.annotations.IBeansHolderConfigBuilderTestCase

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.