1 /*
   2  * Copyright (c) 2005, 2014, 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 6245733
  27  * @summary synopsis: rmid's registry's list operation doesn't include
  28  * activation system
  29  * @author Ann Wollrath
  30  *
  31  * @library ../../../testlibrary
  32  * @modules java.rmi/sun.rmi.registry
  33  *          java.rmi/sun.rmi.server
  34  *          java.rmi/sun.rmi.transport
  35  *          java.rmi/sun.rmi.transport.tcp
  36  * @build TestLibrary RMID ActivationLibrary
  37  * @run main/othervm/timeout=240 LookupActivationSystem
  38  */
  39 
  40 import java.rmi.*;
  41 import java.rmi.activation.*;
  42 import java.rmi.registry.*;
  43 import java.rmi.server.*;
  44 import java.io.Serializable;
  45 
  46 public class LookupActivationSystem implements Remote, Serializable {
  47 
  48     private static final String NAME = ActivationSystem.class.getName();
  49 
  50     public static void main(String[] args) throws Exception {
  51 
  52         System.out.println("\nRegression test for bug 6245733\n");
  53 
  54         RMID rmid = null;
  55 
  56         try {
  57             RMID.removeLog();
  58             rmid = RMID.createRMID();
  59             rmid.start();
  60 
  61             System.err.println("look up activation system");
  62             Registry rmidRegistry =
  63                 LocateRegistry.getRegistry(rmid.getPort());
  64             ActivationSystem system = (ActivationSystem)
  65                 rmidRegistry.lookup(NAME);
  66 
  67             if (system instanceof ActivationSystem) {
  68                 System.err.println("test1 passed: lookup succeeded");
  69             }
  70 
  71             System.err.println("get list of rmid internal registry");
  72             String[] list = rmidRegistry.list();
  73             if (list.length == 1 && list[0].equals(NAME)) {
  74                 System.err.println(
  75                     "test2 passed: activation system found in list");
  76             } else {
  77                 throw new RuntimeException("test2 FAILED");
  78             }
  79 
  80             try {
  81                 rmidRegistry.bind(NAME, new LookupActivationSystem());
  82                 throw new RuntimeException("test3 FAILED: bind succeeded!");
  83             } catch (ServerException e) {
  84                 if (e.getCause() instanceof AccessException) {
  85                     System.err.println(
  86                         "test3 passed: binding ActivationSystem " +
  87                         "failed as expected");
  88                 } else {
  89                     throw new RuntimeException(
  90                         "test3 FAILED: incorrect cause: " + e.getCause());
  91                 }
  92 
  93             }
  94 
  95             try {
  96                 rmidRegistry.rebind(NAME, new LookupActivationSystem());
  97                 throw new RuntimeException("test4 FAILED: rebind succeeded!");
  98             } catch (ServerException e) {
  99                 if (e.getCause() instanceof AccessException) {
 100                     System.err.println(
 101                         "test4 passed: rebinding ActivationSystem " +
 102                         "failed as expected");
 103                 } else {
 104                     throw new RuntimeException(
 105                         "test4 FAILED: incorrect cause: " + e.getCause());
 106                 }
 107             }
 108 
 109             try {
 110                 rmidRegistry.unbind(NAME);
 111                 throw new RuntimeException("test4 FAILED: unbind succeeded!");
 112             } catch (ServerException e) {
 113                 if (e.getCause() instanceof AccessException) {
 114                     System.err.println(
 115                         "test5 passed: unbinding ActivationSystem " +
 116                         "failed as expected");
 117                 } else {
 118                     throw new RuntimeException(
 119                         "test5 FAILED: incorrect cause: " + e.getCause());
 120                 }
 121             }
 122 
 123 
 124         } finally {
 125             rmid.cleanup();
 126         }
 127     }
 128 }