Package org.mule.test.usecases.routing.lookup

Source Code of org.mule.test.usecases.routing.lookup.EndpointLookupRouterTestCase

/*
* $Id: EndpointLookupRouterTestCase.java 21860 2011-05-09 14:25:41Z tcarlson $
* --------------------------------------------------------------------------------------
* 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.usecases.routing.lookup;

import org.mule.api.MuleMessage;
import org.mule.module.client.MuleClient;
import org.mule.tck.FunctionalTestCase;

/**
* The router looks up a list of endpoints from an XML file and passes them to the <recipient-list-exception-based-router>
*/
public class EndpointLookupRouterTestCase extends FunctionalTestCase
{
    @Override
    protected String getConfigResources()
    {
        return "org/mule/test/usecases/routing/lookup/router-config.xml, org/mule/test/usecases/routing/lookup/services.xml";
    }

    public void testRouterSuccess() throws Exception
    {
        MuleClient client = new MuleClient(muleContext);
        MuleMessage reply = client.send("vm://router", "GetID", null);
        assertNotNull(reply);
        assertTrue(reply.getPayloadAsString().contains("<ErrorStatus>Success</ErrorStatus>"));
    }

    public void testRouterFailure() throws Exception
    {
        try
        {
            muleContext.getClient().send("vm://routerBad", "GetID", null);
            fail("Exception expected");
        }
        catch (Exception e)
        {
            // expected
        }
    }
}

TOP

Related Classes of org.mule.test.usecases.routing.lookup.EndpointLookupRouterTestCase

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.