1 /*
   2  * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 6238815
  27  * @summary test the new interface Addressable
  28  * @author Shanliang JIANG
  29  * @run clean AddressableTest
  30  * @run build AddressableTest
  31  * @run main AddressableTest
  32  */
  33 
  34 import java.util.*;
  35 import java.net.MalformedURLException;
  36 import java.io.IOException;
  37 
  38 import javax.management.*;
  39 import javax.management.remote.*;
  40 import javax.management.remote.rmi.*;
  41 
  42 public class AddressableTest {
  43     private static final String[] protocols = {"rmi", "iiop"};
  44     private static final String[] prefixes = {"stub", "ior"};
  45 
  46     private static final MBeanServer mbs = MBeanServerFactory.createMBeanServer();
  47 
  48     private static boolean isProtocolSupported(String protocol) {
  49         if (protocol.equals("rmi"))
  50             return true;
  51         if (protocol.equals("iiop")) {
  52             try {
  53                 Class.forName("javax.management.remote.rmi._RMIConnectionImpl_Tie");
  54                 return true;
  55             } catch (ClassNotFoundException x) { }
  56         }
  57         return false;
  58     }
  59 
  60     public static void main(String[] args) throws Exception {
  61         System.out.println(">>> test the new interface Addressable.");
  62         boolean ok = true;
  63 
  64         for (int i = 0; i < protocols.length; i++) {
  65             String protocol = protocols[i];
  66             if (isProtocolSupported(protocol)) {
  67                 try {
  68                     test(protocol, prefixes[i]);
  69                     System.out.println(">>> Test successed for "+protocols[i]);
  70                 } catch (Exception e) {
  71                     System.out.println(">>> Test failed for "+protocols[i]);
  72                     e.printStackTrace(System.out);
  73                     ok = false;
  74                 }
  75             } else {
  76                 System.out.format(">>> Test skipped for %s, protocol not supported%n",
  77                     protocol);
  78             }
  79         }
  80 
  81         if (ok) {
  82             System.out.println(">>> All Test passed.");
  83         } else {
  84             System.out.println(">>> Some TESTs FAILED");
  85             throw new RuntimeException("See log for details");
  86         }
  87     }
  88 
  89     public static void test(String proto, String prefix) throws Exception {
  90         JMXServiceURL url = new JMXServiceURL("service:jmx:" + proto + "://");
  91         JMXConnectorServer server =
  92                     JMXConnectorServerFactory.newJMXConnectorServer(url, null, mbs);
  93 
  94         server.start();
  95 
  96         JMXServiceURL serverAddr1 = server.getAddress();
  97         System.out.println(">>> Created a server with address "+serverAddr1);
  98 
  99         JMXConnector client1 = JMXConnectorFactory.connect(serverAddr1);
 100         JMXServiceURL clientAddr1 = ((JMXAddressable)client1).getAddress();
 101 
 102         System.out.println(">>> Created a client with address "+clientAddr1);
 103 
 104         if (!serverAddr1.equals(clientAddr1)) {
 105             throw new RuntimeException("The "+proto+" client does not return correct address.");
 106         }
 107 
 108         int i = clientAddr1.toString().indexOf(prefix);
 109 
 110         JMXServiceURL clientAddr2 =
 111             new JMXServiceURL("service:jmx:"+proto+":///"+clientAddr1.toString().substring(i));
 112 
 113         JMXConnector client2 = JMXConnectorFactory.connect(clientAddr2);
 114 
 115         System.out.println(">>> Created a client with address "+clientAddr2);
 116 
 117         if (!clientAddr2.equals(((JMXAddressable)client2).getAddress())) {
 118             throw new RuntimeException("The "+proto+" client does not return correct address.");
 119         }
 120 
 121         System.out.println(">>> The new client's host is "+clientAddr2.getHost()
 122                                +", port is "+clientAddr2.getPort());
 123 
 124         client1.close();
 125         client2.close();
 126         server.stop();
 127     }
 128 }