Package org.apache.aries.transaction.test

Examples of org.apache.aries.transaction.test.TestBean.insertRow()


      
      //Test with client transaction and runtime exception - the user transaction is rolled back
      initialRows = bean.countRows();
     
      tran.begin();
      bean.insertRow("testWithClientTranAndWithRuntimeException", 1);
     
      try {
          bean.insertRow("testWithClientTranAndWithRuntimeException", 2, new RuntimeException());
      } catch (RuntimeException e) {
          e.printStackTrace();
View Full Code Here


     
      tran.begin();
      bean.insertRow("testWithClientTranAndWithRuntimeException", 1);
     
      try {
          bean.insertRow("testWithClientTranAndWithRuntimeException", 2, new RuntimeException());
      } catch (RuntimeException e) {
          e.printStackTrace();
      }
     
      try {
View Full Code Here

      assertTrue("Initial rows: " + initialRows + ", Final rows: " + finalRows, finalRows - initialRows == 0);
     
      //Test without client exception - a container transaction is used to insert the row
      initialRows = bean.countRows();
     
      bean.insertRow("testWithoutClientTran", 1);
     
      finalRows = bean.countRows();
      assertTrue("Initial rows: " + initialRows + ", Final rows: " + finalRows, finalRows - initialRows == 1);
     
      //Test without client exception and with application exception - the container transaction is not rolled back
View Full Code Here

     
      //Test without client exception and with application exception - the container transaction is not rolled back
      initialRows = bean.countRows();
     
      try {
          bean.insertRow("testWithoutClientTranAndWithAppException", 1, new SQLException("Dummy exception"));
      } catch (Exception e) {
          e.printStackTrace();
      }
     
      finalRows = bean.countRows();
View Full Code Here

     
      //Test without client transaction and with runtime exception - the container transaction is rolled back
      initialRows = bean.countRows();
     
      try {
          bean.insertRow("testWithoutClientTranAndWithRuntimeException", 1, new RuntimeException("Dummy exception"));
      } catch (Exception e) {
          e.printStackTrace();
      }
     
      finalRows = bean.countRows();
View Full Code Here

      int initialRows = bean.countRows();
     
      tran.begin();
     
      try {
          bean.insertRow("testWithClientTran", 1);
          fail("IllegalStateException not thrown");
      } catch (IllegalStateException e) {
          e.printStackTrace();
      }
     
View Full Code Here

      //Test without client transaction - the insert fails because the bean delegates to another
      //bean with a transaction strategy of Mandatory, and no transaction is available
      initialRows = bean.countRows();

      try {
          bean.insertRow("testWithoutClientTran", 1, true);
          fail("IllegalStateException not thrown");
      } catch (IllegalStateException e) {
          e.printStackTrace();
      }
     
View Full Code Here

      //Test with client transaction and application exception - the container transaction is committed,
      //the user transaction is not affected.
      initialRows = rnBean.countRows();
     
      tran.begin();
      rBean.insertRow("testWithClientTranAndWithAppException", 1);
     
      try {
          rnBean.insertRow("testWithClientTranAndWithAppException", 2, new SQLException("Dummy exception"));
      } catch (SQLException e) {
          e.printStackTrace();
View Full Code Here

      //Test with client transaction and runtime exception - the container transaction is rolled back,
      //the user transaction is not affected
      initialRows = rnBean.countRows();
     
      tran.begin();
      rBean.insertRow("testWithClientTranAndWithRuntimeException", 1);
     
      try {
          rnBean.insertRow("testWithClientTranAndWithRuntimeException", 2, new RuntimeException("Dummy exception"));
      } catch (RuntimeException e) {
          e.printStackTrace();
View Full Code Here

      //another bean with a transaction strategy of Mandatory, and the user transaction
      //is delegated
      int initialRows = bean.countRows();
     
      tran.begin();
      bean.insertRow("testWithClientTran", 1, true);
      tran.commit();
     
      int finalRows = bean.countRows();
      assertTrue("Initial rows: " + initialRows + ", Final rows: " + finalRows, finalRows - initialRows == 1);
     
View Full Code Here

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.