Main.java revision 13901:b2a69d66dc65
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
24package jdk.test;
25
26import p1.Bundle;
27import java.lang.reflect.Module;
28import java.util.ResourceBundle;
29
30public 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        ResourceBundle rb1 = Bundle.getBundle(M1_RESOURCE_BUNDLE_NAME);
43        ResourceBundle rb2 = ResourceBundle.getBundle(M1_RESOURCE_BUNDLE_NAME, m1);
44        if (rb1 != rb2) {
45            throw new RuntimeException("unexpected resource bundle");
46        }
47
48        System.setSecurityManager(new SecurityManager());
49
50        // no permission needed for local resource
51        ResourceBundle.getBundle(TEST_RESOURCE_BUNDLE_NAME, Main.class.getModule());
52
53        // resource bundle through m1's exported API
54        Bundle.getBundle(M1_RESOURCE_BUNDLE_NAME);
55
56        try {
57            // fail to get resource bundle in another module
58            ResourceBundle.getBundle(M1_RESOURCE_BUNDLE_NAME, m1);
59            throw new RuntimeException("should deny access");
60        } catch (SecurityException e) {}
61    }
62
63}
64