0N/A/*
3261N/A * Copyright (c) 2005, 2010, 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 it is new version of old test which was under
0N/A * /src/share/test/serialization/piotest.java
0N/A * Test of serialization/deserialization of
0N/A * objects as arrays of arrays
0N/A */
0N/A
0N/Aimport java.io.*;
0N/A
0N/Apublic class ArraysOfArrays {
2496N/A public static void main (String argv[]) throws IOException {
0N/A System.err.println("\nRegression test for testing of " +
0N/A "serialization/deserialization of objects as " +
0N/A "arrays of arrays \n");
0N/A
0N/A FileInputStream istream = null;
2496N/A FileOutputStream ostream = null;
0N/A try {
2496N/A ostream = new FileOutputStream("piotest5.tmp");
0N/A ObjectOutputStream p = new ObjectOutputStream(ostream);
0N/A
0N/A byte b[][] = {{ 0, 1}, {2,3}};
0N/A p.writeObject((Object)b);
0N/A
0N/A short s[][] = {{ 0, 1, 2}, {3,4,5}};
0N/A p.writeObject((Object)s);
0N/A
0N/A char c[][] = {{ 0, 1, 2, 3}, {4, 5, 6, 7}};
0N/A p.writeObject((Object)c);
0N/A
0N/A int i[][] = {{ 0, 1, 2, 3, 4}, {5, 6, 7, 8, 9}};
0N/A p.writeObject((Object)i);
0N/A
0N/A long l[][] = {{ 0, 1, 2, 3, 4, 5}, {6,7,8,9,10,11}};
0N/A p.writeObject((Object)l);
0N/A
0N/A boolean z[][] = new boolean[2][2];
0N/A
0N/A z[0][0] = true;
0N/A z[0][1] = false;
0N/A z[1] = z[0]; // Use first row same as second
0N/A
0N/A p.writeObject((Object)z);
0N/A
0N/A float f[][] = {{ 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f},
0N/A { 1.1f, 2.1f, 3.1f, 4.1f, 5.1f, 6.1f}};
0N/A p.writeObject((Object)f);
0N/A
0N/A double d[][] = {{ 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0d},
0N/A { 1.1f, 2.1f, 3.1f, 4.1f, 5.1f, 6.1f, 7.1d}};
0N/A p.writeObject((Object)d);
0N/A
0N/A Integer Int[][] = {{ new Integer(3), new Integer(2)},
0N/A { new Integer(1), new Integer(0)}};
0N/A p.writeObject((Object)Int);
0N/A
0N/A p.flush();
0N/A
0N/A /* Now read them back and verify
0N/A */
0N/A istream = new FileInputStream("piotest5.tmp");
0N/A ObjectInputStream q = new ObjectInputStream(istream);
0N/A
0N/A byte b_u[][] = (byte [][]) (q.readObject());
0N/A for (int ix = 0; ix < b_u.length; ix++) {
0N/A for(int iy = 0; iy < b_u[ix].length; iy++) {
0N/A if (b[ix][iy] != b_u[ix][iy]) {
0N/A System.err.println("\nByte array mismatch [" +
0N/A ix + "][" + iy + " expected " + b[ix][iy] +
0N/A " actual = " + b_u[ix][iy]);
0N/A throw new Error();
0N/A }
0N/A }
0N/A }
0N/A
0N/A
0N/A short s_u[][] = (short [][])(q.readObject());
0N/A for (int ix = 0; ix < b_u.length; ix++) {
0N/A for(int iy = 0; iy < b_u[ix].length; iy++) {
0N/A if (b[ix][iy] != b_u[ix][iy]) {
0N/A System.err.println("\nshort array mismatch [" +
0N/A ix + "][" + iy + " expected " + b[ix][iy] +
0N/A " actual = " + b_u[ix][iy]);
0N/A throw new Error();
0N/A }
0N/A }
0N/A }
0N/A
0N/A char c_u[][] = (char [][])(q.readObject());
0N/A for (int ix = 0; ix < b_u.length; ix++) {
0N/A for(int iy = 0; iy < b_u[ix].length; iy++) {
0N/A if (b[ix][iy] != b_u[ix][iy]) {
0N/A System.err.println("\nchar array mismatch [" +
0N/A ix + "][" + iy + " expected " + b[ix][iy] +
0N/A " actual = " + b_u[ix][iy]);
0N/A throw new Error();
0N/A }
0N/A }
0N/A }
0N/A
0N/A int i_u[][] = (int [][])(q.readObject());
0N/A for (int ix = 0; ix < b_u.length; ix++) {
0N/A for(int iy = 0; iy < b_u[ix].length; iy++) {
0N/A if (b[ix][iy] != b_u[ix][iy]) {
0N/A System.err.println("\nint array mismatch [" +
0N/A ix + "][" + iy + " expected " + b[ix][iy] +
0N/A " actual = " + b_u[ix][iy]);
0N/A throw new Error();
0N/A }
0N/A }
0N/A }
0N/A
0N/A long l_u[][] = (long [][])(q.readObject());
0N/A for (int ix = 0; ix < b_u.length; ix++) {
0N/A for(int iy = 0; iy < b_u[ix].length; iy++) {
0N/A if (b[ix][iy] != b_u[ix][iy]) {
0N/A System.err.println("\nlong array mismatch [" +
0N/A ix + "][" + iy + " expected " + b[ix][iy] +
0N/A " actual = " + b_u[ix][iy]);
0N/A throw new Error();
0N/A }
0N/A }
0N/A }
0N/A
0N/A boolean z_u[][] = (boolean [][])(q.readObject());
0N/A for (int ix = 0; ix < b_u.length; ix++) {
0N/A for(int iy = 0; iy < b_u[ix].length; iy++) {
0N/A if (b[ix][iy] != b_u[ix][iy]) {
0N/A System.err.println("\nboolean array mismatch [" +
0N/A ix + "][" + iy + " expected " + b[ix][iy] +
0N/A " actual = " + b_u[ix][iy]);
0N/A throw new Error();
0N/A }
0N/A }
0N/A }
0N/A
0N/A float f_u[][] = (float [][])(q.readObject());
0N/A for (int ix = 0; ix < b_u.length; ix++) {
0N/A for(int iy = 0; iy < b_u[ix].length; iy++) {
0N/A if (b[ix][iy] != b_u[ix][iy]) {
0N/A System.err.println("\nfloat array mismatch [" +
0N/A ix + "][" + iy + " expected " + b[ix][iy] +
0N/A " actual = " + b_u[ix][iy]);
0N/A throw new Error();
0N/A }
0N/A }
0N/A }
0N/A
0N/A double d_u[][] = (double [][])(q.readObject());
0N/A for (int ix = 0; ix < b_u.length; ix++) {
0N/A for(int iy = 0; iy < b_u[ix].length; iy++) {
0N/A if (b[ix][iy] != b_u[ix][iy]) {
0N/A System.err.println("\ndouble array mismatch [" +
0N/A ix + "][" + iy + " expected " + b[ix][iy] +
0N/A " actual = " + b_u[ix][iy]);
0N/A throw new Error();
0N/A }
0N/A }
0N/A }
0N/A
0N/A Integer Int_u[][] = (Integer [][])(q.readObject());
0N/A for (int ix = 0; ix < b_u.length; ix++) {
0N/A for(int iy = 0; iy < b_u[ix].length; iy++) {
0N/A if (b[ix][iy] != b_u[ix][iy]) {
0N/A System.err.println("\nInteger array mismatch [" +
0N/A ix + "][" + iy + " expected " + b[ix][iy] +
0N/A " actual = " + b_u[ix][iy]);
0N/A throw new Error();
0N/A }
0N/A }
0N/A }
0N/A System.err.println("\nTEST PASSED");
0N/A } catch (Exception e) {
0N/A System.err.print("TEST FAILED: ");
0N/A e.printStackTrace();
0N/A
0N/A System.err.println("\nInput remaining");
0N/A int ch;
0N/A try {
0N/A while ((ch = istream.read()) != -1) {
0N/A System.err.print("\n " +Integer.toString(ch, 16) + " ");
0N/A }
0N/A System.err.println("\n ");
0N/A } catch (Exception f) {
0N/A throw new Error();
0N/A }
0N/A throw new Error();
2496N/A } finally {
2496N/A if (istream != null) istream.close();
2496N/A if (ostream != null) ostream.close();
0N/A }
0N/A }
0N/A}