Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/io/ObjectInputStream/ResolveProxyClass.java
41149 views
1
/*
2
* Copyright (c) 1999, 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 4258644
26
* @summary ObjectInputStream's default implementation of its protected
27
* resolveProxyClass method is specified to pass the first non-null class
28
* loader up the execution stack to the Proxy.getProxyClass method when
29
* it creates the specified proxy class; this test makes sure that it does
30
* that in situations where it hadn't in the past, such as if the defining
31
* loaders of the interfaces were all strict ancestors of the first
32
* non-null loader up the stack.
33
* @author Peter Jones
34
*
35
* @build ResolveProxyClass
36
* @run main ResolveProxyClass
37
*/
38
39
import java.io.*;
40
41
public class ResolveProxyClass {
42
43
/*
44
* This class is a dummy ObjectInputStream subclass that allows the
45
* test code to access ObjectInputStream's protected resolveProxyClass
46
* method directly.
47
*/
48
private static class TestObjectInputStream extends ObjectInputStream {
49
50
TestObjectInputStream() throws IOException {
51
super();
52
}
53
54
protected Class<?> resolveProxyClass(String[] interfaces)
55
throws IOException, ClassNotFoundException
56
{
57
return super.resolveProxyClass(interfaces);
58
}
59
}
60
61
public static void main(String[] args) {
62
63
System.err.println("\nRegression test for bug 4258644\n");
64
65
try {
66
67
/*
68
* Set this thread's context class loader to null, so that the
69
* resolveProxyClass implementation cannot cheat by guessing that
70
* the context class loader is the appropriate loader to pass to
71
* the Proxy.getProxyClass method.
72
*/
73
Thread.currentThread().setContextClassLoader(null);
74
75
/*
76
* Expect the proxy class to be defined in the system class
77
* loader, because that is the defining loader of this test
78
* code, and it should be the first loader on the stack when
79
* ObjectInputStream.resolveProxyClass gets executed.
80
*/
81
ClassLoader expectedLoader = ResolveProxyClass.class.getClassLoader();
82
83
TestObjectInputStream in = new TestObjectInputStream();
84
Class<?> proxyClass = in.resolveProxyClass(
85
new String[] { Runnable.class.getName() });
86
ClassLoader proxyLoader = proxyClass.getClassLoader();
87
System.err.println("proxy class \"" + proxyClass +
88
"\" defined in loader: " + proxyLoader);
89
90
if (proxyLoader != expectedLoader) {
91
throw new RuntimeException(
92
"proxy class defined in loader: " + proxyLoader);
93
}
94
95
System.err.println("\nTEST PASSED");
96
97
} catch (Throwable e) {
98
System.err.println("\nTEST FAILED:");
99
e.printStackTrace();
100
throw new RuntimeException("TEST FAILED: " + e.toString());
101
}
102
}
103
}
104
105