diff options
author | 2015-12-09 09:57:36 +0000 | |
---|---|---|
committer | 2015-12-09 11:36:59 +0000 | |
commit | ce025fa3dabb408e3b4f66b58b28cfaa99da9995 (patch) | |
tree | e7f45cd858ba35efa29caf3027855ba88207c29e | |
parent | fea7529305d865cddef31b148a6322286b70636a (diff) |
New regression test in 042-new-instance
Test that Constructor#newInstance uses its caller
frame for the accessibility check.
Bug: 25817515
Change-Id: If8743ac39281db3378da93f793489c1e8f7ea15a
(cherry picked from commit 7a980a2f6af2f0cd83c1ab223a7736a18a8ccde3)
-rw-r--r-- | test/042-new-instance/expected.txt | 1 | ||||
-rw-r--r-- | test/042-new-instance/src/Main.java | 9 | ||||
-rw-r--r-- | test/042-new-instance/src/otherpackage/ConstructorAccess.java | 36 |
3 files changed, 45 insertions, 1 deletions
diff --git a/test/042-new-instance/expected.txt b/test/042-new-instance/expected.txt index 7d843d1b3f..c5de313baf 100644 --- a/test/042-new-instance/expected.txt +++ b/test/042-new-instance/expected.txt @@ -9,3 +9,4 @@ Cons StaticInnerClass succeeded Cons got expected PackageAccess complaint Cons got expected InstantationException Cons got expected PackageAccess2 complaint +Cons ConstructorAccess succeeded diff --git a/test/042-new-instance/src/Main.java b/test/042-new-instance/src/Main.java index b0a5fd4f66..8cd6b2ee7d 100644 --- a/test/042-new-instance/src/Main.java +++ b/test/042-new-instance/src/Main.java @@ -156,6 +156,14 @@ public class Main { ex.printStackTrace(); } + // should succeed + try { + otherpackage.ConstructorAccess.newConstructorInstance(); + System.out.println("Cons ConstructorAccess succeeded"); + } catch (Exception ex) { + System.err.println("Cons ConstructorAccess failed"); + ex.printStackTrace(); + } } class InnerClass { @@ -173,7 +181,6 @@ class LocalClass2 { public LocalClass2() {} } - class LocalClass3 { public static void main() { try { diff --git a/test/042-new-instance/src/otherpackage/ConstructorAccess.java b/test/042-new-instance/src/otherpackage/ConstructorAccess.java new file mode 100644 index 0000000000..a74e9a0650 --- /dev/null +++ b/test/042-new-instance/src/otherpackage/ConstructorAccess.java @@ -0,0 +1,36 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package otherpackage; + +import java.lang.reflect.Constructor; + +public class ConstructorAccess { + + static class Inner { + Inner() {} + } + + // Test for regression in b/25817515. Inner class constructor should + // be accessible from this static method, but if we over-shoot and check + // accessibility using the frame below (in Main class), we will see an + // IllegalAccessException from #newInstance + static public void newConstructorInstance() throws Exception { + Class c = Inner.class; + Constructor cons = c.getDeclaredConstructor((Class[]) null); + Object obj = cons.newInstance(); + } +} |