package org.jboss.test.exception;
import java.rmi.RemoteException;
import java.rmi.AccessException;
import java.security.GeneralSecurityException;
import javax.ejb.EJBException;
import javax.ejb.TransactionRolledbackLocalException;
import javax.ejb.AccessLocalException;
import javax.ejb.CreateException;
import javax.naming.InitialContext;
import javax.transaction.TransactionRolledbackException;
import junit.framework.Test;
import org.jboss.logging.Logger;
import org.jboss.test.JBossTestCase;
import org.jboss.test.util.ejb.EJBTestCase;
public class ExceptionUnitTestCase extends EJBTestCase
{
static Logger log = Logger.getLogger(ExceptionUnitTestCase.class);
public static Test suite() throws Exception
{
return JBossTestCase.getDeploySetup(ExceptionUnitTestCase.class,
"exception.jar");
}
public ExceptionUnitTestCase(String name)
{
super(name);
}
private ExceptionTesterHome exceptionTesterHome;
private ExceptionTesterLocalHome exceptionTesterLocalHome;
public void setUp() throws Exception
{
InitialContext jndi = new InitialContext();
exceptionTesterHome = (ExceptionTesterHome)
jndi.lookup("exception/ExceptionTester");
exceptionTesterLocalHome = (ExceptionTesterLocalHome)
jndi.lookup("exception/ExceptionTesterLocal");
}
public void testSessionEjbCreateException() throws Exception
{
log.info("+++ testSessionEjbCreateException");
InitialContext ctx = new InitialContext();
ExceptionTesterHome home = (ExceptionTesterHome)
ctx.lookup("exception/CreateExceptionTesterEJB");
try
{
ExceptionTester bean = home.create();
fail("Expected CreateException on ExceptionTesterHome.create(), bean="+bean);
}
catch(CreateException e)
{
log.info("Saw CreateException via remote as expected", e);
}
ExceptionTesterLocalHome lhome = (ExceptionTesterLocalHome)
ctx.lookup("exception/CreateExceptionTesterLocalEJB");
try
{
ExceptionTesterLocal bean = lhome.create();
fail("Expected CreateException on ExceptionTesterLocalHome.create(), bean="+bean);
}
catch(CreateException e)
{
log.info("Saw CreateException via local as expected", e);
}
}
public void testApplicationExceptionInTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.applicationExceptionInTx();
fail("Expected application exception to be thrown");
}
catch (ApplicationException e)
{
}
catch (Exception e)
{
fail("Expected ApplicationException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testApplicationErrorInTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.applicationErrorInTx();
fail("Expected transaction rolled back exception to be thrown");
}
catch (TransactionRolledbackException e)
{
assertNotNull("TransactionRolledbackException.detail should not be null",
e.detail);
assertEquals("TransactionRolledbackException.detail should " +
"be a ApplicationError",
ApplicationError.class,
e.detail.getClass());
}
catch (Exception e)
{
fail("Expected TransactionRolledbackException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testEJBExceptionInTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.ejbExceptionInTx();
fail("Expected transaction rolled back exception to be thrown");
}
catch (TransactionRolledbackException e)
{
assertNotNull("TransactionRolledbackException.detail should not be null",
e.detail);
assertEquals("TransactionRolledbackException.detail should " +
"be an EJBException",
EJBException.class,
e.detail.getClass());
}
catch (Exception e)
{
fail("Expected TransactionRolledbackException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testRuntimeExceptionInTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.runtimeExceptionInTx();
fail("Expected transaction rolled back exception to be thrown");
}
catch (TransactionRolledbackException e)
{
assertNotNull("TransactionRolledbackException.detail should not be null",
e.detail);
assertEquals("TransactionRolledbackException.detail should " +
"be a RuntimeException",
RuntimeException.class,
e.detail.getClass());
}
catch (Exception e)
{
fail("Expected TransactionRolledbackException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testRemoteExceptionInTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.remoteExceptionInTx();
fail("Expected transaction rolled back exception to be thrown");
}
catch (TransactionRolledbackException e)
{
assertNotNull("TransactionRolledbackException.detail should not be null",
e.detail);
assertEquals("TransactionRolledbackException.detail should " +
"be a RemoteException",
RemoteException.class,
e.detail.getClass());
}
catch (Exception e)
{
fail("Expected TransactionRolledbackException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testApplicationExceptionNewTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.applicationExceptionNewTx();
fail("Expected application exception to be thrown");
}
catch (ApplicationException e)
{
}
catch (Exception e)
{
fail("Expected ApplicationException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testApplicationErrorNewTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.applicationErrorNewTx();
fail("Expected RemoteException to be thrown");
}
catch (RemoteException e)
{
assertNotNull("RemoteException.detail should not be null",
e.detail);
assertEquals("RemoteException.detail should be a ApplicationError",
ApplicationError.class,
e.detail.getClass());
}
catch (Exception e)
{
fail("Expected RemoteException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testEJBExceptionNewTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.ejbExceptionNewTx();
fail("Expected RemoteException to be thrown");
}
catch (RemoteException e)
{
assertNotNull("RemoteException.detail should not be null",
e.detail);
assertEquals("RemoteException.detail should be a EJBException",
EJBException.class,
e.detail.getClass());
}
catch (Exception e)
{
fail("Expected RemoteException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testRuntimeExceptionNewTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.runtimeExceptionNewTx();
fail("Expected RemoteException to be thrown");
}
catch (RemoteException e)
{
assertNotNull("RemoteException.detail should not be null",
e.detail);
assertEquals("RemoteException.detail should be a RuntimeException",
RuntimeException.class,
e.detail.getClass());
}
catch (Exception e)
{
fail("Expected RemoteException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testRemoteExceptionNewTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.remoteExceptionNewTx();
fail("Expected RemoteException to be thrown");
}
catch (RemoteException e)
{
}
catch (Exception e)
{
fail("Expected RemoteException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testApplicationExceptionNoTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.applicationExceptionNoTx();
fail("Expected application exception to be thrown");
}
catch (ApplicationException e)
{
}
catch (Exception e)
{
fail("Expected ApplicationException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testApplicationErrorNoTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.applicationErrorNoTx();
fail("Expected RemoteException to be thrown");
}
catch (RemoteException e)
{
assertNotNull("RemoteException.detail should not be null",
e.detail);
assertEquals("RemoteException.detail should be a ApplicationError",
ApplicationError.class,
e.detail.getClass());
}
catch (Exception e)
{
fail("Expected RemoteException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testEJBExceptionNoTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.ejbExceptionNoTx();
fail("Expected RemoteException to be thrown");
}
catch (RemoteException e)
{
assertNotNull("RemoteException.detail should not be null",
e.detail);
assertEquals("RemoteException.detail should be a EJBException",
EJBException.class,
e.detail.getClass());
}
catch (Exception e)
{
fail("Expected RemoteException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testRuntimeExceptionNoTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.runtimeExceptionNoTx();
fail("Expected RemoteException to be thrown");
}
catch (RemoteException e)
{
assertNotNull("RemoteException.detail should not be null",
e.detail);
assertEquals("RemoteException.detail should be a RuntimeException",
RuntimeException.class,
e.detail.getClass());
}
catch (Exception e)
{
fail("Expected RemoteException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testRemoteExceptionNoTx_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
exceptionTester = exceptionTesterHome.create();
exceptionTester.remoteExceptionNoTx();
fail("Expected RemoteException to be thrown");
}
catch (RemoteException e)
{
}
catch (Exception e)
{
fail("Expected RemoteException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testSecurityException_remote() throws Exception
{
ExceptionTester exceptionTester = null;
try
{
InitialContext jndi = new InitialContext();
ExceptionTesterHome exTesterHome =
(ExceptionTesterHome) jndi.lookup("exception/SecuredExceptionTester");
exceptionTester = exTesterHome.create();
exceptionTester.securityExceptionNoTx();
fail("Expected AccessException to be thrown");
}
catch (AccessException e)
{
}
catch (Exception e)
{
fail("Expected AccessException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testApplicationExceptionInTx_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
exceptionTester = exceptionTesterLocalHome.create();
exceptionTester.applicationExceptionInTx();
fail("Expected ApplicationException to be thrown");
}
catch (ApplicationException e)
{
}
catch (Exception e)
{
fail("Expected ApplicationException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testApplicationErrorInTx_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
exceptionTester = exceptionTesterLocalHome.create();
exceptionTester.applicationErrorInTx();
fail("Expected TransactionRolledbackLocalException to be thrown");
}
catch (TransactionRolledbackLocalException e)
{
assertNotNull("TransactionRolledbackLocalException.getCausedByException() " +
"should not be null",
e.getCausedByException());
assertEquals("TransactionRolledbackLocalException.getCausedByExcption() " +
"should be an EJBException",
EJBException.class,
e.getCausedByException().getClass());
}
catch (Exception e)
{
fail("Expected TransactionRolledbackLocalException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testEJBExceptionInTx_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
exceptionTester = exceptionTesterLocalHome.create();
exceptionTester.ejbExceptionInTx();
fail("Expected TransactionRolledbackLocalException to be thrown");
}
catch (TransactionRolledbackLocalException e)
{
assertNotNull("TransactionRolledbackLocalException.getCausedByException() " +
"should not be null",
e.getCausedByException());
assertEquals("TransactionRolledbackLocalException.getCausedByException() " +
"should be an EJBException",
EJBException.class,
e.getCausedByException().getClass());
}
catch (Exception e)
{
fail("Expected TransactionRolledbackLocalException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testRuntimeExceptionInTx_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
exceptionTester = exceptionTesterLocalHome.create();
exceptionTester.runtimeExceptionInTx();
fail("Expected TransactionRolledbackLocalException to be thrown");
}
catch (TransactionRolledbackLocalException e)
{
assertNotNull("TransactionRolledbackLocalException.getCausedByException() " +
"should not be null",
e.getCausedByException());
assertEquals("TransactionRolledbackLocalException.getCausedByException() " +
"should be a RuntimeException",
RuntimeException.class,
e.getCausedByException().getClass());
}
catch (Exception e)
{
fail("Expected TransactionRolledbackLocalException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testApplicationExceptionNewTx_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
exceptionTester = exceptionTesterLocalHome.create();
exceptionTester.applicationExceptionNewTx();
fail("Expected ApplicationException to be thrown");
}
catch (ApplicationException e)
{
}
catch (Exception e)
{
fail("Expected ApplicationException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testApplicationErrorNewTx_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
exceptionTester = exceptionTesterLocalHome.create();
exceptionTester.applicationErrorNewTx();
fail("Expected EJBException to be thrown");
}
catch (EJBException e)
{
assertNull("EJBException.getCausedByException() should be null",
e.getCausedByException());
}
catch (Exception e)
{
fail("Expected EJBException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testEJBExceptionNewTx_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
exceptionTester = exceptionTesterLocalHome.create();
exceptionTester.ejbExceptionNewTx();
fail("Expected EJBException to be thrown");
}
catch (EJBException e)
{
assertNull("EJBException.getCausedByException() should be null",
e.getCausedByException());
}
catch (Exception e)
{
fail("Expected EJBException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testRuntimeExceptionNewTx_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
exceptionTester = exceptionTesterLocalHome.create();
exceptionTester.runtimeExceptionNewTx();
fail("Expected EJBException to be thrown");
}
catch (EJBException e)
{
assertNotNull("EJBException.getCausedByException() should not be null",
e.getCausedByException());
assertEquals("EJBException.getCausedByException() should be " +
"a RuntimeException",
RuntimeException.class,
e.getCausedByException().getClass());
}
catch (Exception e)
{
fail("Expected EJBException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testApplicationExceptionNoTx_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
exceptionTester = exceptionTesterLocalHome.create();
exceptionTester.applicationExceptionNoTx();
fail("Expected application exception to be thrown");
}
catch (ApplicationException e)
{
}
catch (Exception e)
{
fail("Expected ApplicationException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testApplicationErrorNoTx_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
exceptionTester = exceptionTesterLocalHome.create();
exceptionTester.applicationErrorNoTx();
fail("Expected EJBException to be thrown");
}
catch (EJBException e)
{
assertNull("EJBException.getCausedByException() should be null",
e.getCausedByException());
}
catch (Exception e)
{
fail("Expected EJBException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testEJBExceptionNoTx_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
exceptionTester = exceptionTesterLocalHome.create();
exceptionTester.ejbExceptionNoTx();
fail("Expected EJBException to be thrown");
}
catch (EJBException e)
{
assertNull("EJBException.getCausedByException() should be null",
e.getCausedByException());
}
catch (Exception e)
{
fail("Expected EJBException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testRuntimeExceptionNoTx_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
exceptionTester = exceptionTesterLocalHome.create();
exceptionTester.runtimeExceptionNoTx();
fail("Expected EJBException to be thrown");
}
catch (EJBException e)
{
assertNotNull("EJBException.getCausedByException() should not be null",
e.getCausedByException());
assertEquals("EJBException.getCausedByException() should be " +
"a RuntimeException",
RuntimeException.class,
e.getCausedByException().getClass());
}
catch (Exception e)
{
fail("Expected EJBException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
public void testSecurityException_local() throws Exception
{
ExceptionTesterLocal exceptionTester = null;
try
{
InitialContext jndi = new InitialContext();
ExceptionTesterLocalHome exTesterLocalHome =
(ExceptionTesterLocalHome) jndi.lookup("exception/SecuredExceptionTesterLocal");
exceptionTester = exTesterLocalHome.create();
exceptionTester.securityExceptionNoTx();
fail("Expected AccessLocalException to be thrown");
}
catch (AccessLocalException e)
{
assertNotNull("AccessLocalException.getCausedByException() should not be null",
e.getCausedByException());
Exception ex = e.getCausedByException();
boolean isSecurityException = ex instanceof SecurityException
|| ex instanceof GeneralSecurityException;
assertTrue("AccessLocalException.getCausedByException() should be " +
"a security exception", isSecurityException);
}
catch (Exception e)
{
fail("Expected EJBException but got " + e);
}
finally
{
if (exceptionTester != null)
{
exceptionTester.remove();
}
}
}
}