1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
/*
* Copyright (c) 2013, 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.
*/
import java.beans.IndexedPropertyDescriptor;
import java.beans.MethodDescriptor;
import java.beans.PropertyDescriptor;
/*
* @test
* @bug 7172854 7172865
* @summary Tests that cached methods are not lost
* @author Sergey Malenkov
* @run main/othervm -Xmx128m Test7172865
*/
public class Test7172865 {
public static void main(String[] args) throws Exception {
int errors = 0;
MethodDescriptor md = new MethodDescriptor(Test7172865.class.getMethod("getGood"));
errors += test(PropertyDescriptor.class, "good", true);
PropertyDescriptor pdGoodString = new PropertyDescriptor("good", Test7172865.class, "getGood", "setGood");
PropertyDescriptor pdGoodMethod = new PropertyDescriptor("good",
Test7172865.class.getMethod("getGood"),
Test7172865.class.getMethod("setGood", args.getClass()));
errors += test(PropertyDescriptor.class, "bad", false);
PropertyDescriptor pdBadString = new PropertyDescriptor("bad", Test7172865.class, "getBad", null);
PropertyDescriptor pdBadMethod = new PropertyDescriptor("bad",
Test7172865.class.getMethod("getBad"),
Test7172865.class.getMethod("setBad", args.getClass()));
errors += test(IndexedPropertyDescriptor.class, "good", true);
IndexedPropertyDescriptor ipdGoodString = new IndexedPropertyDescriptor("good", Test7172865.class, "getGood", "setGood", "getGood", "setGood");
IndexedPropertyDescriptor ipdGoodMethod = new IndexedPropertyDescriptor("good",
Test7172865.class.getMethod("getGood"),
Test7172865.class.getMethod("setGood", args.getClass()),
Test7172865.class.getMethod("getGood", Integer.TYPE),
Test7172865.class.getMethod("setGood", Integer.TYPE, String.class));
errors += test(IndexedPropertyDescriptor.class, "bad", false);
IndexedPropertyDescriptor ipdBadString = new IndexedPropertyDescriptor("bad", Test7172865.class, "getBad", null, "getBad", null);
IndexedPropertyDescriptor ipdBadMethod = new IndexedPropertyDescriptor("bad",
Test7172865.class.getMethod("getBad"),
Test7172865.class.getMethod("setBad", args.getClass()),
Test7172865.class.getMethod("getBad", Integer.TYPE),
Test7172865.class.getMethod("setBad", Integer.TYPE, String.class));
for (int i = 1; i <= 2; i++) {
System.out.println("STEP: " + i);
errors += test("md", null != md.getMethod());
errors += test("pdGoodString", pdGoodString, true, true);
errors += test("pdGoodMethod", pdGoodMethod, true, true);
errors += test("pdBadString", pdBadString, true, false);
errors += test("pdBadMethod", pdBadMethod, true, true);
errors += test("ipdGoodString", ipdGoodString, true, true, true, true);
errors += test("ipdGoodMethod", ipdGoodMethod, true, true, true, true);
errors += test("ipdBadString", ipdBadString, true, false, true, false);
errors += test("ipdBadMethod", ipdBadMethod, true, true, true, true);
try {
int[] array = new int[1024];
while (true) {
array = new int[array.length << 1];
}
}
catch (OutOfMemoryError error) {
System.gc();
}
}
if (errors > 0) {
throw new Error("found " + errors + " errors");
}
}
private static int test(Class<?> type, String property, boolean value) {
String message = type.getSimpleName() + "(" + property + ") ";
try {
type.getConstructor(String.class, Class.class).newInstance(property, Test7172865.class);
message += "passed";
}
catch (Exception exception) {
message += "failed";
value = !value;
}
if (value) {
message += " as expected";
}
System.out.println(message);
return value ? 0 : 1;
}
private static int test(String message, boolean value) {
System.out.println(message + ": " + (value ? "passed" : "failed"));
return value ? 0 : 1;
}
private static int test(String message, PropertyDescriptor pd, boolean rm, boolean wm) {
return test(message + ".Read", rm == (null != pd.getReadMethod()))
+ test(message + ".Write", wm == (null != pd.getWriteMethod()));
}
private static int test(String message, IndexedPropertyDescriptor ipd, boolean rm, boolean wm, boolean irm, boolean iwm) {
return test(message, ipd, rm, wm)
+ test(message + ".IndexedRead", irm == (null != ipd.getIndexedReadMethod()))
+ test(message + ".IndexedWrite", iwm == (null != ipd.getIndexedWriteMethod()));
}
public String[] getGood() {
return null;
}
public String getGood(int index) {
return null;
}
public void setGood(String[] good) {
}
public void setGood(int index, String value) {
}
public String[] getBad() {
return null;
}
public String getBad(int index) {
return null;
}
public Test7172865 setBad(String[] bad) {
return null;
}
public Test7172865 setBad(int index, String value) {
return null;
}
}
|