/*
* $Id: ExceptionsTestCase.java 20385 2010-11-29 20:25:26Z dfeist $
* --------------------------------------------------------------------------------------
* 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;
import org.mule.api.DefaultMuleException;
import org.mule.api.MuleEvent;
import org.mule.api.MuleException;
import org.mule.api.context.MuleContextException;
import org.mule.api.endpoint.OutboundEndpoint;
import org.mule.api.routing.RoutingException;
import org.mule.config.i18n.MessageFactory;
import org.mule.tck.AbstractMuleTestCase;
public class ExceptionsTestCase extends AbstractMuleTestCase
{
public void testExceptionChaining()
{
String rootMsg = "Root Test Exception Message";
String msg = "Test Exception Message";
Exception e = new MuleContextException(MessageFactory.createStaticMessage(msg), new DefaultMuleException(
MessageFactory.createStaticMessage(rootMsg)));
assertEquals(rootMsg, e.getCause().getMessage());
assertEquals(msg, e.getMessage());
assertEquals(e.getClass().getName() + ": " + msg, e.toString());
}
public final void testRoutingExceptionNullMessageValidEndpoint() throws MuleException
{
OutboundEndpoint endpoint = muleContext.getEndpointFactory().getOutboundEndpoint("test://outbound");
assertNotNull(endpoint);
RoutingException rex = new RoutingException((MuleEvent) null, endpoint);
assertSame(endpoint, rex.getRoute());
}
}