blob: 531b154ee563ac68f8869da26331b6753001e466 [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
*
* http://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.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.util.HashMap;
import java.util.Map;
import org.apache.directory.api.ldap.model.exception.LdapException;
import org.apache.directory.api.ldap.model.name.Dn;
import org.junit.Test;
import org.junit.runner.RunWith;
import com.mycila.junit.concurrent.Concurrency;
import com.mycila.junit.concurrent.ConcurrentJunitRunner;
/**
* TestCase for the ExtendedResponseImpl class.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
@RunWith(ConcurrentJunitRunner.class)
@Concurrency()
public class ExtendedResponseImplTest
{
private static final Map<String, Control> EMPTY_CONTROL_MAP = new HashMap<String, Control>();
/**
* Creates and populates a ExtendedResponseImpl stub for testing purposes.
*
* @return a populated ExtendedResponseImpl stub
*/
private ExtendedResponseImpl createStub()
{
// Construct the Search response to test with results and referrals
ExtendedResponseImpl response = new ExtendedResponseImpl( 45 );
response.setResponseName( "1.1.1.1" );
LdapResult result = response.getLdapResult();
try
{
result.setMatchedDn( new Dn( "dc=example,dc=com" ) );
}
catch ( LdapException ine )
{
// Do nothing
}
result.setResultCode( ResultCodeEnum.SUCCESS );
ReferralImpl refs = new ReferralImpl();
refs.addLdapUrl( "ldap://someserver.com" );
refs.addLdapUrl( "ldap://apache.org" );
refs.addLdapUrl( "ldap://another.net" );
result.setReferral( refs );
return response;
}
/**
* Tests for equality using the same object.
*/
@Test
public void testEqualsSameObj()
{
ExtendedResponseImpl resp = createStub();
assertTrue( resp.equals( resp ) );
}
/**
* Tests for equality using an exact copy.
*/
@Test
public void testEqualsExactCopy()
{
ExtendedResponseImpl resp0 = createStub();
ExtendedResponseImpl resp1 = createStub();
assertTrue( resp0.equals( resp1 ) );
assertTrue( resp1.equals( resp0 ) );
}
/**
* Tests for equality using different stub implementations.
*/
@Test
public void testEqualsDiffImpl()
{
ExtendedResponseImpl resp0 = createStub();
ExtendedResponse resp1 = new ExtendedResponse()
{
public String getResponseName()
{
return "1.1.1.1";
}
public void setResponseName( String oid )
{
}
public LdapResult getLdapResult()
{
LdapResultImpl result = new LdapResultImpl();
try
{
result.setMatchedDn( new Dn( "dc=example,dc=com" ) );
}
catch ( LdapException ine )
{
// do nothing
}
result.setResultCode( ResultCodeEnum.SUCCESS );
ReferralImpl refs = new ReferralImpl();
refs.addLdapUrl( "ldap://someserver.com" );
refs.addLdapUrl( "ldap://apache.org" );
refs.addLdapUrl( "ldap://another.net" );
result.setReferral( refs );
return result;
}
public MessageTypeEnum getType()
{
return MessageTypeEnum.EXTENDED_RESPONSE;
}
public Map<String, Control> getControls()
{
return EMPTY_CONTROL_MAP;
}
public ExtendedResponse addControl( Control control )
{
return this;
}
public ExtendedResponse removeControl( Control control )
{
return this;
}
public int getMessageId()
{
return 45;
}
public Object get( Object a_key )
{
return null;
}
public Object put( Object a_key, Object a_value )
{
return null;
}
public ExtendedResponse addAllControls( Control[] controls )
{
return this;
}
public boolean hasControl( String oid )
{
return false;
}
public Control getControl( String oid )
{
return null;
}
public ExtendedResponse setMessageId( int messageId )
{
return this;
}
};
assertTrue( resp0.equals( resp1 ) );
assertFalse( resp1.equals( resp0 ) );
}
/**
* Tests for equal hashCode using the same object.
*/
@Test
public void testHashCodeSameObj()
{
ExtendedResponseImpl resp = createStub();
assertTrue( resp.hashCode() == resp.hashCode() );
}
/**
* Tests for equal hashCode using an exact copy.
*/
@Test
public void testHashCodeExactCopy()
{
ExtendedResponseImpl resp0 = createStub();
ExtendedResponseImpl resp1 = createStub();
assertTrue( resp0.hashCode() == resp1.hashCode() );
}
/**
* Tests inequality when messageIds are different.
*/
@Test
public void testNotEqualsDiffIds()
{
ExtendedResponseImpl resp0 = new ExtendedResponseImpl( 3 );
ExtendedResponseImpl resp1 = new ExtendedResponseImpl( 4 );
assertFalse( resp0.equals( resp1 ) );
assertFalse( resp1.equals( resp0 ) );
}
/**
* Tests inequality when responseNames are different.
*/
@Test
public void testNotEqualsDiffNames()
{
ExtendedResponseImpl resp0 = createStub();
resp0.setResponseName( "1.2.3.4" );
ExtendedResponseImpl resp1 = createStub();
resp1.setResponseName( "1.2.3.4.5" );
assertFalse( resp0.equals( resp1 ) );
assertFalse( resp1.equals( resp0 ) );
}
}