You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2007/08/24 16:53:06 UTC

svn commit: r569405 - /directory/apacheds/trunk/core-unit/src/test/java/org/apache/directory/server/core/jndi/UniqueMemberITest.java

Author: elecharny
Date: Fri Aug 24 07:53:06 2007
New Revision: 569405

URL: http://svn.apache.org/viewvc?rev=569405&view=rev
Log:
Added some tests for DIRSERVER-757

Added:
    directory/apacheds/trunk/core-unit/src/test/java/org/apache/directory/server/core/jndi/UniqueMemberITest.java

Added: directory/apacheds/trunk/core-unit/src/test/java/org/apache/directory/server/core/jndi/UniqueMemberITest.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core-unit/src/test/java/org/apache/directory/server/core/jndi/UniqueMemberITest.java?rev=569405&view=auto
==============================================================================
--- directory/apacheds/trunk/core-unit/src/test/java/org/apache/directory/server/core/jndi/UniqueMemberITest.java (added)
+++ directory/apacheds/trunk/core-unit/src/test/java/org/apache/directory/server/core/jndi/UniqueMemberITest.java Fri Aug 24 07:53:06 2007
@@ -0,0 +1,241 @@
+/*
+ *  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.server.core.jndi;
+
+
+import java.util.HashSet;
+import java.util.Set;
+
+import org.apache.directory.server.core.unit.AbstractAdminTestCase;
+import org.apache.directory.shared.ldap.message.AttributeImpl;
+import org.apache.directory.shared.ldap.message.AttributesImpl;
+import org.apache.directory.shared.ldap.util.StringTools;
+
+import javax.naming.NamingEnumeration;
+import javax.naming.NamingException;
+import javax.naming.directory.Attributes;
+import javax.naming.directory.Attribute;
+
+
+/**
+ * Test DIRSERVER-757 : a UniqueMember attribute should only contain a DN completed with an
+ * optional UID. 
+ *
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ * @version $Rev$
+ */
+public class UniqueMemberITest extends AbstractAdminTestCase
+{
+    protected void setUp() throws Exception
+    {
+        super.setUp();
+    }
+
+    
+    /**
+     * Test a valid entry
+     */
+    public void testValidUniqueMember() throws Exception
+    {
+        Attributes attrs = new AttributesImpl( true );
+        Attribute oc = new AttributeImpl( "ObjectClass", "top" );
+        oc.add( "groupOfUniqueNames" );
+        Attribute cn = new AttributeImpl( "cn", "kevin Spacey" );
+        Attribute dc = new AttributeImpl( "uniqueMember", "cn=kevin spacey, dc=example, dc=org" );
+        attrs.put( oc );
+        attrs.put( cn );
+        attrs.put( dc);
+
+        String base = "cn=kevin Spacey";
+
+        //create subcontext
+        try
+        {
+            sysRoot.createSubcontext( base, attrs );
+        }
+        catch ( NamingException ne )
+        {
+            fail();
+        }
+        
+        Attributes returned = sysRoot.getAttributes( "cn=kevin Spacey" );
+      
+        NamingEnumeration attrList = returned.getAll();
+        
+        while ( attrList.hasMore() )
+        {
+            Attribute attr = ( Attribute ) attrList.next();
+          
+            if ( attr.getID().equalsIgnoreCase( "cn" ) )
+            {
+                assertEquals( "kevin Spacey", attr.get() );
+                continue;
+            }
+          
+            if ( attr.getID().equalsIgnoreCase( "objectClass" ) )
+            {
+                NamingEnumeration values = attr.getAll();
+                Set<String> expectedValues = new HashSet<String>();
+                
+                expectedValues.add( "top" );
+                expectedValues.add( "groupofuniquenames" );
+                
+                while ( values.hasMoreElements() )
+                {
+                    String value = StringTools.toLowerCase( (String)values.nextElement() );
+                    assertTrue( expectedValues.contains( value ) );
+                    expectedValues.remove( value );
+                }
+                
+                assertEquals( 0, expectedValues.size() );
+                continue;
+            }
+          
+            if ( attr.getID().equalsIgnoreCase( "uniqueMember" ) )
+            {
+                assertEquals( "cn=kevin spacey, dc=example, dc=org", attr.get() );
+                continue;
+            }
+        }
+    }
+
+    /**
+     * Test a valid entry, with an optional UID
+     */
+    public void testValidUniqueMemberWithOptionnalUID() throws Exception
+    {
+        Attributes attrs = new AttributesImpl( true );
+        Attribute oc = new AttributeImpl( "ObjectClass", "top" );
+        oc.add( "groupOfUniqueNames" );
+        Attribute cn = new AttributeImpl( "cn", "kevin Spacey 2" );
+        Attribute dc = new AttributeImpl( "uniqueMember", "cn=kevin spacey 2, dc=example, dc=org#'010101'B" );
+        attrs.put( oc );
+        attrs.put( cn );
+        attrs.put( dc);
+
+        String base = "cn=kevin Spacey 2";
+
+        //create subcontext
+        try
+        {
+            sysRoot.createSubcontext( base, attrs );
+        }
+        catch ( NamingException ne )
+        {
+            fail();
+        }
+        
+        Attributes returned = sysRoot.getAttributes( "cn=kevin Spacey 2" );
+      
+        NamingEnumeration attrList = returned.getAll();
+        
+        while ( attrList.hasMore() )
+        {
+            Attribute attr = ( Attribute ) attrList.next();
+          
+            if ( attr.getID().equalsIgnoreCase( "cn" ) )
+            {
+                assertEquals( "kevin Spacey 2", attr.get() );
+                continue;
+            }
+          
+            if ( attr.getID().equalsIgnoreCase( "objectClass" ) )
+            {
+                NamingEnumeration values = attr.getAll();
+                Set<String> expectedValues = new HashSet<String>();
+                
+                expectedValues.add( "top" );
+                expectedValues.add( "groupofuniquenames" );
+                
+                while ( values.hasMoreElements() )
+                {
+                    String value = StringTools.toLowerCase( (String)values.nextElement() );
+                    assertTrue( expectedValues.contains( value ) );
+                    expectedValues.remove( value );
+                }
+                
+                assertEquals( 0, expectedValues.size() );
+                continue;
+            }
+          
+            if ( attr.getID().equalsIgnoreCase( "uniqueMember" ) )
+            {
+                assertEquals( "cn=kevin spacey 2, dc=example, dc=org#'010101'B", attr.get() );
+                continue;
+            }
+        }
+    }
+
+    /**
+     * Test a valid entry, with an optional UID
+     */
+    public void testInvalidUniqueMemberBadDN() throws Exception
+    {
+        Attributes attrs = new AttributesImpl( true );
+        Attribute oc = new AttributeImpl( "ObjectClass", "top" );
+        oc.add( "groupOfUniqueNames" );
+        Attribute cn = new AttributeImpl( "cn", "kevin Spacey bad" );
+        Attribute dc = new AttributeImpl( "uniqueMember", "kevin spacey bad, dc=example, dc=org#'010101'B" );
+        attrs.put( oc );
+        attrs.put( cn );
+        attrs.put( dc);
+
+        String base = "cn=kevin Spacey bad";
+
+        //create subcontext
+        try
+        {
+            sysRoot.createSubcontext( base, attrs );
+            fail();
+        }
+        catch ( NamingException ne )
+        {
+            assertTrue( true );
+        }
+    }
+
+    /**
+     * Test a valid entry, with an optional UID
+     */
+    public void testInvalidUniqueMemberBadUID() throws Exception
+    {
+        Attributes attrs = new AttributesImpl( true );
+        Attribute oc = new AttributeImpl( "ObjectClass", "top" );
+        oc.add( "groupOfUniqueNames" );
+        Attribute cn = new AttributeImpl( "cn", "kevin Spacey bad 2" );
+        Attribute dc = new AttributeImpl( "uniqueMember", "cn=kevin spacey bad 2, dc=example, dc=org#'010101'" );
+        attrs.put( oc );
+        attrs.put( cn );
+        attrs.put( dc);
+
+        String base = "cn=kevin Spacey bad 2";
+
+        //create subcontext
+        try
+        {
+            sysRoot.createSubcontext( base, attrs );
+            fail();
+        }
+        catch ( NamingException ne )
+        {
+            assertTrue( true );
+        }
+    }
+}