blob: fd7bf56fba2fc9a435492b86de2a136211cf56ab [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 java.util.HashSet;
import java.util.Set;
import org.apache.directory.api.ldap.aci.UserClass.Name;
import org.apache.directory.api.ldap.model.exception.LdapInvalidDnException;
import org.apache.directory.api.ldap.model.name.Dn;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.parallel.Execution;
import org.junit.jupiter.api.parallel.ExecutionMode;
/**
* Unit tests class UserClass.Name.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
@Execution( ExecutionMode.CONCURRENT)
public class UserClass_NameTest
{
private Name nameA;
private Name nameACopy;
private Name nameB;
private Name nameC;
/**
* Initialize name instances
*/
@BeforeEach
public void initNames() throws LdapInvalidDnException
{
Set<String> dnSetA = new HashSet<>();
dnSetA.add( new Dn( "a=aa" ).getNormName() );
dnSetA.add( new Dn( "b=bb" ).getNormName() );
Set<String> dnSetB = new HashSet<>();
dnSetB.add( new Dn( "b=bb" ).getNormName() );
dnSetB.add( new Dn( "a=aa" ).getNormName() );
Set<String> dnSetC = new HashSet<>();
dnSetC.add( new Dn( "a=aa" ).getNormName() );
dnSetC.add( new Dn( "b=bb" ).getNormName() );
Set<String> dnSetD = new HashSet<>();
dnSetD.add( new Dn( "b=bb" ).getNormName() );
dnSetD.add( new Dn( "c=cc" ).getNormName() );
nameA = new Name( dnSetA );
nameACopy = new Name( dnSetB );
nameB = new Name( dnSetC );
nameC = new Name( dnSetD );
}
@Test
public void testEqualsNull() throws Exception
{
assertFalse( nameA.equals( null ) );
}
@Test
public void testEqualsReflexive() throws Exception
{
assertEquals( nameA, nameA );
}
@Test
public void testHashCodeReflexive() throws Exception
{
assertEquals( nameA.hashCode(), nameA.hashCode() );
}
@Test
public void testEqualsSymmetric() throws Exception
{
assertEquals( nameA, nameACopy );
assertEquals( nameACopy, nameA );
}
@Disabled( "There is no way this test can succeed, we are hashcoding values in a set...")
@Test
public void testHashCodeSymmetric() throws Exception
{
assertEquals( nameA.hashCode(), nameACopy.hashCode() );
assertEquals( nameACopy.hashCode(), nameA.hashCode() );
}
@Test
public void testEqualsTransitive() throws Exception
{
assertEquals( nameA, nameACopy );
assertEquals( nameACopy, nameB );
assertEquals( nameA, nameB );
}
@Disabled( "There is no way this test can succeed, we are hashcoding values in a set...")
@Test
public void testHashCodeTransitive() throws Exception
{
assertEquals( nameA.hashCode(), nameACopy.hashCode() );
assertEquals( nameACopy.hashCode(), nameB.hashCode() );
assertEquals( nameA.hashCode(), nameB.hashCode() );
}
@Test
public void testNotEqualDiffValue() throws Exception
{
assertFalse( nameA.equals( nameC ) );
assertFalse( nameC.equals( nameA ) );
}
}