blob: b54f98c38db0a340a4fd27735c47967086ace019 [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 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.codec.message.BindResponseImpl;
import org.apache.directory.shared.ldap.codec.message.LdapResultImpl;
import org.apache.directory.shared.ldap.codec.message.ReferralImpl;
import org.apache.directory.shared.ldap.message.Referral;
import org.apache.directory.shared.ldap.message.ResultCodeEnum;
import org.apache.directory.shared.ldap.name.DN;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
/**
* Tests the methods of the BindResponseImpl class.
*
* @author <a href="mailto:dev@directory.apache.org"> Apache Directory Project</a>
* $Rev: 946353 $
*/
@RunWith(ConcurrentJunitRunner.class)
@Concurrent()
public class BindResponseImplTest
{
/**
* Tests to make sure the same object returns true with equals().
*/
@Test
public void testEqualsSameObj()
{
BindResponseImpl resp = new BindResponseImpl( 1 );
assertTrue( "same object should be equal", resp.equals( resp ) );
}
/**
* Tests to make sure newly created objects with same id are equal.
*/
@Test
public void testEqualsNewWithSameId()
{
BindResponseImpl resp0 = new BindResponseImpl( 1 );
BindResponseImpl resp1 = new BindResponseImpl( 1 );
assertTrue( "default copy with same id should be equal", resp0.equals( resp1 ) );
assertTrue( "default copy with same id should be equal", resp1.equals( resp0 ) );
}
/**
* Tests to make sure the same object has the same hashCode.
*/
@Test
public void testHashCodeSameObj()
{
BindResponseImpl resp = new BindResponseImpl( 1 );
assertTrue( resp.hashCode() == resp.hashCode() );
}
/**
* Tests to make sure newly created objects with same id have the same hashCode.
*/
@Test
public void testHashCodeNewWithSameId()
{
BindResponseImpl resp0 = new BindResponseImpl( 1 );
BindResponseImpl resp1 = new BindResponseImpl( 1 );
assertTrue( resp1.hashCode() == resp0.hashCode() );
}
/**
* Tests to make sure newly created objects with same different id are not
* equal.
*/
@Test
public void testNotEqualsNewWithDiffId()
{
BindResponseImpl resp0 = new BindResponseImpl( 1 );
BindResponseImpl resp1 = new org.apache.directory.shared.ldap.codec.message.BindResponseImpl( 2 );
assertFalse( "different id objects should not be equal", resp0.equals( resp1 ) );
assertFalse( "different id objects should not be equal", resp1.equals( resp0 ) );
}
/**
* Tests to make sure newly created objects with same different saslCreds
* are not equal.
*/
@Test
public void testNotEqualsNewWithDiffSaslCreds()
{
BindResponseImpl resp0 = new BindResponseImpl( 1 );
resp0.setServerSaslCreds( new byte[2] );
BindResponseImpl resp1 = new BindResponseImpl( 1 );
resp1.setServerSaslCreds( new byte[3] );
assertFalse( "different serverSaslCreds objects should not be equal", resp0.equals( resp1 ) );
assertFalse( "different serverSaslCreds objects should not be equal", resp1.equals( resp0 ) );
}
/**
* Tests for equality of two fully loaded identical BindResponse PDUs.
*/
@Test
public void testEqualsWithTheWorks() throws LdapException
{
org.apache.directory.shared.ldap.codec.message.LdapResultImpl r0 = new org.apache.directory.shared.ldap.codec.message.LdapResultImpl();
LdapResultImpl r1 = new org.apache.directory.shared.ldap.codec.message.LdapResultImpl();
r0.setErrorMessage( "blah blah blah" );
r1.setErrorMessage( "blah blah blah" );
r0.setMatchedDn( new DN( "dc=example,dc=com" ) );
r1.setMatchedDn( new DN( "dc=example,dc=com" ) );
r0.setResultCode( ResultCodeEnum.TIME_LIMIT_EXCEEDED );
r1.setResultCode( ResultCodeEnum.TIME_LIMIT_EXCEEDED );
Referral refs0 = new ReferralImpl();
refs0.addLdapUrl( "ldap://someserver.com" );
refs0.addLdapUrl( "ldap://anotherserver.org" );
Referral refs1 = new ReferralImpl();
refs1.addLdapUrl( "ldap://someserver.com" );
refs1.addLdapUrl( "ldap://anotherserver.org" );
BindResponseImpl resp0 = new BindResponseImpl( 1 );
BindResponseImpl resp1 = new BindResponseImpl( 1 );
resp0.setServerSaslCreds( "password".getBytes() );
resp1.setServerSaslCreds( "password".getBytes() );
assertTrue( "loaded carbon copies should be equal", resp0.equals( resp1 ) );
assertTrue( "loaded carbon copies should be equal", resp1.equals( resp0 ) );
}
/**
* Tests for equal hashCode of two fully loaded identical BindResponse PDUs.
*/
@Test
public void testHashCodeWithTheWorks() throws LdapException
{
LdapResultImpl r0 = new LdapResultImpl();
org.apache.directory.shared.ldap.codec.message.LdapResultImpl r1 = new org.apache.directory.shared.ldap.codec.message.LdapResultImpl();
r0.setErrorMessage( "blah blah blah" );
r1.setErrorMessage( "blah blah blah" );
r0.setMatchedDn( new DN( "dc=example,dc=com" ) );
r1.setMatchedDn( new DN( "dc=example,dc=com" ) );
r0.setResultCode( ResultCodeEnum.TIME_LIMIT_EXCEEDED );
r1.setResultCode( ResultCodeEnum.TIME_LIMIT_EXCEEDED );
Referral refs0 = new ReferralImpl();
refs0.addLdapUrl( "ldap://someserver.com" );
refs0.addLdapUrl( "ldap://anotherserver.org" );
Referral refs1 = new ReferralImpl();
refs1.addLdapUrl( "ldap://someserver.com" );
refs1.addLdapUrl( "ldap://anotherserver.org" );
BindResponseImpl resp0 = new BindResponseImpl( 1 );
BindResponseImpl resp1 = new BindResponseImpl( 1 );
resp0.setServerSaslCreds( "password".getBytes() );
resp1.setServerSaslCreds( "password".getBytes() );
assertTrue( resp0.hashCode() == resp1.hashCode() );
}
}