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

中间件编程

开发平台:

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 "TestTPSend.h"
  22. extern void testtpsend_service(TPSVCINFO *svcinfo);
  23. extern void testtpsend_tpsendonly_service(TPSVCINFO *svcinfo);
  24. void TestTPSend::setUp() {
  25. userlogc((char*) "TestTPSend::setUp");
  26. sendbuf = NULL;
  27. rcvbuf = NULL;
  28. rcvlen = -1;
  29. // Setup server
  30. BaseServerTest::setUp();
  31. // Do local work
  32. cd = -1;
  33. sendlen = strlen("tpsend") + 1;
  34. BT_ASSERT((sendbuf = (char *) tpalloc((char*) "X_OCTET", NULL, sendlen))
  35. != NULL);
  36. BT_ASSERT((rcvbuf = (char *) tpalloc((char*) "X_OCTET", NULL, sendlen))
  37. != NULL);
  38. strcpy(sendbuf, "tpsend");
  39. BT_ASSERT(tperrno == 0);
  40. }
  41. void TestTPSend::tearDown() {
  42. userlogc((char*) "TestTPSend::tearDown");
  43. // Do local work
  44. if (cd != -1) {
  45. ::tpdiscon( cd);
  46. }
  47. ::tpfree( sendbuf);
  48. ::tpfree( rcvbuf);
  49. int toCheck = tpunadvertise((char*) "TestTPSend");
  50. BT_ASSERT(tperrno == 0);
  51. BT_ASSERT(toCheck != -1);
  52. // Clean up server
  53. BaseServerTest::tearDown();
  54. }
  55. void TestTPSend::test_tpsend_recvonly() {
  56. userlogc((char*) "test_tpsend_recvonly");
  57. int toCheck = tpadvertise((char*) "TestTPSend", testtpsend_service);
  58. BT_ASSERT(tperrno == 0);
  59. BT_ASSERT(toCheck != -1);
  60. cd = ::tpconnect((char*) "TestTPSend", sendbuf, sendlen, TPRECVONLY);
  61. long event = 0;
  62. int result = ::tpsend(cd, sendbuf, sendlen, 0, &event);
  63. BT_ASSERT((event == TPEV_SVCERR) || (tperrno == TPEPROTO));
  64. BT_ASSERT(result == -1);
  65. }
  66. void TestTPSend::test_tpsend_tpsendonly() {
  67. userlogc((char*) "test_tpsend_tpsendonly");
  68. int toCheck = tpadvertise((char*) "TestTPSend",
  69. testtpsend_tpsendonly_service);
  70. BT_ASSERT(tperrno == 0);
  71. BT_ASSERT(toCheck != -1);
  72. cd = ::tpconnect((char*) "TestTPSend", sendbuf, sendlen, TPRECVONLY);
  73. long revent = 0;
  74. int result = ::tprecv(cd, &rcvbuf, &rcvlen, 0, &revent);
  75. BT_ASSERT(revent & TPEV_SENDONLY);
  76. BT_ASSERT(tperrno == TPEEVENT);
  77. BT_ASSERT(result == -1);
  78. result = ::tprecv(cd, &rcvbuf, &rcvlen, 0, &revent);
  79. BT_ASSERT(tperrno == TPEPROTO);
  80. BT_ASSERT(result == -1);
  81. long event = 0;
  82. result = ::tpsend(cd, sendbuf, sendlen, 0, &event);
  83. BT_ASSERT(event == 0);
  84. BT_ASSERT(tperrno == 0);
  85. BT_ASSERT(result != -1);
  86. }
  87. void testtpsend_service(TPSVCINFO *svcinfo) {
  88. userlogc((char*) "testtpsend_service");
  89. }
  90. void testtpsend_tpsendonly_service(TPSVCINFO *svcinfo) {
  91. userlogc((char*) "testtpsend_tpsendonly_service");
  92. long event = 0;
  93. int result = ::tpsend(svcinfo->cd, svcinfo->data, svcinfo->len, TPRECVONLY,
  94. &event);
  95. long revent = 0;
  96. long rcvlen = svcinfo->len;
  97. char* rcvbuf = (char *) tpalloc((char*) "X_OCTET", NULL, svcinfo->len);
  98. result = ::tprecv(svcinfo->cd, &rcvbuf, &rcvlen, 0, &revent);
  99. }