1 /*
   2  * Copyright (c) 2015, 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 java.lang.reflect.Module;
  27 import java.util.MissingResourceException;
  28 import java.util.ResourceBundle;
  29 
  30 public class Main {
  31     static final String MAIN_BUNDLES_RESOURCE = "jdk.test.resources.MyResources";
  32     public static void main(String[] args) {
  33         if (args.length == 1 && args[0].equals("cache")) {
  34             // first load resource bundle in the cache
  35             jdk.test.util.Bundles.getBundle();
  36 
  37             // fail to load resource bundle that is present in the cache
  38             try {
  39                 Module mainbundles = jdk.test.util.Bundles.class.getModule();
  40                 ResourceBundle rb = ResourceBundle.getBundle(MAIN_BUNDLES_RESOURCE, mainbundles);
  41                 throw new RuntimeException("ERROR: test module loads " + rb);
  42             } catch (MissingResourceException e) {
  43                 System.out.println("Expected: " + e.getMessage());
  44             }
  45         } else {
  46             // fail to load resource bundle; NON_EXISTENT_BUNDLE in the cache
  47             try {
  48                 Module mainbundles = jdk.test.util.Bundles.class.getModule();
  49                 ResourceBundle rb = ResourceBundle.getBundle(MAIN_BUNDLES_RESOURCE, mainbundles);
  50                 throw new RuntimeException("ERROR: test module loads " + rb);
  51             } catch (MissingResourceException e) {
  52                 System.out.println("Expected: " + e.getMessage());
  53             }
  54 
  55             // successfully load the resource bundle
  56             jdk.test.util.Bundles.getBundle();
  57         }
  58     }
  59 }