1 /*
   2  * Copyright (c) 2004, 2015, 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 5065264
  27  * @summary Tests that JNDI bind failure doesn't leave an orphan RMI
  28  * Connector Server object
  29  * @author Eamonn McManus
  30  * @modules java.management.rmi
  31  * @run clean JNDIFailureTest
  32  * @run build JNDIFailureTest
  33  * @run main JNDIFailureTest
  34  */
  35 
  36 import java.io.IOException;
  37 import javax.management.*;
  38 import javax.management.remote.*;
  39 import javax.management.remote.rmi.*;
  40 
  41 public class JNDIFailureTest {
  42     public static void main(String[] args) throws Exception {
  43         MBeanServer mbs = MBeanServerFactory.createMBeanServer();
  44         JMXServiceURL jndiUrl =
  45             new JMXServiceURL("service:jmx:rmi:///jndi/nonexistenthost/x");
  46         SpyServerImpl impl = new SpyServerImpl();
  47         JMXConnectorServer cs =
  48             new RMIConnectorServer(jndiUrl, null, impl, mbs);
  49         try {
  50             cs.start();
  51         } catch (IOException e) {
  52             e.printStackTrace();
  53             if (impl.exported) {
  54                 System.out.println("TEST FAILS: server not unexported");
  55                 System.exit(1);
  56             } else {
  57                 if (cs.isActive()) {
  58                     System.out.println("TEST FAILS: server still active");
  59                     System.exit(1);
  60                 }
  61                 System.out.println("Test passed");
  62                 return;
  63             }
  64         }
  65         System.out.println("TEST FAILS: start did not throw exception");
  66         System.exit(1);
  67     }
  68 
  69     private static class SpyServerImpl extends RMIJRMPServerImpl {
  70         SpyServerImpl() throws IOException {
  71             super(0, null, null, null);
  72         }
  73 
  74         protected void export() throws IOException {
  75             super.export();
  76             exported = true;
  77         }
  78 
  79         protected void closeServer() throws IOException {
  80             super.closeServer();
  81             exported = false;
  82         }
  83 
  84         boolean exported;
  85     }
  86 }