AdministrationTest.java
上传用户: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. package org.jboss.blacktie.jatmibroker.admin;
  19. import junit.framework.TestCase;
  20. import org.apache.log4j.LogManager;
  21. import org.apache.log4j.Logger;
  22. import org.jboss.blacktie.jatmibroker.RunServer;
  23. import org.jboss.blacktie.jatmibroker.xatmi.Connection;
  24. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionException;
  25. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionFactory;
  26. import org.jboss.blacktie.jatmibroker.xatmi.Response;
  27. import org.jboss.blacktie.jatmibroker.xatmi.X_OCTET;
  28. public class AdministrationTest extends TestCase {
  29. private static final Logger log = LogManager
  30. .getLogger(AdministrationTest.class);
  31. private RunServer runServer = new RunServer();
  32. private Connection connection;
  33. private String service = "default_ADMIN_1";
  34. private String callAdmin(String command, char expect) throws Exception {
  35. int sendlen = command.length() + 1;
  36. X_OCTET sendbuf = (X_OCTET) connection.tpalloc("X_OCTET", null);
  37. sendbuf.setByteArray(command.getBytes());
  38. Response buf = connection.tpcall(service, sendbuf, sendlen, 0);
  39. assertTrue(buf != null);
  40. byte[] received = ((X_OCTET) buf.getBuffer()).getByteArray();
  41. assertTrue(received[0] == expect);
  42. return new String(received, 1, received.length - 1);
  43. }
  44. private void callBAR() throws ConnectionException {
  45. connection.tpcall("BAR", null, 0, 0);
  46. log.info("call BAR OK");
  47. }
  48. public void setUp() throws Exception {
  49. runServer.serverinit();
  50. ConnectionFactory connectionFactory = ConnectionFactory
  51. .getConnectionFactory();
  52. connection = connectionFactory.getConnection();
  53. }
  54. public void tearDown() {
  55. runServer.serverdone();
  56. }
  57. public void testShutdown() throws Exception {
  58. log.info("testShutdown");
  59. callAdmin("serverdone", '1');
  60. }
  61. public void testAdvertiseAndUnadvertise() throws Exception {
  62. log.info("testAdvertiseAndUnadvertise");
  63. callBAR();
  64. callAdmin("unadvertise,BAR", '1');
  65. try {
  66. callBAR();
  67. fail("Should fail when unadvertise BAR");
  68. } catch (ConnectionException e) {
  69. assertTrue("Error was: " + e.getTperrno(), 
  70. e.getTperrno() == Connection.TPENOENT);
  71. }
  72. callAdmin("advertise,BAR", '1');
  73. callBAR();
  74. // can not (un)advertise ADMIN service
  75. callAdmin("advertise,default_ADMIN_1", '0');
  76. callAdmin("unadvertise,default_ADMIN_1", '0');
  77. // can not (un)advertise UNKNOW service
  78. callAdmin("advertise,UNKNOW", '0');
  79. callAdmin("unadvertise,UNKNOW", '0');
  80. }
  81. public void testGetServiceCounter() throws Exception {
  82. log.info("testGetServiceCounter");
  83. int n = -1;
  84. callBAR();
  85. n = Integer.parseInt(callAdmin("counter,BAR,", '1'));
  86. assertTrue(n == 1);
  87. }
  88. public void testGetServiceStatus() throws Exception {
  89. log.info("testGetServiceStatus");
  90. String status = callAdmin("status", '1');
  91. log.info("status is " + status);
  92. status = callAdmin("status,BAR,", '1');
  93. log.info("status is " + status);
  94. }
  95. public void testPauseAndResumeServer() throws Exception {
  96. log.info("testPauseAndResumeServer");
  97. callAdmin("pause", '1');
  98. log.info("pause server OK");
  99. callAdmin("unadvertise,BAR,", '1');
  100. callAdmin("advertise,BAR,", '1');
  101. try {
  102. log.info("call BAR should time out after 20 second");
  103. callBAR();
  104. } catch (ConnectionException e) {
  105. assertTrue("Error was: " + e.getTperrno(), 
  106. e.getTperrno() == Connection.TPETIME);
  107. }
  108. callAdmin("resume", '1');
  109. log.info("resume server OK");
  110. callBAR();
  111. }
  112. }