File: BindingTestCase.java

package info (click to toggle)
libjboss-remoting-java 2.4.0~Beta2-1
  • links: PTS, VCS
  • area: contrib
  • in suites: lenny
  • size: 10,268 kB
  • ctags: 15,262
  • sloc: java: 115,889; xml: 1,019; makefile: 14; sh: 11
file content (274 lines) | stat: -rw-r--r-- 11,950 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
/*
* JBoss, a division of Red Hat
* Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.test.remoting.binding;

import java.io.ByteArrayInputStream;
import java.lang.reflect.Field;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.util.List;

import javax.management.MBeanServer;
import javax.xml.parsers.DocumentBuilderFactory;

import junit.framework.TestCase;

import org.jboss.remoting.InvocationRequest;
import org.jboss.remoting.InvokerLocator;
import org.jboss.remoting.InvokerRegistry;
import org.jboss.remoting.ServerInvocationHandler;
import org.jboss.remoting.ServerInvoker;
import org.jboss.remoting.callback.InvokerCallbackHandler;
import org.jboss.remoting.transport.Connector;
import org.jboss.remoting.transport.PortUtil;
import org.jboss.remoting.transport.socket.SocketServerInvoker;
import org.w3c.dom.Document;
import org.w3c.dom.Element;

/**
 * BindingTestCase verifies that the case in which the InvokerLocator host is
 * 0.0.0.0 is handled correctly.
 *  
 * @author <a href="mailto:tom@jboss.org">Tom Elrod</a>
 */
public class BindingTestCase extends TestCase
{
   /**
    * Verifies correct behavior for InvokerLocator host == 0.0.0.0, where 
    * InvokerLocator is reconstructed with host as localhost name.
    */
   public void testBindingWithLocatorByName() throws Exception
   {
      System.setProperty(InvokerLocator.BIND_BY_HOST, "true");
      String locatorUrl = "socket://0.0.0.0:5600";

      Connector connector = new Connector(locatorUrl);
      connector.create();
      connector.start();

      // Verify that the InvokerLocator host is set properly.
      String connectorLocatorUrl = connector.getInvokerLocator();
      System.out.println("connector locator = " + connectorLocatorUrl);
      String hostName = InetAddress.getLocalHost().getHostName();
      assertFalse(-1 == connectorLocatorUrl.indexOf(hostName));

      // Verify that the ServerSocket is bound to address 0.0.0.0.
      ServerInvoker si = connector.getServerInvoker();
      assertTrue(si instanceof SocketServerInvoker);
      SocketServerInvoker ssi = (SocketServerInvoker) si;
      Field field = SocketServerInvoker.class.getDeclaredField("serverSockets");
      field.setAccessible(true);
      List serverSockets = (List) field.get(ssi);
      ServerSocket ss = (ServerSocket) serverSockets.get(0);
      assertNotNull(ss);
      System.out.println("ServerSocket bind address: " + ss.getInetAddress());
      InetAddress inetAddress = ss.getInetAddress();
      assertNotNull(inetAddress);
      assertEquals("0.0.0.0", inetAddress.getHostAddress());
      
      connector.stop();
      connector.destroy();
      
      // Make sure ServerInvoker was destroyed, which implies it was reregistered
      // under correct InvokerLocator.
      assertEquals(0, InvokerRegistry.getServerInvokers().length);
   }
   
