LoopyServerAndClient.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 "LoopyServerAndClient.h"
  20. #include "xatmi.h"
  21. #include "userlogc.h"
  22. #include "AtmiBrokerServerControl.h"
  23. #include "AtmiBrokerClientControl.h"
  24. void LoopyServerAndClient::setUp() {
  25. init_ace();
  26. userlogc((char*) "LoopyServerAndClient::setUp");
  27. // Perform global set up
  28. TestFixture::setUp();
  29. }
  30. void LoopyServerAndClient::tearDown() {
  31. userlogc((char*) "LoopyServerAndClient::tearDown");
  32. // Perform global clean up
  33. TestFixture::tearDown();
  34. }
  35. void loopy(TPSVCINFO* tpsvcinfo) {
  36. userlogc((char*) "loopy");
  37. }
  38. void LoopyServerAndClient::testLoopyAll() {
  39. userlogc((char*) "testLoopyAll");
  40. int result = 0;
  41. for (int i = 0; i < 3; i++) {
  42. result = serverinit(0, NULL);
  43. BT_ASSERT(result != -1);
  44. BT_ASSERT(tperrno == 0);
  45. result = clientinit();
  46. BT_ASSERT(result != -1);
  47. BT_ASSERT(tperrno == 0);
  48. result = tpadvertise((char*) "LOOPY", loopy);
  49. BT_ASSERT(result != -1);
  50. BT_ASSERT(tperrno == 0);
  51. result = clientdone(0);
  52. BT_ASSERT(result != -1);
  53. BT_ASSERT(tperrno == 0);
  54. result = serverdone();
  55. BT_ASSERT(result != -1);
  56. BT_ASSERT(tperrno == 0);
  57. }
  58. }
  59. void LoopyServerAndClient::testLoopyAll2() {
  60. userlogc((char*) "testLoopyAll2");
  61. int result = 0;
  62. for (int i = 0; i < 3; i++) {
  63. result = serverinit(0, NULL);
  64. BT_ASSERT(result != -1);
  65. BT_ASSERT(tperrno == 0);
  66. result = tpadvertise((char*) "LOOPY", loopy);
  67. BT_ASSERT(result != -1);
  68. BT_ASSERT(tperrno == 0);
  69. result = clientinit();
  70. BT_ASSERT(result != -1);
  71. BT_ASSERT(tperrno == 0);
  72. result = clientdone(0);
  73. BT_ASSERT(result != -1);
  74. BT_ASSERT(tperrno == 0);
  75. result = serverdone();
  76. BT_ASSERT(result != -1);
  77. BT_ASSERT(tperrno == 0);
  78. }
  79. }
  80. void LoopyServerAndClient::testLoopyAdvertise() {
  81. userlogc((char*) "testLoopyAdvertise");
  82. int result = 0;
  83. result = serverinit(0, NULL);
  84. BT_ASSERT(result != -1);
  85. BT_ASSERT(tperrno == 0);
  86. result = clientinit();
  87. BT_ASSERT(result != -1);
  88. BT_ASSERT(tperrno == 0);
  89. for (int i = 0; i < 3; i++) {
  90. result = tpadvertise((char*) "LOOPY", loopy);
  91. BT_ASSERT(result != -1);
  92. BT_ASSERT(tperrno == 0);
  93. result = tpunadvertise((char*) "LOOPY");
  94. BT_ASSERT(result != -1);
  95. BT_ASSERT(tperrno == 0);
  96. }
  97. result = clientdone(0);
  98. BT_ASSERT(result != -1);
  99. BT_ASSERT(tperrno == 0);
  100. result = serverdone();
  101. BT_ASSERT(result != -1);
  102. BT_ASSERT(tperrno == 0);
  103. }