/modules/rmi/src/test/api/java/org/apache/harmony/rmi/RegistryTest.java

https://github.com/apache/harmony-classlib · Java · 257 lines · 155 code · 31 blank · 71 comment · 0 complexity · 05be1eefdb7925a4c210daee214ba2ed MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. *
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. /**
  19. * @author Mikhail A. Markov, Vasily Zakharov
  20. */
  21. package org.apache.harmony.rmi;
  22. import java.net.InetAddress;
  23. import java.rmi.Naming;
  24. import java.rmi.RMISecurityManager;
  25. import java.rmi.Remote;
  26. import java.rmi.registry.LocateRegistry;
  27. import java.rmi.registry.Registry;
  28. import java.rmi.server.UnicastRemoteObject;
  29. import org.apache.harmony.rmi.test.MyRemoteObject1;
  30. import junit.framework.Test;
  31. import junit.framework.TestSuite;
  32. /**
  33. * Unit test for RMI Registry.
  34. *
  35. * @author Mikhail A. Markov, Vasily Zakharov
  36. */
  37. public class RegistryTest extends RMITestBase {
  38. /**
  39. * No-arg constructor to enable serialization.
  40. */
  41. public RegistryTest() {
  42. super();
  43. }
  44. /**
  45. * Constructs this test case with the given name.
  46. *
  47. * @param name
  48. * Name for this test case.
  49. */
  50. public RegistryTest(String name) {
  51. super(name);
  52. }
  53. /**
  54. * Tests registry creation and destruction.
  55. *
  56. * @throws Exception
  57. * If some error occurs.
  58. */
  59. public void testBasic() throws Exception {
  60. System.setSecurityManager(new RMISecurityManager());
  61. // Create registry.
  62. int port = CUSTOM_PORT_1;
  63. Registry reg = LocateRegistry.createRegistry(port);
  64. System.out.println("Registry on CUSTOM port ("
  65. + port + ") created.");
  66. // Destroy registry.
  67. UnicastRemoteObject.unexportObject(reg, true);
  68. System.out.println("Test complete.");
  69. }
  70. /**
  71. * Tests registry operation in detail.
  72. *
  73. * @throws Exception
  74. * If some error occurs.
  75. */
  76. public void testDetailed() throws Exception {
  77. try {
  78. System.setSecurityManager(new RMISecurityManager());
  79. String localHost = InetAddress.getLocalHost().getHostName();
  80. // Create registry.
  81. int port = REGISTRY_PORT;
  82. Registry reg = LocateRegistry.createRegistry(port);
  83. System.out.println("Registry on DEFAULT port ("
  84. + port + ") created.");
  85. Remote obj1 = new MyRemoteObject1("RemoteObject1");
  86. exportedObjects.add(obj1);
  87. Remote obj2 = new MyRemoteObject1("RemoteObject2");
  88. exportedObjects.add(obj2);
  89. Remote obj3 = new MyRemoteObject1("RemoteObject3");
  90. exportedObjects.add(obj3);
  91. Remote obj4 = new MyRemoteObject1("RemoteObject4");
  92. exportedObjects.add(obj4);
  93. Remote obj5 = new MyRemoteObject1("RemoteObject5");
  94. exportedObjects.add(obj5);
  95. Remote obj6 = new MyRemoteObject1("RemoteObject6");
  96. exportedObjects.add(obj6);
  97. Remote obj7 = new MyRemoteObject1("RemoteObject7");
  98. exportedObjects.add(obj7);
  99. Remote obj8 = new MyRemoteObject1("RemoteObject8");
  100. exportedObjects.add(obj8);
  101. System.out.println("Test objects exported.");
  102. // Check bind.
  103. System.out.println("Testing valid Naming.bind names...");
  104. Naming.bind("rmi://" + localHost + ":1099/RemoteObject1", obj1);
  105. Naming.bind("rmi://127.0.0.1:1099/RemoteObject2", obj2);
  106. Naming.bind("//" + localHost + ":1099/RemoteObject3", obj3);
  107. Naming.bind("//localhost:1099/RemoteObject4", obj4);
  108. Naming.bind("//:1099/RemoteObject5", obj5);
  109. Naming.bind("//:/RemoteObject6", obj6);
  110. Naming.bind("//" + localHost + "/RemoteObject7", obj7);
  111. Naming.bind("RemoteObject8", obj8);
  112. System.out.println("Done:");
  113. printArray(Naming.list(""));
  114. System.out.println("Checking bind complete.");
  115. // Check rebind.
  116. System.out.println("Testing valid Naming.rebind names...");
  117. Naming.rebind("rmi://" + localHost + ":1099/RemoteObject1", obj1);
  118. Naming.rebind("rmi://127.0.0.1:1099/RemoteObject2", obj2);
  119. Naming.rebind("//" + localHost + ":1099/RemoteObject3", obj3);
  120. Naming.rebind("//localhost:1099/RemoteObject4", obj4);
  121. Naming.rebind("//:1099/RemoteObject5", obj5);
  122. Naming.rebind("//:/RemoteObject6", obj6);
  123. Naming.rebind("//" + localHost + "/RemoteObject7", obj7);
  124. Naming.rebind("RemoteObject8", obj8);
  125. System.out.println("Done:");
  126. printArray(Naming.list("//127.0.0.1:/"));
  127. System.out.println("Checking rebind complete.");
  128. // Check lookup.
  129. System.out.println("Testing valid Naming.lookup names...");
  130. System.out.println(Naming.lookup("rmi://" + localHost + ":1099/RemoteObject1"));
  131. System.out.println(Naming.lookup("rmi://127.0.0.1:/RemoteObject2"));
  132. System.out.println(Naming.lookup("//" + localHost + ":1099/RemoteObject3"));
  133. System.out.println(Naming.lookup("//localhost:1099/RemoteObject4"));
  134. System.out.println(Naming.lookup("//:1099/RemoteObject5"));
  135. System.out.println(Naming.lookup("//:/RemoteObject6"));
  136. System.out.println(Naming.lookup("//" + localHost + "/RemoteObject7"));
  137. System.out.println(Naming.lookup("RemoteObject8"));
  138. System.out.println("Done:");
  139. printArray(Naming.list("rmi://" + localHost + ""));
  140. System.out.println("Checking lookup complete.");
  141. // Check unbind.
  142. System.out.println("Testing valid Naming.unbind names...");
  143. Naming.unbind("rmi://" + localHost + ":1099/RemoteObject1");
  144. Naming.unbind("rmi://127.0.0.1:1099/RemoteObject2");
  145. Naming.unbind("//" + localHost + ":1099/RemoteObject3");
  146. Naming.unbind("//localhost:1099/RemoteObject4");
  147. Naming.unbind("//:1099/RemoteObject5");
  148. Naming.unbind("//:/RemoteObject6");
  149. Naming.unbind("//" + localHost + "/RemoteObject7");
  150. Naming.unbind("RemoteObject8");
  151. System.out.println("Done:");
  152. printArray(Naming.list("//localhost"));
  153. System.out.println("Checking unbind complete.");
  154. // Destroy registry.
  155. UnicastRemoteObject.unexportObject(reg, true);
  156. // Create registry.
  157. port = CUSTOM_PORT_2;
  158. reg = LocateRegistry.createRegistry(port);
  159. System.out.println("Registry on CUSTOM port ("
  160. + port + ") created.");
  161. // Check bind.
  162. System.out.println("Testing valid Naming.bind names...");
  163. Naming.bind("rmi://" + localHost + ':' + port + "/RemoteObject1", obj1);
  164. Naming.bind("rmi://127.0.0.1:" + port + "/RemoteObject2", obj2);
  165. Naming.bind("//" + localHost + ':' + port + "/RemoteObject3", obj3);
  166. Naming.bind("//localhost:" + port + "/RemoteObject4", obj4);
  167. Naming.bind("//:" + port + "/RemoteObject5", obj5);
  168. System.out.println("Done:");
  169. printArray(Naming.list("//localhost:" + port));
  170. System.out.println("Checking bind complete.");
  171. // Check rebind.
  172. System.out.println("Testing valid Naming.rebind names...");
  173. Naming.rebind("rmi://" + localHost + ':' + port + "/RemoteObject1", obj1);
  174. Naming.rebind("rmi://127.0.0.1:" + port + "/RemoteObject2", obj2);
  175. Naming.rebind("//" + localHost + ':' + port + "/RemoteObject3", obj3);
  176. Naming.rebind("//localhost:" + port + "/RemoteObject4", obj4);
  177. Naming.rebind("//:" + port + "/RemoteObject5", obj5);
  178. System.out.println("Done:");
  179. printArray(Naming.list("//127.0.0.1:" + port + "/"));
  180. System.out.println("Checking rebind complete.");
  181. // Check lookup.
  182. System.out.println("Testing valid Naming.lookup names...");
  183. System.out.println(Naming.lookup("rmi://" + localHost + ':' + port + "/RemoteObject1"));
  184. System.out.println(Naming.lookup("rmi://127.0.0.1:" + port + "/RemoteObject2"));
  185. System.out.println(Naming.lookup("//" + localHost + ':' + port + "/RemoteObject3"));
  186. System.out.println(Naming.lookup("//localhost:" + port + "/RemoteObject4"));
  187. System.out.println(Naming.lookup("//:" + port + "/RemoteObject5"));
  188. System.out.println("Done:");
  189. printArray(Naming.list("rmi://:" + port));
  190. System.out.println("Checking lookup complete.");
  191. // Check unbind.
  192. System.out.println("Testing valid Naming.unbind names...");
  193. Naming.unbind("rmi://" + localHost + ':' + port + "/RemoteObject1");
  194. Naming.unbind("rmi://127.0.0.1:" + port + "/RemoteObject2");
  195. Naming.unbind("//" + localHost + ':' + port + "/RemoteObject3");
  196. Naming.unbind("//localhost:" + port + "/RemoteObject4");
  197. Naming.unbind("//:" + port + "/RemoteObject5");
  198. System.out.println("Done:");
  199. printArray(Naming.list("//localhost:" + port));
  200. System.out.println("Checking unbind complete.");
  201. // Destroy registry.
  202. UnicastRemoteObject.unexportObject(reg, true);
  203. } finally {
  204. System.out.println("Unexporting objects");
  205. unexportObjects();
  206. }
  207. System.out.println("Test complete.");
  208. }
  209. /**
  210. * Returns test suite for this class.
  211. *
  212. * @return Test suite for this class.
  213. */
  214. public static Test suite() {
  215. return new TestSuite(RegistryTest.class);
  216. }
  217. /**
  218. * Starts the testing from the command line.
  219. *
  220. * @param args
  221. * Command line parameters.
  222. */
  223. public static void main(String args[]) {
  224. junit.textui.TestRunner.run(suite());
  225. }
  226. }