blob: 436df63b9c4cc31527cae3fa9ad2cbe78751fd34 [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 org.junit.jupiter.api.Test;
import org.junit.jupiter.api.parallel.Execution;
import org.junit.jupiter.api.parallel.ExecutionMode;
/**
* Test cases for the AbstractMessage class' methods.
*
* @author <a href="mailto:dev@directory.apache.org"> Apache Directory Project</a>
* $Rev: 910150 $
*/
@Execution(ExecutionMode.CONCURRENT)
public class AbstractMessageTest
{
/**
* Tests to see the same object returns true.
*/
@Test
public void testEqualsSameObj()
{
AbstractMessage msg;
msg = new AbstractMessage( 5, MessageTypeEnum.BIND_REQUEST )
{
};
assertTrue( msg.equals( msg ) );
}
/**
* Tests to see the same exact copy returns true.
*/
@Test
public void testEqualsExactCopy()
{
AbstractMessage msg0;
AbstractMessage msg1;
msg0 = new AbstractMessage( 5, MessageTypeEnum.BIND_REQUEST )
{
};
msg1 = new AbstractMessage( 5, MessageTypeEnum.BIND_REQUEST )
{
};
assertTrue( msg0.equals( msg1 ) );
assertTrue( msg1.equals( msg0 ) );
}
/**
* Tests to make sure changes in the id result in inequality.
*/
@Test
public void testNotEqualsDiffId()
{
AbstractMessage msg0;
AbstractMessage msg1;
msg0 = new AbstractMessage( 5, MessageTypeEnum.BIND_REQUEST )
{
};
msg1 = new AbstractMessage( 6, MessageTypeEnum.BIND_REQUEST )
{
};
assertFalse( msg0.equals( msg1 ) );
assertFalse( msg1.equals( msg0 ) );
}
/**
* Tests to make sure changes in the type result in inequality.
*/
@Test
public void testNotEqualsDiffType()
{
AbstractMessage msg0;
AbstractMessage msg1;
msg0 = new AbstractMessage( 5, MessageTypeEnum.BIND_REQUEST )
{
};
msg1 = new AbstractMessage( 5, MessageTypeEnum.UNBIND_REQUEST )
{
};
assertFalse( msg0.equals( msg1 ) );
assertFalse( msg1.equals( msg0 ) );
}
/**
* Tests to make sure changes in the controls result in inequality.
*/
@Test
public void testNotEqualsDiffControls()
{
AbstractMessage msg0;
AbstractMessage msg1;
msg0 = new AbstractMessage( 5, MessageTypeEnum.BIND_REQUEST )
{
};
msg0.addControl( new Control()
{
public boolean isCritical()
{
return false;
}
public void setCritical( boolean isCritical )
{
}
public String getOid()
{
return "0.0";
}
} );
msg1 = new AbstractMessage( 5, MessageTypeEnum.BIND_REQUEST )
{
};
assertFalse( msg0.equals( msg1 ) );
assertFalse( msg1.equals( msg0 ) );
}
}