Package org.mule.test.integration.components

Source Code of org.mule.test.integration.components.JSR250LifecycleTrackerComponentFunctionalTestCase

/*
* 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.test.integration.components;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;

import org.mule.api.client.MuleClient;
import org.mule.lifecycle.JSR250LifecycleTrackerComponent;
import org.mule.tck.AbstractServiceAndFlowTestCase;

import java.util.Arrays;
import java.util.Collection;

import org.junit.Test;
import org.junit.runners.Parameterized.Parameters;

public class JSR250LifecycleTrackerComponentFunctionalTestCase extends AbstractServiceAndFlowTestCase
{
    @Parameters
    public static Collection<Object[]> parameters()
    {
        return Arrays.asList(new Object[][]{
            {ConfigVariant.SERVICE,
                "org/mule/test/integration/components/jsr250-component-lifecycle-config-service.xml"},
            {ConfigVariant.FLOW,
                "org/mule/test/integration/components/jsr250-component-lifecycle-config-flow.xml"}});
    }

    public JSR250LifecycleTrackerComponentFunctionalTestCase(ConfigVariant variant, String configResources)
    {
        super(variant, configResources);
    }

    /**
     * ASSERT: - Mule lifecycle methods invoked - Service and muleContext injected
     * (Component implements ServiceAware/MuleContextAware)
     *
     * @throws Exception
     */
    @Test
    public void testSingletonServiceLifecycle() throws Exception
    {
        if (variant.equals(ConfigVariant.FLOW))
        {
            testComponentLifecycle("MuleSingletonService",
                "[setProperty, setMuleContext, jsr250 initialise, start, stop, jsr250 dispose]");
        }
        else
        {
            testComponentLifecycle("MuleSingletonService",
                "[setProperty, setService, setMuleContext, jsr250 initialise, start, stop, jsr250 dispose]");
        }
    }

    /**
     * ASSERT: - Mule lifecycle methods invoked - Service and muleContext injected
     * (Component implements ServiceAware/MuleContextAware)
     *
     * @throws Exception
     */
    @Test
    public void testMulePrototypeServiceLifecycle() throws Exception
    {
        if (variant.equals(ConfigVariant.FLOW))
        {
            testComponentLifecycle("MulePrototypeService",
                "[setProperty, setMuleContext, jsr250 initialise, start, stop, jsr250 dispose]");
        }
        else
        {
            testComponentLifecycle("MulePrototypeService",
                "[setProperty, setService, setMuleContext, jsr250 initialise, start, stop, jsr250 dispose]");
        }
    }

    /**
     * ASSERT: - Mule lifecycle methods invoked - Service and muleContext injected
     * (Component implements ServiceAware/MuleContextAware)
     *
     * @throws Exception
     */
    @Test
    public void testMulePooledPrototypeServiceLifecycle() throws Exception
    {
        if (variant.equals(ConfigVariant.FLOW))
        {
            testComponentLifecycle("MulePooledPrototypeService",
                "[setProperty, setMuleContext, jsr250 initialise, start, stop, jsr250 dispose]");
        }
        else
        {
            testComponentLifecycle("MulePooledPrototypeService",
                "[setProperty, setService, setMuleContext, jsr250 initialise, start, stop, jsr250 dispose]");
        }
    }

    /**
     * ASSERT: - Mule lifecycle methods invoked each time singleton is used to create
     * new object in pool - Service and muleContext injected each time singleton is
     * used to create new object in pool (Component implements
     * ServiceAware/MuleContextAware)
     *
     * @throws Exception
     */
    @Test
    public void testMulePooledSingletonServiceLifecycle() throws Exception
    {
        if (variant.equals(ConfigVariant.FLOW))
        {
            testComponentLifecycle(
                "MulePooledSingletonService",
                "[setProperty, setMuleContext, jsr250 initialise, jsr250 initialise, jsr250 initialise, start, start, start, stop, stop, stop, jsr250 dispose, jsr250 dispose, jsr250 dispose]");
        }
        else
        {
            testComponentLifecycle(
                "MulePooledSingletonService",
                "[setProperty, setService, setMuleContext, jsr250 initialise, jsr250 initialise, jsr250 initialise, start, start, start, stop, stop, stop, jsr250 dispose, jsr250 dispose, jsr250 dispose]");
        }
    }

    private void testComponentLifecycle(final String serviceName, final String expectedLifeCycle)
        throws Exception
    {

        final JSR250LifecycleTrackerComponent tracker = exerciseComponent(serviceName);

        muleContext.dispose();

        assertEquals(serviceName, expectedLifeCycle, tracker.getTracker().toString());
    }

    private JSR250LifecycleTrackerComponent exerciseComponent(final String serviceName) throws Exception
    {
        MuleClient client = muleContext.getClient();
        final JSR250LifecycleTrackerComponent ltc = (JSR250LifecycleTrackerComponent) client.send(
            "vm://" + serviceName + ".In", null, null).getPayload();

        assertNotNull(ltc);
        return ltc;
    }
}
TOP

Related Classes of org.mule.test.integration.components.JSR250LifecycleTrackerComponentFunctionalTestCase

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.