TxBlacktieServiceTestCase.java
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:5k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2008, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. package org.jboss.blacktie.jatmibroker.ejb.connector.ejb;
  19. import junit.framework.TestCase;
  20. import org.apache.log4j.LogManager;
  21. import org.apache.log4j.Logger;
  22. import org.jboss.blacktie.jatmibroker.core.conf.ConfigurationException;
  23. import org.jboss.blacktie.jatmibroker.jab.JABException;
  24. import org.jboss.blacktie.jatmibroker.jab.JABSession;
  25. import org.jboss.blacktie.jatmibroker.jab.JABSessionAttributes;
  26. import org.jboss.blacktie.jatmibroker.jab.JABTransaction;
  27. import org.jboss.blacktie.jatmibroker.xatmi.Connection;
  28. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionException;
  29. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionFactory;
  30. import org.jboss.blacktie.jatmibroker.xatmi.Response;
  31. import org.jboss.blacktie.jatmibroker.xatmi.X_OCTET;
  32. public class TxBlacktieServiceTestCase extends TestCase {
  33. private static final Logger log = LogManager
  34. .getLogger(TxBlacktieServiceTestCase.class);
  35. private Connection connection;
  36. public TxBlacktieServiceTestCase() throws ConnectionException {
  37. }
  38. public void setUp() throws ConnectionException, ConfigurationException {
  39. ConnectionFactory connectionFactory = ConnectionFactory
  40. .getConnectionFactory();
  41. connection = connectionFactory.getConnection();
  42. }
  43. public void tearDown() throws ConnectionException, ConfigurationException {
  44. connection.close();
  45. }
  46. private JABTransaction startTx() throws JABException {
  47. JABSessionAttributes attrs = new JABSessionAttributes();
  48. JABSession session = new JABSession(attrs);
  49. // for (Map.Entry e : attrs.getProperties().entrySet())
  50. // log.info(e.getKey() + " = " + e.getValue());
  51. try {
  52. return new JABTransaction(session, 5000);
  53. } catch (Exception e) {
  54. throw new JABException(e.getMessage(), e);
  55. }
  56. }
  57. public void test1() throws ConnectionException, JABException {
  58. byte[] args = "test=test1,tx=true".getBytes();
  59. X_OCTET buffer = (X_OCTET) connection.tpalloc("X_OCTET", null);
  60. buffer.setByteArray(args);
  61. JABTransaction transaction = startTx();
  62. Response response = connection.tpcall("TxEchoService", buffer,
  63. args.length, 0);
  64. String responseData = new String(((X_OCTET) response.getBuffer())
  65. .getByteArray());
  66. transaction.commit();
  67. assertEquals("test=test1,tx=true", responseData);
  68. }
  69. public void test2() throws ConnectionException, JABException {
  70. byte[] args = "test=test2,tx=true".getBytes();
  71. X_OCTET buffer = (X_OCTET) connection.tpalloc("X_OCTET", null);
  72. buffer.setByteArray(args);
  73. Response response = connection.tpcall("TxEchoService", buffer,
  74. args.length, 0);
  75. String responseData = new String(((X_OCTET) response.getBuffer())
  76. .getByteArray());
  77. assertNotSame("test=test2,tx=true", responseData);
  78. }
  79. public void test3() throws ConnectionException, JABException {
  80. byte[] args = "test=test3,tx=false".getBytes();
  81. X_OCTET buffer = (X_OCTET) connection.tpalloc("X_OCTET", null);
  82. buffer.setByteArray(args);
  83. Response response = connection.tpcall("TxEchoService", buffer,
  84. args.length, 0);
  85. String responseData = new String(((X_OCTET) response.getBuffer())
  86. .getByteArray());
  87. assertEquals("test=test3,tx=false", responseData);
  88. }
  89. public void test4() throws ConnectionException, JABException {
  90. byte[] args = "test=test4,tx=false".getBytes();
  91. X_OCTET buffer = (X_OCTET) connection.tpalloc("X_OCTET", null);
  92. buffer.setByteArray(args);
  93. JABTransaction transaction = startTx();
  94. Response response = connection.tpcall("TxEchoService", buffer,
  95. args.length, 0);
  96. String responseData = new String(((X_OCTET) response.getBuffer())
  97. .getByteArray());
  98. transaction.commit();
  99. assertNotSame("test=test4,tx=false", responseData);
  100. }
  101. /*
  102.  * Test that the AS can create a transaction and propagate it too another
  103.  * blacktie service. TODO Disabled until we can resolve the clash between
  104.  * the JMS transaction the Blacktie clients transaction (JMS queues have
  105.  * local transactions)
  106.  */
  107. public void test5() throws ConnectionException, JABException {
  108. byte[] args = "test=test5,tx=create".getBytes();
  109. X_OCTET buffer = (X_OCTET) connection.tpalloc("X_OCTET", null);
  110. buffer.setByteArray(args);
  111. Response response = connection.tpcall("TxEchoService", buffer,
  112. args.length, 0);
  113. String responseData = new String(((X_OCTET) response.getBuffer())
  114. .getByteArray());
  115. assertEquals("test=test5,tx=create", responseData);
  116. }
  117. }