author | sherman |
Mon, 05 Dec 2011 10:50:14 -0800 | |
changeset 11135 | fb2447d0a09c |
parent 9734 | b33a24d77590 |
child 12859 | c44b88bb9b5e |
permissions | -rw-r--r-- |
8394 | 1 |
/* |
9734
b33a24d77590
7044486: open jdk repos have files with incorrect copyright headers, which can end up in src bundles
katleman
parents:
8394
diff
changeset
|
2 |
* Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved. |
8394 | 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 |
* |
|
25 |
* Portions Copyright (c) 2010, 2011 IBM Corporation |
|
26 |
*/ |
|
27 |
||
28 |
/* |
|
29 |
* @test |
|
30 |
* @bug 6927486 |
|
31 |
* @summary A serialized Hashtable can be de-serialized properly. |
|
32 |
* @author Neil Richards <neil.richards@ngmr.net>, <neil_richards@uk.ibm.com> |
|
33 |
*/ |
|
34 |
||
35 |
import java.io.ByteArrayInputStream; |
|
36 |
import java.io.ByteArrayOutputStream; |
|
37 |
import java.io.IOException; |
|
38 |
import java.io.ObjectInputStream; |
|
39 |
import java.io.ObjectOutputStream; |
|
40 |
import java.io.PrintWriter; |
|
41 |
import java.io.StringWriter; |
|
42 |
import java.util.Hashtable; |
|
43 |
||
44 |
public class SimpleSerialization { |
|
45 |
public static void main(final String[] args) throws Exception { |
|
46 |
Hashtable<String, String> h1 = new Hashtable<>(); |
|
47 |
||
48 |
h1.put("key", "value"); |
|
49 |
||
50 |
final ByteArrayOutputStream baos = new ByteArrayOutputStream(); |
|
51 |
final ObjectOutputStream oos = new ObjectOutputStream(baos); |
|
52 |
||
53 |
oos.writeObject(h1); |
|
54 |
oos.close(); |
|
55 |
||
56 |
final byte[] data = baos.toByteArray(); |
|
57 |
final ByteArrayInputStream bais = new ByteArrayInputStream(data); |
|
58 |
final ObjectInputStream ois = new ObjectInputStream(bais); |
|
59 |
||
60 |
final Object deserializedObject = ois.readObject(); |
|
61 |
ois.close(); |
|
62 |
||
63 |
if (false == h1.equals(deserializedObject)) { |
|
64 |
throw new RuntimeException(getFailureText(h1, deserializedObject)); |
|
65 |
} |
|
66 |
} |
|
67 |
||
68 |
private static String getFailureText(final Object orig, final Object copy) { |
|
69 |
final StringWriter sw = new StringWriter(); |
|
70 |
final PrintWriter pw = new PrintWriter(sw); |
|
71 |
||
72 |
pw.println("Test FAILED: Deserialized object is not equal to the original object"); |
|
73 |
pw.print("\tOriginal: "); |
|
74 |
printObject(pw, orig).println(); |
|
75 |
pw.print("\tCopy: "); |
|
76 |
printObject(pw, copy).println(); |
|
77 |
||
78 |
pw.close(); |
|
79 |
return sw.toString(); |
|
80 |
} |
|
81 |
||
82 |
private static PrintWriter printObject(final PrintWriter pw, final Object o) { |
|
83 |
pw.printf("%s@%08x", o.getClass().getName(), System.identityHashCode(o)); |
|
84 |
return pw; |
|
85 |
} |
|
86 |
} |