jdk-24/test/hotspot/jtreg/runtime/Nestmates/privateFields/TestPrivateField.java
David Holmes 95bf19563b 8010319: Implementation of JEP 181: Nest-Based Access Control
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Maurizio Mimadamore <maurizio.mimadamore@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Tobias Hartmann <tobias.hartmann@oracle.com>
Co-authored-by: Vlaidmir Ivanov <vladimir.x.ivanov@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Vladimir Kozlov <vladimir.kozlov@oracle.com>
Co-authored-by: John Rose <john.r.rose@oracle.com>
Co-authored-by: Daniel Smith <daniel.smith@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Kumar Srinivasan <kumardotsrinivasan@gmail.com>
Co-authored-by: Boris Ulasevich <boris.ulasevich@bell-sw.com>
Reviewed-by: alanb, psandoz, mchung, coleenp, acorn, mcimadamore, forax, jlahoda, sspitsyn, abuckley
2018-06-23 01:32:41 -04:00

132 lines
3.9 KiB
Java

/*
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8046171
* @summary Test access to private fields between nestmates and nest-host
* using different flavours of named nested types
* @run main TestPrivateField
*/
public class TestPrivateField {
// Private field of nest-host for nestmates to access
private int priv_field;
// public constructor so we aren't relying on private access
public TestPrivateField() {}
// Methods that will access private fields of nestmates
// NOTE: No StaticIface variants as interfaces can't have instance fields
void access_priv(TestPrivateField o) {
this.priv_field = o.priv_field++;
}
void access_priv(InnerNested o) {
this.priv_field = o.priv_field++;
}
void access_priv(StaticNested o) {
this.priv_field = o.priv_field++;
}
// The various nestmates
static interface StaticIface {
// Methods that will access private fields of nestmates
default void access_priv(TestPrivateField o) {
int priv_field = o.priv_field++;
}
default void access_priv(InnerNested o) {
int priv_field = o.priv_field++;
}
default void access_priv(StaticNested o) {
int priv_field = o.priv_field++;
}
}
static class StaticNested {
private int priv_field;
// public constructor so we aren't relying on private access
public StaticNested() {}
// Methods that will access private fields of nestmates
void access_priv(TestPrivateField o) {
this.priv_field = o.priv_field++;
}
void access_priv(InnerNested o) {
this.priv_field = o.priv_field++;
}
void access_priv(StaticNested o) {
this.priv_field = o.priv_field++;
}
}
class InnerNested {
private int priv_field;
// public constructor so we aren't relying on private access
public InnerNested() {}
void access_priv(TestPrivateField o) {
this.priv_field = o.priv_field++;
}
void access_priv(InnerNested o) {
this.priv_field = o.priv_field++;
}
void access_priv(StaticNested o) {
this.priv_field = o.priv_field++;
}
}
public static void main(String[] args) {
TestPrivateField o = new TestPrivateField();
StaticNested s = new StaticNested();
InnerNested i = o.new InnerNested();
StaticIface intf = new StaticIface() {};
o.access_priv(new TestPrivateField());
o.access_priv(i);
o.access_priv(s);
s.access_priv(o);
s.access_priv(i);
s.access_priv(new StaticNested());
i.access_priv(o);
i.access_priv(o.new InnerNested());
i.access_priv(s);
intf.access_priv(o);
intf.access_priv(i);
intf.access_priv(s);
}
}