blob: 83b60e82fb60c6154759bc5087bd05596e5d99c8 [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.shared.ldap.codec.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.junit.tools.Concurrent;
import org.apache.directory.junit.tools.ConcurrentJunitRunner;
import org.apache.directory.shared.ldap.exception.LdapException;
import org.apache.directory.shared.ldap.message.*;
import org.apache.directory.shared.ldap.message.control.Control;
import org.apache.directory.shared.ldap.name.DN;
import org.junit.Test;
import org.junit.runner.RunWith;
/**
* TestCase for the methods of the DeleteRequestImpl class.
*
* @author <a href="mailto:dev@directory.apache.org"> Apache Directory Project</a>
*/
@RunWith(ConcurrentJunitRunner.class)
@Concurrent()
public class DeleteRequestImplTest
{
private static final Map<String, Control> EMPTY_CONTROL_MAP = new HashMap<String, Control>();
/**
* Tests the same object reference for equality.
*/
@Test
public void testEqualsSameObj()
{
org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl req = new org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl( 5 );
assertTrue( req.equals( req ) );
}
/**
* Tests for equality using exact copies.
*/
@Test
public void testEqualsExactCopy() throws LdapException
{
org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl req0 = new org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl( 5 );
req0.setName( new DN( "cn=admin,dc=example,dc=com" ) );
org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl req1 = new org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl( 5 );
req1.setName( new DN( "cn=admin,dc=example,dc=com" ) );
assertTrue( req0.equals( req1 ) );
}
/**
* Tests the same object reference for equal hashCode.
*/
@Test
public void testHashCodeSameObj()
{
org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl req = new org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl( 5 );
assertTrue( req.hashCode() == req.hashCode() );
}
/**
* Tests for equal hashCode using exact copies.
*/
@Test
public void testHashCodeExactCopy() throws LdapException
{
org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl req0 = new org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl( 5 );
req0.setName( new DN( "cn=admin,dc=example,dc=com" ) );
org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl req1 = new org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl( 5 );
req1.setName( new DN( "cn=admin,dc=example,dc=com" ) );
assertTrue( req0.hashCode() == req1.hashCode() );
}
/**
* Test for inequality when only the IDs are different.
*/
@Test
public void testNotEqualDiffId() throws LdapException
{
org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl req0 = new org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl( 7 );
req0.setName( new DN( "cn=admin,dc=example,dc=com" ) );
org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl req1 = new org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl( 5 );
req1.setName( new DN( "cn=admin,dc=example,dc=com" ) );
assertFalse( req0.equals( req1 ) );
}
/**
* Test for inequality when only the DN names are different.
*/
@Test
public void testNotEqualDiffName() throws LdapException
{
org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl req0 = new org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl( 5 );
req0.setName( new DN( "uid=akarasulu,dc=example,dc=com" ) );
org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl req1 = new org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl( 5 );
req1.setName( new DN( "cn=admin,dc=example,dc=com" ) );
assertFalse( req0.equals( req1 ) );
}
/**
* Tests for equality even when another DeleteRequest implementation is
* used.
*/
@Test
public void testEqualsDiffImpl()
{
DeleteRequest req0 = new DeleteRequest()
{
public DN getName()
{
return null;
}
public void setName( DN name )
{
}
public MessageTypeEnum getResponseType()
{
return MessageTypeEnum.DEL_RESPONSE;
}
public boolean hasResponse()
{
return true;
}
public MessageTypeEnum getType()
{
return MessageTypeEnum.DEL_REQUEST;
}
public Map<String, Control> getControls()
{
return EMPTY_CONTROL_MAP;
}
public void addControl( Control control ) throws MessageException
{
}
public void removeControl( Control control ) throws MessageException
{
}
public int getMessageId()
{
return 5;
}
public Object get( Object key )
{
return null;
}
public Object put( Object key, Object value )
{
return null;
}
public void abandon()
{
}
public boolean isAbandoned()
{
return false;
}
public void addAbandonListener( AbandonListener listener )
{
}
public ResultResponse getResultResponse()
{
return null;
}
public void addAllControls( Control[] controls ) throws MessageException
{
}
public boolean hasControl( String oid )
{
return false;
}
public Control getCurrentControl()
{
return null;
}
public int getControlsLength()
{
return 0;
}
public void setControlsLength( int controlsLength )
{
}
public int getMessageLength()
{
return 0;
}
public void setMessageLength( int messageLength )
{
}
public Control getControl( String oid )
{
return null;
}
public void setMessageId( int messageId )
{
}
};
org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl req1 = new org.apache.directory.shared.ldap.codec.message.DeleteRequestImpl( 5 );
assertTrue( req1.equals( req0 ) );
}
}