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

中间件编程

开发平台:

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 "Sleeper.h"
  21. #include "xatmi.h"
  22. #include "TestTPDiscon.h"
  23. extern void testtpdiscon_service(TPSVCINFO *svcinfo);
  24. void TestTPDiscon::setUp() {
  25. userlogc((char*) "TestTPDiscon::setUp");
  26. sendbuf = NULL;
  27. // Setup server
  28. BaseServerTest::setUp();
  29. // Do local work
  30. sendlen = strlen("discon") + 1;
  31. BT_ASSERT((sendbuf = (char *) tpalloc((char*) "X_OCTET", NULL, sendlen)) != NULL);
  32. strcpy(sendbuf, "discon");
  33. BT_ASSERT(tperrno == 0);
  34. int toCheck = tpadvertise((char*) "TestTPDiscon", testtpdiscon_service);
  35. BT_ASSERT(tperrno == 0);
  36. BT_ASSERT(toCheck != -1);
  37. cd = ::tpconnect((char*) "TestTPDiscon", sendbuf, sendlen, TPSENDONLY);
  38. BT_ASSERT(tperrno == 0);
  39. BT_ASSERT(cd != -1);
  40. }
  41. void TestTPDiscon::tearDown() {
  42. userlogc((char*) "TestTPDiscon::tearDown");
  43. // Do local work
  44. ::tpfree(sendbuf);
  45. if (cd != -1) {
  46. ::tpdiscon(cd);
  47. }
  48. int toCheck = tpunadvertise((char*) "TestTPDiscon");
  49. BT_ASSERT(tperrno == 0);
  50. BT_ASSERT(toCheck != -1);
  51. // Clean up server
  52. BaseServerTest::tearDown();
  53. }
  54. void TestTPDiscon::test_tpdiscon() {
  55. userlogc((char*) "test_tpdiscon");
  56. ::tpdiscon(cd);
  57. BT_ASSERT(tperrno == 0);
  58. cd = -1;
  59. }
  60. void TestTPDiscon::test_tpdiscon_baddescr() {
  61. userlogc((char*) "test_tpdiscon_baddescr");
  62. ::tpdiscon(cd + 1);
  63. BT_ASSERT(tperrno == TPEBADDESC);
  64. }
  65. void TestTPDiscon::test_tpdiscon_negdescr() {
  66. userlogc((char*) "test_tpdiscon_negdescr");
  67. ::tpdiscon(-1);
  68. BT_ASSERT(tperrno == TPEBADDESC);
  69. }
  70. void testtpdiscon_service(TPSVCINFO *svcinfo) {
  71. userlogc((char*) "testtpdiscon_service");
  72. ::sleeper(2);
  73. }