Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/apache/directory-studio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/PerformanceTest.java')
-rw-r--r--tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/PerformanceTest.java108
1 files changed, 108 insertions, 0 deletions
diff --git a/tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/PerformanceTest.java b/tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/PerformanceTest.java
new file mode 100644
index 000000000..240282b9f
--- /dev/null
+++ b/tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/PerformanceTest.java
@@ -0,0 +1,108 @@
+/*
+ * 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.studio.test.integration.ui;
+
+
+import static org.apache.directory.studio.test.integration.junit5.TestFixture.GROUPS_DN;
+import static org.apache.directory.studio.test.integration.junit5.TestFixture.dn;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.apache.directory.api.ldap.model.entry.DefaultEntry;
+import org.apache.directory.api.ldap.model.entry.Entry;
+import org.apache.directory.api.ldap.model.name.Dn;
+import org.apache.directory.studio.ldapbrowser.common.BrowserCommonActivator;
+import org.apache.directory.studio.ldapbrowser.common.BrowserCommonConstants;
+import org.apache.directory.studio.test.integration.junit5.LdapServersSource;
+import org.apache.directory.studio.test.integration.junit5.TestLdapServer;
+import org.apache.directory.studio.test.integration.ui.bots.EntryEditorBot;
+import org.junit.jupiter.params.ParameterizedTest;
+
+
+/**
+ * Tests performance.
+ *
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ * @version $Rev$, $Date$
+ */
+public class PerformanceTest extends AbstractTestBase
+{
+
+ /**
+ * Test for DIRSTUDIO-1119 (Group with over 1000 members crashes)
+ */
+ @ParameterizedTest
+ @LdapServersSource
+ public void testEditLargeGroup( TestLdapServer server ) throws Exception
+ {
+ connectionsViewBot.createTestConnection( server );
+ BrowserCommonActivator.getDefault()
+ .getPluginPreferences().setValue( BrowserCommonConstants.PREFERENCE_ENTRYEDITOR_ENABLE_FOLDING, false );
+
+ Dn dn = dn( "cn=Large Group", GROUPS_DN );
+ int n = 5000;
+ String memberAt = "member";
+ List<String> memberDns = new ArrayList<>( n );
+
+ server.withAdminConnection( conn -> {
+ Entry entry = new DefaultEntry( conn.getSchemaManager() );
+ entry.setDn( dn );
+ entry.add( "objectClass", "top", "groupOfNames" );
+ entry.add( "cn", "Large Group" );
+ for ( int i = 0; i < n; i++ )
+ {
+ String memberDn = "cn=user." + String.format( "%04d", i );
+ memberDns.add( memberDn );
+ entry.add( memberAt, memberDn );
+ }
+ conn.add( entry );
+ } );
+
+ String first = memberDns.get( 0 );
+ String second = memberDns.get( 1 );
+ String middle = memberDns.get( n / 2 );
+ String secondToLast = memberDns.get( n - 2 );
+ String last = memberDns.get( n - 1 );
+
+ browserViewBot.selectEntry( path( dn ) );
+
+ EntryEditorBot entryEditorBot = studioBot.getEntryEditorBot( dn.getName() );
+ entryEditorBot.activate();
+
+ // edit some values
+ entryEditorBot.editValueExpectingDnEditor( memberAt, first ).clickCancelButton();
+ entryEditorBot.editValueExpectingDnEditor( memberAt, last ).clickCancelButton();
+ entryEditorBot.editValueExpectingDnEditor( memberAt, middle ).clickCancelButton();
+ entryEditorBot.editValueExpectingDnEditor( memberAt, second ).clickCancelButton();
+ entryEditorBot.editValueExpectingDnEditor( memberAt, secondToLast ).clickCancelButton();
+
+ // delete some values
+ entryEditorBot.deleteValue( memberAt, second );
+ entryEditorBot.deleteValue( memberAt, secondToLast );
+
+ // edit some value after deletion
+ entryEditorBot.editValueExpectingDnEditor( memberAt, first ).clickCancelButton();
+ entryEditorBot.editValueExpectingDnEditor( memberAt, last ).clickCancelButton();
+ entryEditorBot.editValueExpectingDnEditor( memberAt, middle ).clickCancelButton();
+ }
+
+}