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 2006/08/28 23:26:03 UTC

svn commit: r437843 - /directory/branches/shared/0.9.5/ldap/src/test/java/org/apache/directory/shared/ldap/codec/LdapControlTest.java

Author: elecharny
Date: Mon Aug 28 14:26:03 2006
New Revision: 437843

URL: http://svn.apache.org/viewvc?rev=437843&view=rev
Log:
Created this class to test controls.

Added:
    directory/branches/shared/0.9.5/ldap/src/test/java/org/apache/directory/shared/ldap/codec/LdapControlTest.java

Added: directory/branches/shared/0.9.5/ldap/src/test/java/org/apache/directory/shared/ldap/codec/LdapControlTest.java
URL: http://svn.apache.org/viewvc/directory/branches/shared/0.9.5/ldap/src/test/java/org/apache/directory/shared/ldap/codec/LdapControlTest.java?rev=437843&view=auto
==============================================================================
--- directory/branches/shared/0.9.5/ldap/src/test/java/org/apache/directory/shared/ldap/codec/LdapControlTest.java (added)
+++ directory/branches/shared/0.9.5/ldap/src/test/java/org/apache/directory/shared/ldap/codec/LdapControlTest.java Mon Aug 28 14:26:03 2006
@@ -0,0 +1,277 @@
+package org.apache.directory.shared.ldap.codec;
+
+import java.nio.ByteBuffer;
+import java.util.List;
+
+import javax.naming.NamingException;
+
+import org.apache.directory.shared.asn1.ber.Asn1Decoder;
+import org.apache.directory.shared.asn1.ber.IAsn1Container;
+import org.apache.directory.shared.asn1.codec.DecoderException;
+import org.apache.directory.shared.asn1.codec.EncoderException;
+import org.apache.directory.shared.ldap.codec.abandon.AbandonRequest;
+import org.apache.directory.shared.ldap.util.StringTools;
+
+import junit.framework.TestCase;
+
+public class LdapControlTest extends TestCase
+{
+    /**
+     * Test the decoding of a Request with controls
+     */
+    public void testDecodeRequestWithControls()
+    {
+        Asn1Decoder ldapDecoder = new LdapDecoder();
+
+        ByteBuffer stream = ByteBuffer.allocate( 0x64 );
+        stream.put( new byte[]
+            { 
+            0x30, 0x62,                 // LDAPMessage ::=SEQUENCE {
+              0x02, 0x01, 0x03,         // messageID MessageID
+              0x50, 0x01, 0x02,         // CHOICE { ..., abandonRequest
+                                        // AbandonRequest,...
+              ( byte ) 0xA0, 0x5A,      // controls [0] Controls OPTIONAL }
+                0x30, 0x1A,             // Control ::= SEQUENCE {
+                                        // controlType LDAPOID,
+                  0x04, 0x0D, 
+                    '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '1',
+                                        // criticality BOOLEAN DEFAULT FALSE,
+                  0x01, 0x01, ( byte ) 0xFF, 
+                                        // controlValue OCTET STRING OPTIONAL }
+                  0x04, 0x06, 'a', 'b', 'c', 'd', 'e', 'f', 
+                0x30, 0x17,             // Control ::= SEQUENCE {
+                                        // controlType LDAPOID,
+                  0x04, 0x0D, 
+                    '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '2',
+                                        // controlValue OCTET STRING OPTIONAL }
+                  0x04, 0x06, 'g', 'h', 'i', 'j', 'k', 'l', 
+                0x30, 0x12,             // Control ::= SEQUENCE {
+                                        // controlType LDAPOID,
+                  0x04, 0x0D, 
+                    '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '3',
+                                        // criticality BOOLEAN DEFAULT FALSE}
+                  0x01, 0x01, ( byte ) 0xFF, 
+                0x30, 0x0F,             // Control ::= SEQUENCE {
+                                        // controlType LDAPOID}
+                0x04, 0x0D, 
+                  '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '4' 
+            } );
+
+        String decodedPdu = StringTools.dumpBytes( stream.array() );
+        stream.flip();
+
+        // Allocate a LdapMessageContainer Container
+        IAsn1Container ldapMessageContainer = new LdapMessageContainer();
+
+        // Decode the PDU
+        try
+        {
+            ldapDecoder.decode( stream, ldapMessageContainer );
+        }
+        catch ( DecoderException de )
+        {
+            de.printStackTrace();
+            fail( de.getMessage() );
+        }
+        catch ( NamingException ne )
+        {
+            ne.printStackTrace();
+            fail( ne.getMessage() );
+        }
+
+        // Check that everything is OK
+        LdapMessage message = ( ( LdapMessageContainer ) ldapMessageContainer ).getLdapMessage();
+        AbandonRequest abandonRequest = message.getAbandonRequest();
+
+        assertEquals( 3, message.getMessageId() );
+        assertEquals( 2, abandonRequest.getAbandonedMessageId() );
+
+        // Check the Controls
+        List controls = message.getControls();
+
+        assertEquals( 4, controls.size() );
+
+        Control control = message.getControls( 0 );
+        assertEquals( "1.3.6.1.5.5.1", control.getControlType() );
+        assertEquals( "0x61 0x62 0x63 0x64 0x65 0x66 ", StringTools.dumpBytes( ( byte[] ) control.getControlValue() ) );
+        assertTrue( control.getCriticality() );
+
+        control = message.getControls( 1 );
+        assertEquals( "1.3.6.1.5.5.2", control.getControlType() );
+        assertEquals( "0x67 0x68 0x69 0x6A 0x6B 0x6C ", StringTools.dumpBytes( ( byte[] ) control.getControlValue() ) );
+        assertFalse( control.getCriticality() );
+
+        control = message.getControls( 2 );
+        assertEquals( "1.3.6.1.5.5.3", control.getControlType() );
+        assertEquals( "", StringTools.dumpBytes( ( byte[] ) control.getControlValue() ) );
+        assertTrue( control.getCriticality() );
+
+        control = message.getControls( 3 );
+        assertEquals( "1.3.6.1.5.5.4", control.getControlType() );
+        assertEquals( "", StringTools.dumpBytes( ( byte[] ) control.getControlValue() ) );
+        assertFalse( control.getCriticality() );
+
+        // Check the length
+        assertEquals( 0x64, message.computeLength() );
+
+        // Check the encoding
+        try
+        {
+            ByteBuffer bb = message.encode( null );
+
+            String encodedPdu = StringTools.dumpBytes( bb.array() );
+
+            assertEquals( encodedPdu, decodedPdu );
+        }
+        catch ( EncoderException ee )
+        {
+            ee.printStackTrace();
+            fail( ee.getMessage() );
+        }
+    }
+
+    /**
+     * Test the decoding of a Request with null OID controls
+     */
+    public void testDecodeRequestWithControlsNullOID()
+    {
+        Asn1Decoder ldapDecoder = new LdapDecoder();
+
+        ByteBuffer stream = ByteBuffer.allocate( 0x19 );
+        stream.put( new byte[]
+            { 
+            0x30, 0x17,                 // LDAPMessage ::=SEQUENCE {
+              0x02, 0x01, 0x03,         // messageID MessageID
+              0x50, 0x01, 0x02,         // CHOICE { ..., abandonRequest
+                                        // AbandonRequest,...
+              ( byte ) 0xA0, 0x0F,      // controls [0] Controls OPTIONAL }
+                0x30, 0x0D,             // Control ::= SEQUENCE {
+                                        // controlType LDAPOID,
+                  0x04, 0x00, 
+                                        // criticality BOOLEAN DEFAULT FALSE,
+                  0x01, 0x01, ( byte ) 0xFF, 
+                                        // controlValue OCTET STRING OPTIONAL }
+                  0x04, 0x06, 'a', 'b', 'c', 'd', 'e', 'f', 
+            } );
+
+        stream.flip();
+
+        // Allocate a LdapMessageContainer Container
+        IAsn1Container ldapMessageContainer = new LdapMessageContainer();
+
+        // Decode the PDU
+        try
+        {
+            ldapDecoder.decode( stream, ldapMessageContainer );
+        }
+        catch ( DecoderException de )
+        {
+            assertTrue( true );
+            return;
+        }
+        catch ( NamingException ne )
+        {
+            ne.printStackTrace();
+            fail( ne.getMessage() );
+        }
+
+        fail( "We should not reach this point" );
+    }
+
+    /**
+     * Test the decoding of a Request with bad OID controls
+     */
+    public void testDecodeRequestWithControlsBadOID()
+    {
+        Asn1Decoder ldapDecoder = new LdapDecoder();
+
+        ByteBuffer stream = ByteBuffer.allocate( 0x20 );
+        stream.put( new byte[]
+            { 
+            0x30, 0x1E,                 // LDAPMessage ::=SEQUENCE {
+              0x02, 0x01, 0x03,         // messageID MessageID
+              0x50, 0x01, 0x02,         // CHOICE { ..., abandonRequest
+                                        // AbandonRequest,...
+              ( byte ) 0xA0, 0x16,      // controls [0] Controls OPTIONAL }
+                0x30, 0x14,             // Control ::= SEQUENCE {
+                                        // controlType LDAPOID,
+                  0x04, 0x07, 'b', 'a', 'd', ' ', 'o', 'i', 'd',
+                                        // criticality BOOLEAN DEFAULT FALSE,
+                  0x01, 0x01, ( byte ) 0xFF, 
+                                        // controlValue OCTET STRING OPTIONAL }
+                  0x04, 0x06, 'a', 'b', 'c', 'd', 'e', 'f', 
+            } );
+
+        stream.flip();
+
+        // Allocate a LdapMessageContainer Container
+        IAsn1Container ldapMessageContainer = new LdapMessageContainer();
+
+        // Decode the PDU
+        try
+        {
+            ldapDecoder.decode( stream, ldapMessageContainer );
+        }
+        catch ( DecoderException de )
+        {
+            assertTrue( true );
+            return;
+        }
+        catch ( NamingException ne )
+        {
+            ne.printStackTrace();
+            fail( ne.getMessage() );
+        }
+
+        fail( "We should not reach this point" );
+    }
+
+    /**
+     * Test the decoding of a Request with bad OID controls
+     */
+    public void testDecodeRequestWithControlsBadCriticality()
+    {
+        Asn1Decoder ldapDecoder = new LdapDecoder();
+
+        ByteBuffer stream = ByteBuffer.allocate( 0x25 );
+        stream.put( new byte[]
+            { 
+            0x30, 0x23,                 // LDAPMessage ::=SEQUENCE {
+              0x02, 0x01, 0x03,         // messageID MessageID
+              0x50, 0x01, 0x02,         // CHOICE { ..., abandonRequest
+                                        // AbandonRequest,...
+              ( byte ) 0xA0, 0x1B,      // controls [0] Controls OPTIONAL }
+                0x30, 0x19,             // Control ::= SEQUENCE {
+                                        // controlType LDAPOID,
+                  0x04, 0x0D, 
+                    '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '1',
+                                        // criticality BOOLEAN DEFAULT FALSE,
+                  0x01, 0x00, 
+                                        // controlValue OCTET STRING OPTIONAL }
+                  0x04, 0x06, 'a', 'b', 'c', 'd', 'e', 'f', 
+            } );
+
+        stream.flip();
+
+        // Allocate a LdapMessageContainer Container
+        IAsn1Container ldapMessageContainer = new LdapMessageContainer();
+
+        // Decode the PDU
+        try
+        {
+            ldapDecoder.decode( stream, ldapMessageContainer );
+        }
+        catch ( DecoderException de )
+        {
+            assertTrue( true );
+            return;
+        }
+        catch ( NamingException ne )
+        {
+            ne.printStackTrace();
+            fail( ne.getMessage() );
+        }
+
+        fail( "We should not reach this point" );
+    }
+}