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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
/*
* Copyright (c) 1999, 2012, 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 4251010
* @summary equals does not works on stub objects created with
* custom socket AndFactory
* @author Laird Dornin
*
* @library ../../../testlibrary
* @modules java.rmi/sun.rmi.registry
* java.rmi/sun.rmi.server
* java.rmi/sun.rmi.transport
* java.rmi/sun.rmi.transport.tcp
* @build TestLibrary
* @run main/othervm/timeout=40 VerifyRemoteEquals
*/
import java.io.*;
import java.net.*;
import java.rmi.*;
import java.rmi.server.*;
/**
* Test ensures that a stub that has never been serialized and one
* that has can be .equals(). Test also ensures that stubs with
* custom socket factories can be .equals() with equivalent stubs.
*/
public class VerifyRemoteEquals {
/**
* Remote interface.
*/
public interface Test extends Remote {
}
/**
* Implementation of Remote interface passing custom socket
* factories
*/
public static final class TestImpl
extends UnicastRemoteObject implements Test
{
public TestImpl() throws RemoteException {
super();
}
public TestImpl(RMIClientSocketFactory clientFactory,
RMIServerSocketFactory serverFactory)
throws RemoteException
{
super(0, clientFactory, serverFactory);
}
public TestImpl(RMISocketFactory factory)
throws RemoteException
{
super(0, factory, factory);
}
}
/**
* Remote interface for retrieving Test object.
*/
public interface TestHome extends Remote {
public Test get() throws RemoteException;
}
/**
* Implementation of interface TestHome.
*/
public static final class TestHomeImpl
extends UnicastRemoteObject implements TestHome
{
private Test test;
public TestHomeImpl(Test test)
throws RemoteException {
super();
this.test = test;
}
public Test get() {
return test;
}
}
/**
* Custom server socket factory.
*/
public static final class ServerSocketAndFactory
extends ServerSocket implements RMIServerSocketFactory, Serializable
{
ServerSocketAndFactory() throws IOException, java.net.UnknownHostException {
// I am forced to do something useless with the parent
// constructor
super(0);
}
ServerSocketAndFactory(int port) throws IOException,
java.net.UnknownHostException
{
super(port);
}
public ServerSocket createServerSocket(int port)
throws IOException
{
return new ServerSocketAndFactory(port);
}
public int hashCode() {
return getLocalPort();
}
public boolean equals(Object obj) {
if (obj instanceof ServerSocketAndFactory) {
ServerSocketAndFactory ssf = (ServerSocketAndFactory) obj;
if (getLocalPort() == ssf.getLocalPort()) {
return true;
}
}
return false;
}
}
/**
* Custom socket factory.
*/
public static final class ClientSocketAndFactory
extends Socket implements RMIClientSocketFactory, Serializable
{
ClientSocketAndFactory() {
}
ClientSocketAndFactory(String host, int port) throws IOException {
super(host, port);
}
public Socket createSocket(String host, int port)
throws IOException {
return new ClientSocketAndFactory(host, port);
}
public int hashCode() {
return getPort();
}
public boolean equals(Object obj) {
if (obj instanceof ClientSocketAndFactory) {
ClientSocketAndFactory csf = (ClientSocketAndFactory) obj;
if (getPort() == csf.getPort()) {
return true;
}
}
return false;
}
}
public static void main(String[] args) {
try {
System.out.println("\n\nRegression test for, 4251010\n\n");
Test test = new TestImpl(new ClientSocketAndFactory(),
new ServerSocketAndFactory());
TestHome home = new TestHomeImpl(test);
Test test0 = ((Test) RemoteObject.toStub(test));
Test test1 = ((TestHome) RemoteObject.toStub(home)).get();
Test test2 = ((TestHome) RemoteObject.toStub(home)).get();
Test test3 = ((Test) (new MarshalledObject(test)).get());
if (test0.equals(test1)) {
System.out.println("test0, test1, stubs equal");
} else {
TestLibrary.bomb("test0, test1, stubs not equal");
}
if (test1.equals(test2)) {
System.out.println("test1, test2, stubs equal");
} else {
TestLibrary.bomb("test1, test2, stubs not equal");
}
// explicitly compare an unmarshalled object with toStub
// return
if (test2.equals(test3)) {
System.out.println("test2, test3, stubs equal");
} else {
TestLibrary.bomb("test2, test3, stubs not equal");
}
test0 = null;
test1 = null;
test2 = null;
test3 = null;
TestLibrary.unexport(test);
TestLibrary.unexport(home);
System.err.println("test passed: stubs were equal");
} catch (Exception e) {
TestLibrary.bomb("test got unexpected exception", e);
}
}
}
|