You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "Emmanuel Lecharny (JIRA)" <di...@incubator.apache.org> on 2005/02/06 01:11:26 UTC

[jira] Created: (DIRLDAP-36) Order of multi-valued RDN should not matters while comparing

Order of multi-valued RDN should not matters while comparing 
-------------------------------------------------------------

         Key: DIRLDAP-36
         URL: http://issues.apache.org/jira/browse/DIRLDAP-36
     Project: Directory LDAP
        Type: Bug
    Reporter: Emmanuel Lecharny
 Assigned to: Alex Karasulu 
    Priority: Minor


class org.apache.ldap.common.name.LdapName, method compareTo should return 0 if we compare two RDN which contains multi-valued attributes like :

cn=test+cn=result 

must be equals to 

cn=result+cn=test

This is not the case. Here is a test case (to be added to class org.apache.ldap.common.name.LdapNameTest) :

    /**
     * Test the equivalence of two DNs with multi-valued RDN. AttributeType are
     * not case sensitive. Each attribute type MUST be compared. Order MUST not
     * matters They MUST be equals.
     *
     * @throws  NamingException  if anything goes wrong.
     */
    public void testInsensitiveTypeMultiValuedAttributNotOrdered() throws NamingException
    {

        Name name1 = new LdapName("cn=HomeDir+cn=WorkDir");
        Name name2 = new LdapName("cn=WorkDir+cn=HomeDir");

        assertEquals(name1.compareTo(name2), 0);
    }



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira