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