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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
/*
* Copyright (c) 2007, 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 5004188
* @run main TestSerialization 1.5.0_10.ser 1.6.0.ser
* @summary Tests serialization of VetoableChangeSupport
* @author Sergey Malenkov
*/
import java.beans.PropertyChangeEvent;
import java.beans.VetoableChangeListener;
import java.beans.VetoableChangeListenerProxy;
import java.beans.VetoableChangeSupport;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
public final class TestSerialization implements VetoableChangeListener, Serializable {
private static final String NAME = "property";
public static void main(String[] args) throws Exception {
if (args.length == 0) {
String file = System.getProperty("java.version") + ".ser";
serialize(file, create());
}
else {
byte[] array = serialize(create());
for (String file : args) {
check(deserialize(file));
check(array, read(file));
}
}
}
private static VetoableChangeSupport create() {
VetoableChangeSupport vcs = new VetoableChangeSupport(TestSerialization.class);
vcs.addVetoableChangeListener(new TestSerialization(0));
vcs.addVetoableChangeListener(NAME, new TestSerialization(1));
return vcs;
}
private static void check(VetoableChangeSupport vcs) {
VetoableChangeListener[] namedListeners = vcs.getVetoableChangeListeners(NAME);
check(namedListeners, 1);
check(namedListeners[0], 1);
VetoableChangeListener[] allListeners = vcs.getVetoableChangeListeners();
check(allListeners, 2);
check(allListeners[0], 0);
check(allListeners[1], 1, NAME);
}
private static void check(byte[] a1, byte[] a2) {
int length = a1.length;
if (length != a2.length)
throw new Error("Different file sizes: " + length + " != " + a2.length);
for (int i = 0; i < length; i++)
if (a1[i] != a2[i])
throw new Error("Different bytes at " + i + " position");
}
private static void check(VetoableChangeListener[] array, int length) {
if (length != array.length)
throw new Error("Unexpected amount of listeners: " + array.length);
}
private static void check(VetoableChangeListener listener, int index) {
if (!(listener instanceof TestSerialization))
throw new Error("Unexpected listener: " + listener);
TestSerialization object = (TestSerialization)listener;
if (index != object.index)
throw new Error("Unexpected index: " + index + " != " + object.index);
}
private static void check(VetoableChangeListener listener, int index, String name) {
if (!(listener instanceof VetoableChangeListenerProxy))
throw new Error("Unexpected listener: " + listener);
VetoableChangeListenerProxy object = (VetoableChangeListenerProxy)listener;
if (!name.equals(object.getPropertyName()))
throw new Error("Unexpected name: " + name + " != " + object.getPropertyName());
check((VetoableChangeListener)object.getListener(), index);
}
private static byte[] read(String file) throws Exception {
FileInputStream stream = null;
try {
stream = new FileInputStream(new File(System.getProperty("test.src", "."), file));
ByteArrayOutputStream out = new ByteArrayOutputStream();
for (int i = stream.read(); i != -1; i = stream.read())
out.write(i);
return out.toByteArray();
}
finally {
if (stream != null)
stream.close();
}
}
private static VetoableChangeSupport deserialize(String file) throws Exception {
ObjectInputStream stream = null;
try {
stream = new ObjectInputStream(new FileInputStream(new File(System.getProperty("test.src", "."), file)));
return (VetoableChangeSupport)stream.readObject();
}
finally {
if (stream != null)
stream.close();
}
}
private static void serialize(String file, VetoableChangeSupport vcs) throws Exception {
ObjectOutputStream stream = null;
try {
stream = new ObjectOutputStream(new FileOutputStream(new File(System.getProperty("test.src", "."), file)));
stream.writeObject(vcs);
}
finally {
if (stream != null)
stream.close();
}
}
private static byte[] serialize(VetoableChangeSupport vcs) throws Exception {
ObjectOutputStream stream = null;
try {
ByteArrayOutputStream out = new ByteArrayOutputStream();
stream = new ObjectOutputStream(out);
stream.writeObject(vcs);
return out.toByteArray();
}
finally {
if (stream != null)
stream.close();
}
}
private int index;
public TestSerialization(int index) {
this.index = index;
}
public int getIndex() {
return this.index;
}
public void vetoableChange(PropertyChangeEvent event) {
}
}
|