0N/A/*
2362N/A * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A/*
0N/A @test
0N/A @summary test that locale invariants are preserved across serialization
0N/A @run main Bug4184873Test
0N/A @bug 4184873
0N/A*/
0N/A/*
0N/A *
0N/A *
0N/A * (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
0N/A *
0N/A * Portions copyright (c) 2007 Sun Microsystems, Inc.
0N/A * All Rights Reserved.
0N/A *
0N/A * The original version of this source code and documentation
0N/A * is copyrighted and owned by Taligent, Inc., a wholly-owned
0N/A * subsidiary of IBM. These materials are provided under terms
0N/A * of a License Agreement between Taligent and Sun. This technology
0N/A * is protected by multiple US and International patents.
0N/A *
0N/A * This notice and attribution to Taligent may not be removed.
0N/A * Taligent is a registered trademark of Taligent, Inc.
0N/A *
0N/A * Permission to use, copy, modify, and distribute this software
0N/A * and its documentation for NON-COMMERCIAL purposes and without
0N/A * fee is hereby granted provided that this copyright notice
0N/A * appears in all copies. Please refer to the file "copyright.html"
0N/A * for further important copyright and licensing information.
0N/A *
0N/A * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
0N/A * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
0N/A * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
0N/A * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
0N/A * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
0N/A * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
0N/A */
0N/A
0N/Aimport java.util.*;
0N/Aimport java.io.*;
0N/A
0N/A/**
0N/A * A Locale can never contain the following language codes: he, yi or id.
0N/A */
0N/Apublic class Bug4184873Test extends LocaleTestFmwk {
0N/A public static void main(String[] args) throws Exception {
0N/A if (args.length == 1 && args[0].equals("prepTest")) {
0N/A prepTest();
0N/A } else {
0N/A new Bug4184873Test().run(args);
0N/A }
0N/A }
0N/A
0N/A public void testIt() throws Exception {
0N/A verify("he");
0N/A verify("yi");
0N/A verify("id");
0N/A }
0N/A
0N/A private void verify(String lang) {
0N/A try {
0N/A ObjectInputStream in = getStream(lang);
0N/A if (in != null) {
0N/A final Locale loc = (Locale)in.readObject();
0N/A final Locale expected = new Locale(lang, "XX");
0N/A if (!(expected.equals(loc))) {
0N/A errln("Locale didn't maintain invariants for: "+lang);
0N/A errln(" got: "+loc);
0N/A errln(" excpeted: "+expected);
0N/A } else {
0N/A logln("Locale "+lang+" worked");
0N/A }
0N/A in.close();
0N/A }
0N/A } catch (Exception e) {
0N/A errln(e.toString());
0N/A }
0N/A }
0N/A
0N/A private ObjectInputStream getStream(String lang) {
0N/A try {
0N/A final File f = new File(System.getProperty("test.src", "."), "Bug4184873_"+lang);
0N/A return new ObjectInputStream(new FileInputStream(f));
0N/A } catch (Exception e) {
0N/A errln(e.toString());
0N/A return null;
0N/A }
0N/A }
0N/A
0N/A /**
0N/A * Create serialized output files of the test locales. After they are created, these test
0N/A * files should be corrupted (by hand) to contain invalid locale name values.
0N/A */
0N/A private static void prepTest() {
0N/A outputLocale("he");
0N/A outputLocale("yi");
0N/A outputLocale("id");
0N/A }
0N/A
0N/A private static void outputLocale(String lang) {
0N/A try {
0N/A ObjectOutputStream out = new ObjectOutputStream(
0N/A new FileOutputStream("Bug4184873_"+lang));
0N/A out.writeObject(new Locale(lang, "XX"));
0N/A out.close();
0N/A } catch (Exception e) {
0N/A System.out.println(e);
0N/A }
0N/A }
0N/A
0N/A}