Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/io/Serializable/enum/ignoreSerializationMethods/Test.java
41159 views
1
/*
2
* Copyright (c) 2003, 2019, 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 4838379
26
* @summary Verify that custom serialization methods defined by enum types are
27
* not invoked during serialization or deserialization.
28
*/
29
30
import java.io.*;
31
32
enum Foo {
33
34
foo,
35
bar {
36
@SuppressWarnings("serial") /* Incorrect declarations are being tested */
37
private void writeObject(ObjectOutputStream out) throws IOException {
38
throw new Error("bar.writeObject invoked");
39
}
40
@SuppressWarnings("serial") /* Incorrect declarations are being tested */
41
private void readObject(ObjectInputStream in)
42
throws IOException, ClassNotFoundException
43
{
44
throw new Error("bar.readObject invoked");
45
}
46
@SuppressWarnings("serial") /* Incorrect declarations are being tested */
47
Object writeReplace() throws ObjectStreamException {
48
throw new Error("bar.writeReplace invoked");
49
}
50
// readResolve cannot be defined until Enum.readResolve is removed
51
// Object readResolve() throws ObjectStreamException {
52
// throw new Error("bar.readResolve invoked");
53
// }
54
};
55
56
@SuppressWarnings("serial") /* Incorrect use is being tested */
57
private void writeObject(ObjectOutputStream out) throws IOException {
58
throw new Error("Foo.writeObject invoked");
59
}
60
@SuppressWarnings("serial") /* Incorrect use is being tested */
61
private void readObject(ObjectInputStream in)
62
throws IOException, ClassNotFoundException
63
{
64
throw new Error("Foo.readObject invoked");
65
}
66
@SuppressWarnings("serial") /* Incorrect use is being tested */
67
Object writeReplace() throws ObjectStreamException {
68
throw new Error("Foo.writeReplace invoked");
69
}
70
// readResolve cannot be defined until Enum.readResolve is removed
71
// Object readResolve() throws ObjectStreamException {
72
// throw new Error("Foo.readResolve invoked");
73
// }
74
}
75
76
public class Test {
77
public static void main(String[] args) throws Exception {
78
ByteArrayOutputStream bout = new ByteArrayOutputStream();
79
ObjectOutputStream oout = new ObjectOutputStream(bout);
80
for (Foo f : Foo.values()) {
81
oout.writeObject(f);
82
}
83
oout.close();
84
ObjectInputStream oin = new ObjectInputStream(
85
new ByteArrayInputStream(bout.toByteArray()));
86
for (Foo f : Foo.values()) {
87
Object obj = oin.readObject();
88
if (obj != f) {
89
throw new Error("expected " + f + ", got " + obj);
90
}
91
}
92
}
93
}
94
95