TestTPAlloc.cxx
上传用户: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. #include "TestAssert.h"
  19. #include "BaseTest.h"
  20. #include "XATMITestSuite.h"
  21. #include "xatmi.h"
  22. #include "malloc.h"
  23. #include "TestTPAlloc.h"
  24. void TestTPAlloc::setUp() {
  25. userlogc((char*) "TestTPAlloc::setUp");
  26. m_allocated = NULL;
  27. BaseTest::setUp();
  28. // Do local work
  29. BT_ASSERT(tperrno == 0);
  30. }
  31. void TestTPAlloc::tearDown() {
  32. userlogc((char*) "TestTPAlloc::tearDown");
  33. if (m_allocated) {
  34. ::tpfree( m_allocated);
  35. m_allocated = NULL;
  36. }
  37. // Do local work
  38. BaseTest::tearDown();
  39. }
  40. void TestTPAlloc::test_tpalloc_zero() {
  41. userlogc((char*) "test_tpalloc_zero");
  42. m_allocated = tpalloc((char*) "X_OCTET", NULL, 0);
  43. BT_ASSERT(m_allocated == NULL);
  44. BT_ASSERT(tperrno == TPEINVAL);
  45. }
  46. void TestTPAlloc::test_tpalloc_negative() {
  47. userlogc((char*) "test_tpalloc_negative");
  48. m_allocated = tpalloc((char*) "X_OCTET", NULL, -1);
  49. BT_ASSERT(m_allocated == NULL);
  50. BT_ASSERT(tperrno == TPEINVAL);
  51. }
  52. void TestTPAlloc::test_tpalloc_x_octet_subtype_ignored() {
  53. userlogc((char*) "test_tpalloc_x_octet_subtype_ignored");
  54. m_allocated = tpalloc((char*) "X_OCTET", (char*) "fail", 25);
  55. BT_ASSERT(m_allocated != NULL);
  56. BT_ASSERT(tperrno == 0);
  57. }
  58. // 9.1.1
  59. void TestTPAlloc::test_tpalloc_x_octet() {
  60. userlogc((char*) "test_tpalloc_x_octet");
  61. m_allocated = tpalloc((char*) "X_OCTET", NULL, 25);
  62. BT_ASSERT(m_allocated != NULL);
  63. BT_ASSERT(tperrno == 0);
  64. char type[8];
  65. char subtype[16];
  66. int toTest = ::tptypes(m_allocated, type, subtype);
  67. BT_ASSERT(tperrno == 0);
  68. BT_ASSERT(toTest == 25);
  69. BT_ASSERT(strncmp(type, "X_OCTET", 8) == 0);
  70. BT_ASSERT(strcmp(subtype, "") == 0);
  71. }
  72. // 9.1.2
  73. void TestTPAlloc::test_tpalloc_x_common() {
  74. userlogc((char*) "test_tpalloc_x_common");
  75. DEPOSIT *dptr;
  76. dptr = (DEPOSIT*) tpalloc((char*) "X_COMMON", (char*) "deposit", 0);
  77. m_allocated = (char*) dptr;
  78. BT_ASSERT(m_allocated != NULL);
  79. BT_ASSERT(tperrno == 0);
  80. // Won't check lenght as tptypes does this
  81. // ASSIGN SOME VALUES
  82. dptr->acct_no = 12345678;
  83. dptr->amount = 50;
  84. dptr->balance = 0;
  85. dptr->status[100] = 'c';
  86. dptr->status_len = 0;
  87. // CHECK THE ASSIGNATIONS
  88. BT_ASSERT(dptr->acct_no == 12345678);
  89. BT_ASSERT(dptr->amount == 50);
  90. BT_ASSERT(dptr->balance == 0);
  91. BT_ASSERT(dptr->status[100] == 'c');
  92. BT_ASSERT(dptr->status_len == 0);
  93. }
  94. void TestTPAlloc::test_tpalloc_x_common_bigsubtype() {
  95. userlogc((char*) "test_tpalloc_x_common_bigsubtype");
  96. DEPOSIT *dptr;
  97. dptr = (DEPOSIT*) tpalloc((char*) "X_COMMON", (char*) "1234567890123456",
  98. 0);
  99. m_allocated = (char*) dptr;
  100. BT_ASSERT(m_allocated != NULL);
  101. BT_ASSERT(tperrno == 0);
  102. char* type = (char*) malloc(10);
  103. char* subtype = (char*) malloc(20);
  104. memset(subtype, '', 20);
  105. tptypes(m_allocated, type, subtype);
  106. BT_ASSERT(strncmp(type, "X_COMMON", 8) == 0);
  107. BT_ASSERT(strncmp(subtype, "12345678901234567", 17) != 0);
  108. BT_ASSERT(strncmp(subtype, "1234567890123456", 16) == 0);
  109. free(type);
  110. free(subtype);
  111. }
  112. // 9.1.3
  113. void TestTPAlloc::test_tpalloc_x_c_type() {
  114. userlogc((char*) "test_tpalloc_x_c_type");
  115. ACCT_INFO *aptr;
  116. aptr = (ACCT_INFO*) tpalloc((char*) "X_C_TYPE", (char*) "acct_info", 0);
  117. m_allocated = (char*) aptr;
  118. BT_ASSERT(m_allocated != NULL);
  119. BT_ASSERT(tperrno == 0);
  120. // Won't check length as typtypes does that
  121. // ASSIGN SOME VALUES
  122. aptr->acct_no = 12345678;
  123. strcpy(aptr->name, "12345678901234567890123456789012345678901234567890");
  124. aptr->balances[0] = 0;
  125. aptr->balances[1] = 0;
  126. // CHECK THE ASSIGNATIONS
  127. BT_ASSERT(aptr->acct_no == 12345678);
  128. BT_ASSERT(strcmp(aptr->name,
  129. "12345678901234567890123456789012345678901234567890") == 0);
  130. BT_ASSERT(aptr->address == NULL || strcmp(aptr->address, "") == 0);
  131. BT_ASSERT(aptr->balances[0] == 0);
  132. BT_ASSERT(aptr->balances[1] == 0);
  133. }
  134. void TestTPAlloc::test_tpalloc_unknowntype() {
  135. userlogc((char*) "test_tpalloc_unknowntype");
  136. m_allocated = tpalloc((char*) "TOM", NULL, 10);
  137. BT_ASSERT(tperrno == TPENOENT);
  138. BT_ASSERT(m_allocated == NULL);
  139. }
  140. void TestTPAlloc::test_tpalloc_x_common_subtype_required() {
  141. userlogc((char*) "test_tpalloc_x_common_subtype_required");
  142. m_allocated = tpalloc((char*) "X_COMMON", NULL, 0);
  143. BT_ASSERT(tperrno == TPEINVAL);
  144. BT_ASSERT(m_allocated == NULL);
  145. }
  146. void TestTPAlloc::test_tpalloc_x_c_type_subtype_required() {
  147. userlogc((char*) "test_tpalloc_x_c_type_subtype_required");
  148. m_allocated = tpalloc((char*) "X_C_TYPE", NULL, 0);
  149. BT_ASSERT(tperrno == TPEINVAL);
  150. BT_ASSERT(m_allocated == NULL);
  151. }