blob: 101525924b35e9431b39cbbb84e7f2aa16076ea0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.api.ldap.model.message;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.util.HashMap;
import java.util.Map;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.parallel.Execution;
import org.junit.jupiter.api.parallel.ExecutionMode;
/**
* TestCase for the SearchResponseReferenceImpl class.
*
* @author <a href="mailto:dev@directory.apache.org"> Apache Directory Project</a>
*/
@Execution(ExecutionMode.CONCURRENT)
public class SearchResponseReferenceImplTest
{
private static final Map<String, Control> EMPTY_CONTROL_MAP = new HashMap<String, Control>();
/**
* Creates a baseline referral to test with and adds it to the supplied
* response object.
*
* @param resp
* the parent lockable
* @return the newly created referral for testing
*/
private Referral getReferral( SearchResultReference resp )
{
ReferralImpl ref = new ReferralImpl();
resp.setReferral( ref );
ref.addLdapUrl( "http://apache.org???" );
ref.addLdapUrl( "http://mit.edu???" );
ref.addLdapUrl( "http://abc.com???" );
return ref;
}
/**
* Tests for equality when the same object reference is used.
*/
@Test
public void testEqualsSameObject()
{
SearchResultReferenceImpl resp = new SearchResultReferenceImpl( 5 );
getReferral( resp );
assertTrue( resp.equals( resp ), "the same object should be equal" );
}
/**
* Tests for equality when an exact copy is compared.
*/
@Test
public void testEqualsExactCopy()
{
SearchResultReferenceImpl resp0 = new SearchResultReferenceImpl( 5 );
getReferral( resp0 );
SearchResultReferenceImpl resp1 = new SearchResultReferenceImpl( 5 );
getReferral( resp1 );
assertTrue( resp0.equals( resp1 ), "exact copies should be equal" );
assertTrue( resp1.equals( resp0 ), "exact copies should be equal" );
}
/**
* Tests for equality when a different implementation is used.
*/
@Test
public void testEqualsDiffImpl()
{
SearchResultReference resp0 = new SearchResultReference()
{
public Referral getReferral()
{
return SearchResponseReferenceImplTest.this.getReferral( this );
}
public void setReferral( Referral referral )
{
}
public MessageTypeEnum getType()
{
return MessageTypeEnum.SEARCH_RESULT_REFERENCE;
}
public Map<String, Control> getControls()
{
return EMPTY_CONTROL_MAP;
}
public SearchResultReference addControl( Control control )
{
return this;
}
public SearchResultReference removeControl( Control control )
{
return this;
}
public int getMessageId()
{
return 5;
}
public Object get( Object key )
{
return null;
}
public Object put( Object key, Object value )
{
return null;
}
public SearchResultReference addAllControls( Control[] controls )
{
return this;
}
public boolean hasControl( String oid )
{
return false;
}
public Control getControl( String oid )
{
return null;
}
public SearchResultReference setMessageId( int messageId )
{
return this;
}
};
SearchResultReferenceImpl resp1 = new SearchResultReferenceImpl( 5 );
getReferral( resp1 );
assertFalse( resp0.equals( resp1 ), "using Object.equal() should NOT be equal" );
assertTrue( resp1.equals( resp0 ), "same but different implementations should be equal" );
}
/**
* Tests for equal hashCode when the same object reference is used.
*/
@Test
public void testHashCodeSameObject()
{
SearchResultReferenceImpl resp = new SearchResultReferenceImpl( 5 );
getReferral( resp );
assertTrue( resp.hashCode() == resp.hashCode() );
}
/**
* Tests for equal hashCode when an exact copy is compared.
*/
@Test
public void testHashCodeExactCopy()
{
SearchResultReferenceImpl resp0 = new SearchResultReferenceImpl( 5 );
getReferral( resp0 );
SearchResultReferenceImpl resp1 = new SearchResultReferenceImpl( 5 );
getReferral( resp1 );
assertTrue( resp0.hashCode() == resp1.hashCode() );
}
/**
* Tests for inequality when the urls are not the same.
*/
@Test
public void testNotEqualDiffUrls()
{
SearchResultReferenceImpl resp0 = new SearchResultReferenceImpl( 5 );
getReferral( resp0 );
SearchResultReferenceImpl resp1 = new SearchResultReferenceImpl( 5 );
getReferral( resp1 );
resp1.getReferral().addLdapUrl( "ldap://asdf.com???" );
assertFalse( resp1.equals( resp0 ), "different urls should not be equal" );
assertFalse( resp0.equals( resp1 ), "different urls should not be equal" );
}
}