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

中间件编程

开发平台:

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 "TestTPConnect.h"
  22. extern void testtpconnect_service(TPSVCINFO *svcinfo);
  23. void TestTPConnect::setUp() {
  24. userlogc((char*) "TestTPConnect::setUp");
  25. sendbuf = NULL;
  26. rcvbuf = NULL;
  27. // Setup server
  28. BaseServerTest::setUp();
  29. // Do local work
  30. cd = -1;
  31. cd2 = -1;
  32. int toCheck = tpadvertise((char*) "TestTPConnect", testtpconnect_service);
  33. BT_ASSERT(tperrno == 0);
  34. BT_ASSERT(toCheck != -1);
  35. sendlen = strlen("connect") + 1;
  36. BT_ASSERT((sendbuf
  37. = (char *) tpalloc((char*) "X_OCTET", NULL, sendlen)) != NULL);
  38. BT_ASSERT(
  39. (rcvbuf = (char *) tpalloc((char*) "X_OCTET", NULL, sendlen))
  40. != NULL);
  41. strcpy(sendbuf, "connect");
  42. BT_ASSERT(tperrno == 0);
  43. }
  44. void TestTPConnect::tearDown() {
  45. userlogc((char*) "TestTPConnect::tearDown");
  46. // Do local work
  47. if (cd != -1) {
  48. ::tpdiscon(cd);
  49. }
  50. if (cd2 != -1) {
  51. ::tpdiscon(cd2);
  52. }
  53. ::tpfree(sendbuf);
  54. ::tpfree(rcvbuf);
  55. int toCheck = tpunadvertise((char*) "TestTPConnect");
  56. BT_ASSERT(tperrno == 0);
  57. BT_ASSERT(toCheck != -1);
  58. // Clean up server
  59. BaseServerTest::tearDown();
  60. }
  61. void TestTPConnect::test_tpconnect() {
  62. userlogc((char*) "test_tpconnect");
  63. cd = ::tpconnect((char*) "TestTPConnect", sendbuf, sendlen, TPRECVONLY);
  64. BT_ASSERT(cd != -1);
  65. }
  66. void TestTPConnect::test_tpconnect_double_connect() {
  67. userlogc((char*) "test_tpconnect_double_connect");
  68. cd = ::tpconnect((char*) "TestTPConnect", sendbuf, sendlen, TPRECVONLY);
  69. cd2 = ::tpconnect((char*) "TestTPConnect", sendbuf, sendlen, TPRECVONLY);
  70. BT_ASSERT(cd != -1);
  71. BT_ASSERT(cd2 != -1);
  72. BT_ASSERT(cd != cd2);
  73. BT_ASSERT(tperrno == 0);
  74. BT_ASSERT(tperrno != TPEINVAL);
  75. BT_ASSERT(tperrno != TPENOENT);
  76. BT_ASSERT(tperrno != TPEITYPE);
  77. BT_ASSERT(tperrno != TPELIMIT);
  78. BT_ASSERT(tperrno != TPETRAN);
  79. BT_ASSERT(tperrno != TPETIME);
  80. BT_ASSERT(tperrno != TPEBLOCK);
  81. BT_ASSERT(tperrno != TPGOTSIG);
  82. BT_ASSERT(tperrno != TPEPROTO);
  83. BT_ASSERT(tperrno != TPESYSTEM);
  84. BT_ASSERT(tperrno != TPEOS);
  85. }
  86. void TestTPConnect::test_tpconnect_nodata() {
  87. userlogc((char*) "test_tpconnect_nodata");
  88. cd = ::tpconnect((char*) "TestTPConnect", NULL, 0, TPRECVONLY);
  89. BT_ASSERT(cd != -1);
  90. }
  91. void testtpconnect_service(TPSVCINFO *svcinfo) {
  92. userlogc((char*) "testtpconnect_service");
  93. tpreturn(TPSUCCESS, 0, NULL, 0, 0);
  94. }