TestTPAdvertise.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 "BaseServerTest.h"
  20. #include "xatmi.h"
  21. #include "TestTPAdvertise.h"
  22. extern void testtpadvertise_service(TPSVCINFO *svcinfo);
  23. extern void testtpadvertise_service_2(TPSVCINFO *svcinfo);
  24. void TestTPAdvertise::setUp() {
  25. userlogc((char*) "TestTPAdvertise::setUp");
  26. sendbuf = NULL;
  27. rcvbuf = NULL;
  28. // Setup server
  29. BaseServerTest::setUp();
  30. // Do local work
  31. sendlen = 6;
  32. rcvlen = sendlen;
  33. sendbuf = (char *) tpalloc((char*) "X_OCTET", NULL, sendlen);
  34. rcvbuf = (char *) tpalloc((char*) "X_OCTET", NULL, sendlen);
  35. }
  36. void TestTPAdvertise::tearDown() {
  37. userlogc((char*) "TestTPAdvertise::tearDown");
  38. // Do local work
  39. ::tpfree(sendbuf);
  40. ::tpfree(rcvbuf);
  41. ::tpunadvertise((char*) "TestTPAdvertise");
  42. ::tpunadvertise((char*) "1234567890123456");
  43. ::tpunadvertise((char*) "1234567890123457");
  44. // Clean up server
  45. BaseServerTest::tearDown();
  46. }
  47. void TestTPAdvertise::test_tpadvertise_new_service() {
  48. userlogc((char*) "test_tpadvertise_new_service");
  49. int id = ::tpadvertise((char*) "TestTPAdvertise", testtpadvertise_service);
  50. BT_ASSERT(tperrno!= TPEINVAL);
  51. BT_ASSERT(tperrno!= TPELIMIT);
  52. BT_ASSERT(tperrno!= TPEMATCH);
  53. BT_ASSERT(tperrno!= TPEPROTO);
  54. BT_ASSERT(tperrno!= TPESYSTEM);
  55. BT_ASSERT(tperrno!= TPEOS);
  56. BT_ASSERT(tperrno == 0);
  57. BT_ASSERT(id != -1);
  58. (void) strcpy(sendbuf, "test0");
  59. id = ::tpcall((char*) "TestTPAdvertise", (char *) sendbuf, sendlen, (char **) &rcvbuf, &rcvlen, (long) 0);
  60. BT_ASSERT(tperrno == 0);
  61. BT_ASSERT(id != -1);
  62. BT_ASSERT(strcmp(rcvbuf, "testtpadvertise_servicetest0") == 0);
  63. }
  64. void TestTPAdvertise::test_tpadvertise_null_name_null() {
  65. userlogc((char*) "test_tpadvertise_null_name_null");
  66. int id = ::tpadvertise(NULL, testtpadvertise_service);
  67. BT_ASSERT(tperrno== TPEINVAL);
  68. BT_ASSERT(id == -1);
  69. }
  70. void TestTPAdvertise::test_tpadvertise_idempotent() {
  71. userlogc((char*) "test_tpadvertise_idempotent");
  72. int id = ::tpadvertise((char*) "TestTPAdvertise", testtpadvertise_service);
  73. BT_ASSERT(tperrno == 0);
  74. BT_ASSERT(id == 0);
  75. id = ::tpadvertise((char*) "TestTPAdvertise", testtpadvertise_service);
  76. BT_ASSERT(tperrno == 0);
  77. BT_ASSERT(id == 0);
  78. }
  79. void TestTPAdvertise::test_tpadvertise_null_name_empty() {
  80. userlogc((char*) "test_tpadvertise_null_name_empty");
  81. int id = ::tpadvertise((char*) "", testtpadvertise_service);
  82. BT_ASSERT(tperrno== TPEINVAL);
  83. BT_ASSERT(id == -1);
  84. }
  85. void TestTPAdvertise::test_tpadvertise_different_method() {
  86. userlogc((char*) "test_tpadvertise_different_method");
  87. int id = ::tpadvertise((char*) "TestTPAdvertise", testtpadvertise_service);
  88. BT_ASSERT(tperrno == 0);
  89. BT_ASSERT(id == 0);
  90. id = ::tpadvertise((char*) "TestTPAdvertise", testtpadvertise_service_2);
  91. BT_ASSERT(tperrno== TPEMATCH);
  92. BT_ASSERT(id == -1);
  93. }
  94. void TestTPAdvertise::test_tpadvertise_length_15() {
  95. userlogc((char*) "test_tpadvertise_length_15");
  96. int id = ::tpadvertise((char*) "12345678901234567", testtpadvertise_service);
  97. BT_ASSERT(tperrno == 0);
  98. BT_ASSERT(id != -1);
  99. id = ::tpadvertise((char*) "1234567890123456", testtpadvertise_service_2);
  100. BT_ASSERT(tperrno== TPEMATCH);
  101. BT_ASSERT(id == -1);
  102. }
  103. void TestTPAdvertise::test_tpadvertise_readvertise() {
  104. userlogc((char*) "test_tpadvertise_readvertise");
  105. int id = ::tpadvertise((char*) "TestTPAdvertise", testtpadvertise_service);
  106. BT_ASSERT(id != -1);
  107. BT_ASSERT(tperrno == 0);
  108. id = ::tpunadvertise((char*) "TestTPAdvertise");
  109. BT_ASSERT(id != -1);
  110. BT_ASSERT(tperrno == 0);
  111. (void) strcpy(sendbuf, "test1");
  112. id = ::tpcall((char*) "TestTPAdvertise", (char *) sendbuf, sendlen, (char **) &rcvbuf, &rcvlen, (long) 0);
  113. BT_ASSERT(tperrno== TPENOENT);
  114. BT_ASSERT(id == -1);
  115. BT_ASSERT(strcmp(rcvbuf, "testtpadvertise_servicetest1") != 0);
  116. id = ::tpadvertise((char*) "TestTPAdvertise", testtpadvertise_service);
  117. BT_ASSERT(tperrno == 0);
  118. BT_ASSERT(id != -1);
  119. (void) strcpy(sendbuf, "test2");
  120. id = ::tpcall((char*) "TestTPAdvertise", (char *) sendbuf, sendlen, (char **) &rcvbuf, &rcvlen, (long) 0);
  121. BT_ASSERT(tperrno == 0);
  122. BT_ASSERT(id != -1);
  123. BT_ASSERT(strcmp(rcvbuf, "testtpadvertise_servicetest2") == 0);
  124. }
  125. void testtpadvertise_service(TPSVCINFO *svcinfo) {
  126. userlogc((char*) "testtpadvertise_service");
  127. char * toReturn = ::tpalloc((char*) "X_OCTET", NULL, 35);
  128. sprintf(toReturn, "testtpadvertise_service%s", svcinfo->data);
  129. // Changed length from 0L to svcinfo->len
  130. tpreturn(TPSUCCESS, 0, toReturn, 35, 0);
  131. }
  132. void testtpadvertise_service_2(TPSVCINFO *svcinfo) {
  133. userlogc((char*) "testtpadvertise_service_2");
  134. char * toReturn = ::tpalloc((char*) "X_OCTET", NULL, 25);
  135. strcpy(toReturn, "testtpadvertise_service_2");
  136. // Changed length from 0L to svcinfo->len
  137. tpreturn(TPSUCCESS, 0, toReturn, 25, 0);
  138. }