1 /*
   2  * Copyright (c) 2016, 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 package jdk.test;
  25 
  26 import p1.Bundle;
  27 import java.lang.reflect.Module;
  28 import java.util.ResourceBundle;
  29 
  30 public class Main {
  31     private static final String TEST_RESOURCE_BUNDLE_NAME
  32             = "jdk.test.resources.TestResources";
  33     private static final String M1_RESOURCE_BUNDLE_NAME
  34             = "p1.resources.MyResources";
  35 
  36     public static void main(String[] args) {
  37         // local resource
  38         ResourceBundle.getBundle(TEST_RESOURCE_BUNDLE_NAME, Main.class.getModule());
  39 
  40         // resource in another module
  41         Module m1 = p1.Bundle.class.getModule();
  42 
  43         // bundles loaded with different cache key
  44         ResourceBundle rb1 = Bundle.getBundle(M1_RESOURCE_BUNDLE_NAME);
  45         ResourceBundle rb2 = ResourceBundle.getBundle(M1_RESOURCE_BUNDLE_NAME, m1);
  46         if (rb1 == rb2) {
  47             throw new RuntimeException("unexpected resource bundle");
  48         }
  49 
  50         System.setSecurityManager(new SecurityManager());
  51 
  52         // no permission needed for local resource
  53         ResourceBundle.getBundle(TEST_RESOURCE_BUNDLE_NAME, Main.class.getModule());
  54 
  55         // resource bundle through m1's exported API
  56         Bundle.getBundle(M1_RESOURCE_BUNDLE_NAME);
  57 
  58         try {
  59             // fail to get resource bundle in another module
  60             ResourceBundle.getBundle(M1_RESOURCE_BUNDLE_NAME, m1);
  61             throw new RuntimeException("should deny access");
  62         } catch (SecurityException e) {}
  63     }
  64 
  65 }