/*
* $Id: ExceptionsWithRouterMule2715TestCase.java 21527 2011-03-10 14:02:10Z 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.integration.exceptions;
import org.mule.api.MuleMessage;
import org.mule.api.transformer.TransformerMessagingException;
import org.mule.message.ExceptionMessage;
import org.mule.module.client.MuleClient;
import org.mule.tck.FunctionalTestCase;
public class ExceptionsWithRouterMule2715TestCase extends FunctionalTestCase
{
public static final String MESSAGE = "message";
public static final long TIMEOUT = 5000L;
public void testWithRouter() throws Exception
{
doTest("with-router-in");
}
public void testWithoutRouter() throws Exception
{
doTest("without-router-in");
}
protected void doTest(String path) throws Exception
{
MuleClient client = new MuleClient(muleContext);
client.dispatch("vm://" + path, MESSAGE, null);
MuleMessage response = client.request("vm://error", TIMEOUT);
assertNotNull(response);
assertTrue(response.getPayload() instanceof ExceptionMessage);
assertTrue(((ExceptionMessage) response.getPayload()).getException() instanceof TransformerMessagingException);
}
protected String getConfigResources()
{
return "org/mule/test/integration/exceptions/exceptions-with-router-mule-2715.xml";
}
}