   /**
    * Verifies correct behavior for InvokerLocator host == 0.0.0.0, where 
    * InvokerLocator is reconstructed with host as localhost address.
    */
   public void testBindingWithLocatorByAddress() throws Exception
   {
      System.setProperty(InvokerLocator.BIND_BY_HOST, "false");
      String locatorUrl = "socket://0.0.0.0:5600";

      Connector connector = new Connector(locatorUrl);
      connector.create();
      connector.start();

      // Verify that the InvokerLocator host is set properly.
      String connectorLocatorUrl = connector.getInvokerLocator();
      System.out.println("connector locator = " + connectorLocatorUrl);
      String hostName = InetAddress.getLocalHost().getHostAddress();
      assertFalse(-1 == connectorLocatorUrl.indexOf(hostName));

      // Verify that the ServerSocket is bound to address 0.0.0.0.
      ServerInvoker si = connector.getServerInvoker();
      assertTrue(si instanceof SocketServerInvoker);
      SocketServerInvoker ssi = (SocketServerInvoker) si;
      Field field = SocketServerInvoker.class.getDeclaredField("serverSockets");
      field.setAccessible(true);
      List serverSockets = (List) field.get(ssi);
      ServerSocket ss = (ServerSocket) serverSockets.get(0);
      assertNotNull(ss);
      System.out.println("ServerSocket bind address: " + ss.getInetAddress());
      InetAddress inetAddress = ss.getInetAddress();
      assertNotNull(inetAddress);
      assertEquals("0.0.0.0", inetAddress.getHostAddress());
      
      connector.stop();
      connector.destroy();
      
      // Make sure ServerInvoker was destroyed, which implies it was reregistered
      // under correct InvokerLocator.
      assertEquals(0, InvokerRegistry.getServerInvokers().length);
   }
   
   
   /**
    * Verifies correct behavior for XML document with host == 0.0.0.0, where 
    * InvokerLocator is reconstructed with host as localhost name.
    */
   public void testBindingsWithXMLConfigByname() throws Exception
   {
      System.setProperty(InvokerLocator.BIND_BY_HOST, "true");
      int bindPort = PortUtil.findFreePort("0.0.0.0");
   
      String xml = new StringBuffer()
        .append("<mbean code=\"org.jboss.remoting.transport.Connector\"\n")
        .append(" name=\"jboss.messaging:service=Connector,transport=socket\"\n")
        .append(" display-name=\"Connector\">\n")
        .append(" <attribute name=\"Configuration\">\n")
        .append("  <config>\n")
        .append("   <invoker transport=\"socket\">\n")
        .append("    <attribute name=\"" + ServerInvoker.SERVER_BIND_ADDRESS_KEY + "\">0.0.0.0</attribute>\n")
        .append("    <attribute name=\"" + ServerInvoker.SERVER_BIND_PORT_KEY + "\">" + bindPort + "</attribute>\n")
        .append("   </invoker>\n")
        .append("   <handlers>\n")
        .append("    <handler subsystem=\"test\">" + SampleInvocationHandler.class.getName() + "</handler>\n")
        .append("   </handlers>\n")
        .append("  </config>\n")
        .append(" </attribute>\n")
        .append("</mbean>\n").toString();
      Connector connector = new Connector();
      ByteArrayInputStream bais = new ByteArrayInputStream(xml.getBytes());
      Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(bais);
      Element element =  doc.getDocumentElement();
      connector.setConfiguration(element);
      connector.create();
      connector.start();

      // Verify that the InvokerLocator host is set properly.
      String connectorLocatorUrl = connector.getInvokerLocator();
      System.out.println("connector locator = " + connectorLocatorUrl);
      String hostName = InetAddress.getLocalHost().getHostName();
      assertFalse(-1 == connectorLocatorUrl.indexOf(hostName));

      // Verify that the ServerSocket is bound to address 0.0.0.0.
      ServerInvoker si = connector.getServerInvoker();
      assertTrue(si instanceof SocketServerInvoker);
      SocketServerInvoker ssi = (SocketServerInvoker) si;
      Field field = SocketServerInvoker.class.getDeclaredField("serverSockets");
      field.setAccessible(true);
      List serverSockets = (List) field.get(ssi);
      ServerSocket ss = (ServerSocket) serverSockets.get(0);
      assertNotNull(ss);
      System.out.println("ServerSocket bind address: " + ss.getInetAddress());
      InetAddress inetAddress = ss.getInetAddress();
      assertNotNull(inetAddress);
      assertEquals("0.0.0.0", inetAddress.getHostAddress());

      connector.stop();
      connector.destroy();

      // Make sure ServerInvoker was destroyed, which implies it was reregistered
      // under correct InvokerLocator.
      assertEquals(0, InvokerRegistry.getServerInvokers().length);
   }
 
   
   /**
    * Verifies correct behavior for XML document with host == 0.0.0.0, where 
    * InvokerLocator is reconstructed with host as localhost address.
    */
   public void testBindingsWithXMLConfigByAddress() throws Exception
   {
      System.setProperty(InvokerLocator.BIND_BY_HOST, "false");
      int bindPort = PortUtil.findFreePort("0.0.0.0");
   
      String xml = new StringBuffer()
        .append("<mbean code=\"org.jboss.remoting.transport.Connector\"\n")
        .append(" name=\"jboss.messaging:service=Connector,transport=socket\"\n")
        .append(" display-name=\"Connector\">\n")
        .append(" <attribute name=\"Configuration\">\n")
        .append("  <config>\n")
        .append("   <invoker transport=\"socket\">\n")
        .append("    <attribute name=\"" + ServerInvoker.SERVER_BIND_ADDRESS_KEY + "\">0.0.0.0</attribute>\n")
        .append("    <attribute name=\"" + ServerInvoker.SERVER_BIND_PORT_KEY + "\">" + bindPort + "</attribute>\n")
        .append("   </invoker>\n")
        .append("   <handlers>\n")
        .append("    <handler subsystem=\"test\">" + SampleInvocationHandler.class.getName() + "</handler>\n")
        .append("   </handlers>\n")
        .append("  </config>\n")
        .append(" </attribute>\n")
        .append("</mbean>\n").toString();
      Connector connector = new Connector();
      ByteArrayInputStream bais = new ByteArrayInputStream(xml.getBytes());
      Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(bais);
      Element element =  doc.getDocumentElement();
      connector.setConfiguration(element);
      connector.create();
      connector.start();

      // Verify that the InvokerLocator host is set properly.
      String connectorLocatorUrl = connector.getInvokerLocator();
      System.out.println("connector locator = " + connectorLocatorUrl);
      String hostName = InetAddress.getLocalHost().getHostAddress();
      assertFalse(-1 == connectorLocatorUrl.indexOf(hostName));

      // Verify that the ServerSocket is bound to address 0.0.0.0.
      ServerInvoker si = connector.getServerInvoker();
      assertTrue(si instanceof SocketServerInvoker);
      SocketServerInvoker ssi = (SocketServerInvoker) si;
      Field field = SocketServerInvoker.class.getDeclaredField("serverSockets");
      field.setAccessible(true);
      List serverSockets = (List) field.get(ssi);
      ServerSocket ss = (ServerSocket) serverSockets.get(0);
      assertNotNull(ss);
      System.out.println("ServerSocket bind address: " + ss.getInetAddress());
      InetAddress inetAddress = ss.getInetAddress();
      assertNotNull(inetAddress);
      assertEquals("0.0.0.0", inetAddress.getHostAddress());

      connector.stop();
      connector.destroy();

      // Make sure ServerInvoker was destroyed, which implies it was reregistered
      // under correct InvokerLocator.
      assertEquals(0, InvokerRegistry.getServerInvokers().length);
   }
   
   
   public static class SampleInvocationHandler implements ServerInvocationHandler
   {
      public Object invoke(InvocationRequest invocation) throws Throwable
      {
         return invocation.getParameter();
      }
      
      public void addListener(InvokerCallbackHandler callbackHandler) {}
      public void removeListener(InvokerCallbackHandler callbackHandler) {}
      public void setMBeanServer(MBeanServer server) {}
      public void setInvoker(ServerInvoker invoker) {}
   }
}