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 2012/09/27 23:48:36 UTC

svn commit: r1391229 - /directory/apacheds/trunk/core-integ/src/test/java/org/apache/directory/server/core/operations/add/AddTest.java

Author: elecharny
Date: Thu Sep 27 21:48:35 2012
New Revision: 1391229

URL: http://svn.apache.org/viewvc?rev=1391229&view=rev
Log:
Added a test for DIRSERVER-1738

Added:
    directory/apacheds/trunk/core-integ/src/test/java/org/apache/directory/server/core/operations/add/AddTest.java

Added: directory/apacheds/trunk/core-integ/src/test/java/org/apache/directory/server/core/operations/add/AddTest.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core-integ/src/test/java/org/apache/directory/server/core/operations/add/AddTest.java?rev=1391229&view=auto
==============================================================================
--- directory/apacheds/trunk/core-integ/src/test/java/org/apache/directory/server/core/operations/add/AddTest.java (added)
+++ directory/apacheds/trunk/core-integ/src/test/java/org/apache/directory/server/core/operations/add/AddTest.java Thu Sep 27 21:48:35 2012
@@ -0,0 +1,129 @@
+/*
+ *  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.operations.add;
+
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNull;
+
+import org.apache.directory.ldap.client.api.LdapConnection;
+import org.apache.directory.server.core.annotations.ContextEntry;
+import org.apache.directory.server.core.annotations.CreateDS;
+import org.apache.directory.server.core.annotations.CreateIndex;
+import org.apache.directory.server.core.annotations.CreatePartition;
+import org.apache.directory.server.core.integ.AbstractLdapTestUnit;
+import org.apache.directory.server.core.integ.FrameworkRunner;
+import org.apache.directory.server.core.integ.IntegrationUtils;
+import org.apache.directory.shared.ldap.model.entry.DefaultEntry;
+import org.apache.directory.shared.ldap.model.entry.Entry;
+import org.apache.directory.shared.ldap.model.name.Dn;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+
+/**
+ * Test the add operation
+ *
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ */
+@RunWith(FrameworkRunner.class)
+@CreateDS(
+    name = "AddPerfDS",
+    partitions =
+        {
+            @CreatePartition(
+                name = "example",
+                suffix = "dc=example,dc=com",
+                contextEntry = @ContextEntry(
+                    entryLdif =
+                    "dn: dc=example,dc=com\n" +
+                        "dc: example\n" +
+                        "objectClass: top\n" +
+                        "objectClass: domain\n\n"),
+                indexes =
+                    {
+                        @CreateIndex(attribute = "objectClass"),
+                        @CreateIndex(attribute = "sn"),
+                        @CreateIndex(attribute = "cn")
+                })
+
+    },
+    enableChangeLog = false)
+public class AddTest extends AbstractLdapTestUnit
+{
+    /**
+     * Test an add operation with a value that needs to be normalized
+     */
+    @Test
+    public void testAddNotNormalized() throws Exception
+    {
+        LdapConnection connection = IntegrationUtils.getAdminConnection( getService() );
+
+        Dn dn = new Dn( "cn=test,ou=system" );
+        Entry entry = new DefaultEntry( dn,
+            "ObjectClass: top",
+            "ObjectClass: person",
+            "sn:  TEST    ",
+            "cn: test" );
+
+        connection.add( entry );
+    }
+
+
+    /**
+     * Test an add operation where an attribute with an Integer syntax has an value
+     * above MAX_INTEGER.
+     */
+    @Test
+    public void testAddIntegerTooBig() throws Exception
+    {
+        LdapConnection connection = IntegrationUtils.getAdminConnection( getService() );
+
+        Dn dn = new Dn( "ads-directoryServiceId=test,ou=system" );
+        Entry entry = new DefaultEntry( dn,
+            "ObjectClass: top",
+            "ObjectClass: ads-base",
+            "ObjectClass: ads-directoryService",
+            "ads-directoryServiceId: test",
+            "ads-dsReplicaId: test",
+            "ads-interceptors: test",
+            "ads-partitions: test",
+            "ads-dsMaxPDUSize: 2147483648"
+            );
+
+        connection.add( entry );
+
+        entry = connection.lookup( dn );
+
+        assertEquals( "2147483648", entry.get( "ads-dsMaxPDUSize" ).getString() );
+
+        getService().shutdown();
+
+        entry = connection.lookup( dn );
+
+        assertNull( entry );
+
+        getService().startup();
+
+        entry = connection.lookup( dn );
+
+        assertEquals( "2147483648", entry.get( "ads-dsMaxPDUSize" ).getString() );
+    }
+}