blob: 953561dcd66e6f58b8c1472882c7f6e5142958cd [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.aci;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import org.apache.directory.api.ldap.aci.protectedItem.ClassesItem;
import org.apache.directory.api.ldap.model.filter.ExprNode;
import org.apache.directory.api.ldap.model.filter.FilterParser;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.parallel.Execution;
import org.junit.jupiter.api.parallel.ExecutionMode;
/**
* Unit tests class ProtectedItem.Classes.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
@Execution( ExecutionMode.CONCURRENT)
public class ProtectedItem_ClassesTest
{
ClassesItem classesA;
ClassesItem classesACopy;
ClassesItem classesB;
ClassesItem classesC;
/**
* Initialize name instances
*/
@BeforeEach
public void initNames() throws Exception
{
ExprNode filterA = FilterParser.parse( "(&(cn=test)(sn=test))" );
ExprNode filterB = FilterParser.parse( "(&(cn=test)(sn=test))" );
ExprNode filterC = FilterParser.parse( "(&(cn=sample)(sn=sample))" );
classesA = new ClassesItem( filterA );
classesACopy = new ClassesItem( filterA );
classesB = new ClassesItem( filterB );
classesC = new ClassesItem( filterC );
}
@Test
public void testEqualsNull() throws Exception
{
assertFalse( classesA.equals( null ) );
}
@Test
public void testEqualsReflexive() throws Exception
{
assertEquals( classesA, classesA );
}
@Test
public void testHashCodeReflexive() throws Exception
{
assertEquals( classesA.hashCode(), classesA.hashCode() );
}
@Test
public void testEqualsSymmetric() throws Exception
{
assertEquals( classesA, classesACopy );
assertEquals( classesACopy, classesA );
}
@Test
public void testHashCodeSymmetric() throws Exception
{
assertEquals( classesA.hashCode(), classesACopy.hashCode() );
assertEquals( classesACopy.hashCode(), classesA.hashCode() );
}
@Test
public void testEqualsTransitive() throws Exception
{
assertEquals( classesA, classesACopy );
assertEquals( classesACopy, classesB );
assertEquals( classesA, classesB );
}
@Test
public void testHashCodeTransitive() throws Exception
{
assertEquals( classesA.hashCode(), classesACopy.hashCode() );
assertEquals( classesACopy.hashCode(), classesB.hashCode() );
assertEquals( classesA.hashCode(), classesB.hashCode() );
}
@Test
public void testNotEqualDiffValue() throws Exception
{
assertFalse( classesA.equals( classesC ) );
assertFalse( classesC.equals( classesA ) );
}
}