// to reuse socket
Thread.currentThread().sleep(1000 * 30);
se2.enumerateListenEndpoints(lc2);
ArrayList endpoints2 = lc2.getEndpoints();
for (int i=0; i<endpoints.size(); i++){
EndpointHolder eph = (EndpointHolder) endpoints.get(i);
EndpointHolder eph2 = (EndpointHolder) endpoints2.get(i);
ServerEndpoint.ListenEndpoint le = eph.getListenEndpoint();
ServerEndpoint.ListenEndpoint le2 = eph2.getListenEndpoint();
if (!le.equals(le2)){
throw new TestException("ListenEndpoint " + le
+ " on ServerEndpoint " + se + " is not considered"
+ " equal to ListenEndpoint " + le2 + " on functionally"
+ " equivalent ServerEndpoint " + se2);
}
if (!le2.equals(le)){
throw new TestException("ListenEndpoint " + le
+ " on ServerEndpoint " + se + " is not considered"
+ " equal to ListenEndpoint " + le2 + " on functionally"
+ " equivalent ServerEndpoint " + se2);
}
}
//Verify that endpoints that are not functionally equivalent
//are not considered equal
se2 = (ServerEndpoint) getConfigObject(
ServerEndpoint.class,"diffEndpoint");
if (se.equals(se2)) {
throw new TestException("Functionally different"
+ " endpoints are considered equal");
}
if (se2.equals(se)){
throw new TestException("Functionally different"
+ " endpoints are considered equal");
}
//Verify that ListenEndpoint on functionally equivalent
//ServerEndpoint instances are considered equal.
lc2 = new EqualityContext();
se2.enumerateListenEndpoints(lc2);
endpoints2 = lc2.getEndpoints();
for (int i=0; i<endpoints.size(); i++){
EndpointHolder eph = (EndpointHolder) endpoints.get(i);
EndpointHolder eph2 = (EndpointHolder) endpoints2.get(i);
ServerEndpoint.ListenEndpoint le = eph.getListenEndpoint();
ServerEndpoint.ListenEndpoint le2 = eph2.getListenEndpoint();
if (le.equals(le2)){
throw new TestException("ListenEndpoint " + le
+ " on ServerEndpoint " + se + " not considered"
+ " equal to ListenEndpoint " + le2 + " on functionally"
+ " different ServerEndpoint " + se2);