jdk/test/java/util/ResourceBundle/RestrictedBundleTest.java
changeset 38598 6a1b521db882
parent 38597 3e6c168b4edb
parent 38592 858bcf5481e6
child 38600 aad06058a621
equal deleted inserted replaced
38597:3e6c168b4edb 38598:6a1b521db882
     1 /*
       
     2  * Copyright (c) 2007, 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  * @test
       
    25  * @bug 4126805
       
    26  * @ignore until 6842022 is resolved
       
    27  * @run applet RestrictedBundleTest.html
       
    28  * @summary I was able to reproduce this bug with 1.2b2, but not with the current 1.2
       
    29  * build.  It appears that it was fixed by changes to the class-loading mechanism,
       
    30  * which now throws a ClassNotFoundException where before it was propagating through
       
    31  * a bogus ClassFormatError.  Therefore, this is just an additional regression test
       
    32  * for whatever bug that was.
       
    33  */
       
    34 
       
    35 import java.util.ResourceBundle;
       
    36 import java.applet.Applet;
       
    37 import java.util.MissingResourceException;
       
    38 
       
    39 public class RestrictedBundleTest extends Applet {
       
    40     public void init() {
       
    41         super.init();
       
    42         try {
       
    43             ResourceBundle bundle = ResourceBundle.getBundle("unavailable.base.name");
       
    44 
       
    45             throw new RuntimeException("Error: MissingResourceException is not thrown");
       
    46         }
       
    47         catch (MissingResourceException e) {
       
    48             // other types of error will propagate back out into the test harness
       
    49             System.out.println("OK");
       
    50         }
       
    51     }
       
    52 }