+ * Package private: allows tests to wait until a freshly connected peer
+ * will receive published updates through the in-memory queue path rather
+ * than re-read from the changelog DB.
+ *
+ * @return true when this handler follows the in-memory message queue
+ */
+ boolean isFollowing()
+ {
+ synchronized (msgQueue)
+ {
+ return following;
+ }
+ }
+
/**
* Retrieves the name of this monitor provider. It should be unique among all
* monitor providers, including all instances of the same monitor provider.
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/core/AbandonOperationTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/core/AbandonOperationTestCase.java
index e9dab72157..2dfe64d6cb 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/core/AbandonOperationTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/core/AbandonOperationTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2006-2008 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.core;
@@ -193,7 +194,7 @@ public void testAbandonInternal()
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(groups = { "slow" })
+ @Test
public void testDisconnectInPreParse()
throws Exception
{
@@ -223,7 +224,7 @@ public void testDisconnectInPreParse()
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(groups = { "slow" })
+ @Test
public void testNoSuchOperation()
throws Exception
{
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/core/AddOperationTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/core/AddOperationTestCase.java
index ec08c374ee..0ef908f5c4 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/core/AddOperationTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/core/AddOperationTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2006-2008 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.core;
@@ -1435,7 +1436,7 @@ private CancelRequest newCancelRequest(String cancelReason)
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(groups = "slow")
+ @Test
public void testCannotLockEntry() throws Exception
{
TestCaseUtils.initializeTestBackend(true);
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/core/BindOperationTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/core/BindOperationTestCase.java
index fed6ee30bf..da60729527 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/core/BindOperationTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/core/BindOperationTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2006-2010 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.core;
@@ -1481,7 +1482,7 @@ public void testRebindClearsAuthInfo()
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(groups = "slow")
+ @Test
public void testSubtreeDeleteClearsAuthInfo()
throws Exception
{
@@ -1541,7 +1542,7 @@ public void testSubtreeDeleteClearsAuthInfo()
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(groups = "slow")
+ @Test
public void testSubtreeModifyUpdatesAuthInfo()
throws Exception
{
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/core/DeleteOperationTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/core/DeleteOperationTestCase.java
index ff15bbd26a..21e134d09c 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/core/DeleteOperationTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/core/DeleteOperationTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2006-2008 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.core;
@@ -691,7 +692,7 @@ public void testCancelAfterOperation() throws Exception
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(groups = { "slow" })
+ @Test
public void testCannotLockEntry() throws Exception
{
TestCaseUtils.initializeTestBackend(true);
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/core/ModifyOperationTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/core/ModifyOperationTestCase.java
index 513f4528fb..31ed0c3308 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/core/ModifyOperationTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/core/ModifyOperationTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2006-2011 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.core;
@@ -2651,7 +2652,7 @@ public void testCancelAfterOperation(String baseDN)
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(dataProvider = "baseDNs", groups = { "slow" })
+ @Test(dataProvider = "baseDNs")
public void testCannotLockEntry(String baseDN)
throws Exception
{
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/core/PasswordPolicyTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/core/PasswordPolicyTestCase.java
index 1f3c62d980..1ddf3d544b 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/core/PasswordPolicyTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/core/PasswordPolicyTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2006-2008 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.core;
@@ -4601,7 +4602,7 @@ public void testPasswordHistoryUsingCount()
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(groups = "slow")
+ @Test
public void testPasswordHistoryUsingDuration()
throws Exception
{
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/core/TestModifyDNOperation.java b/opendj-server-legacy/src/test/java/org/opends/server/core/TestModifyDNOperation.java
index fb2503c0c7..56c8385462 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/core/TestModifyDNOperation.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/core/TestModifyDNOperation.java
@@ -767,7 +767,7 @@ public void testShortCircuitModify() throws Exception
}
}
- @Test(groups = "slow")
+ @Test
public void testWriteLockModify() throws Exception
{
// We need the operation to be run in a separate thread because we are going
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/extensions/AttributeValuePasswordValidatorTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/extensions/AttributeValuePasswordValidatorTestCase.java
index 061bbae18c..445db9cff9 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/extensions/AttributeValuePasswordValidatorTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/extensions/AttributeValuePasswordValidatorTestCase.java
@@ -147,7 +147,7 @@ public Object[][] getValidConfigs()
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(dataProvider = "validConfigs", groups= { "slow" })
+ @Test(dataProvider = "validConfigs")
public void testInitializeWithValidConfigs(Entry e)
throws Exception
{
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/extensions/CharacterSetPasswordValidatorTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/extensions/CharacterSetPasswordValidatorTestCase.java
index 54efe99a9c..746fd89867 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/extensions/CharacterSetPasswordValidatorTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/extensions/CharacterSetPasswordValidatorTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2006-2008 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.extensions;
@@ -176,7 +177,7 @@ public Object[][] getValidConfigs()
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(dataProvider = "validConfigs", groups = "slow")
+ @Test(dataProvider = "validConfigs")
public void testInitializeWithValidConfigs(Entry e)
throws Exception
{
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/extensions/DefaultEntryCacheTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/extensions/DefaultEntryCacheTestCase.java
index da2c861b8a..c6dc0317f4 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/extensions/DefaultEntryCacheTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/extensions/DefaultEntryCacheTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2008 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.extensions;
@@ -404,7 +405,7 @@ public void cacheConcurrencyCleanup() throws Exception
/** {@inheritDoc} */
- @Test(groups = { "slow", "testDefaultCacheConcurrency" },
+ @Test(groups = { "testDefaultCacheConcurrency" },
threadPoolSize = 10,
invocationCount = 10,
timeOut = 60000)
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/extensions/FIFOEntryCacheTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/extensions/FIFOEntryCacheTestCase.java
index 871b83a062..afc260e70c 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/extensions/FIFOEntryCacheTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/extensions/FIFOEntryCacheTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2008 Sun Microsystems, Inc.
* Portions Copyright 2013-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.extensions;
@@ -285,7 +286,7 @@ public void cacheConcurrencyCleanup()
/** {@inheritDoc} */
- @Test(groups = { "slow", "testFIFOCacheConcurrency" },
+ @Test(groups = { "testFIFOCacheConcurrency" },
threadPoolSize = 10,
invocationCount = 10,
timeOut = 60000)
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/extensions/SoftReferenceEntryCacheTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/extensions/SoftReferenceEntryCacheTestCase.java
index 97b671ceeb..b3ec1596a2 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/extensions/SoftReferenceEntryCacheTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/extensions/SoftReferenceEntryCacheTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2008 Sun Microsystems, Inc.
* Portions Copyright 2013-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.extensions;
@@ -258,7 +259,7 @@ public void cacheConcurrencyCleanup()
/** {@inheritDoc} */
- @Test(groups = { "slow", "testSoftRefCacheConcurrency" },
+ @Test(groups = { "testSoftRefCacheConcurrency" },
threadPoolSize = 10,
invocationCount = 10,
timeOut = 60000)
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/extensions/TLSByteChannelTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/extensions/TLSByteChannelTestCase.java
index 28376744dc..bcc39735f8 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/extensions/TLSByteChannelTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/extensions/TLSByteChannelTestCase.java
@@ -12,6 +12,7 @@
* information: "Portions Copyright [year] [name of copyright owner]".
*
* Copyright 2012-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.extensions;
@@ -41,7 +42,7 @@
import org.w3c.dom.NodeList;
/** Tests for {@link TLSByteChannel} class. */
-@Test(groups = "slow", sequential = true)
+@Test(sequential = true)
public class TLSByteChannelTestCase extends DirectoryServerTestCase
{
/** Cipher suite hardcoded from the IANA registry on internet. */
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/protocols/LDIFConnectionHandlerTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/protocols/LDIFConnectionHandlerTestCase.java
index 6804693842..801798d977 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/protocols/LDIFConnectionHandlerTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/protocols/LDIFConnectionHandlerTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2008 Sun Microsystems, Inc.
* Portions Copyright 2014-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.protocols;
@@ -62,7 +63,7 @@ public void startServer()
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(groups = "slow")
+ @Test
public void testValidUserLDIF()
throws Exception
{
@@ -165,7 +166,7 @@ public void testValidUserLDIF()
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(groups = "slow")
+ @Test
public void testValidConfigLDIF()
throws Exception
{
@@ -253,7 +254,7 @@ public void testValidConfigLDIF()
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(groups = "slow")
+ @Test
public void testUnparseableLDIF()
throws Exception
{
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/protocols/jmx/PostConnectedDisconnectTest.java b/opendj-server-legacy/src/test/java/org/opends/server/protocols/jmx/PostConnectedDisconnectTest.java
index cec63bd333..58046b7f13 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/protocols/jmx/PostConnectedDisconnectTest.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/protocols/jmx/PostConnectedDisconnectTest.java
@@ -13,6 +13,7 @@
*
* Copyright 2006-2008 Sun Microsystems, Inc.
* Portions Copyright 2014-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.protocols.jmx;
@@ -91,7 +92,7 @@ public void afterClass() throws Exception
* Perform a simple connect.
* @throws Exception If something wrong occurs.
*/
- @Test(enabled = false, groups = "slow")
+ @Test
public void checkPostConnectDisconnectPlugin() throws Exception
{
// Before the test, how many time postconnect and postdisconnect
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/replication/DependencyTest.java b/opendj-server-legacy/src/test/java/org/opends/server/replication/DependencyTest.java
index a59da13113..ebbcff79ce 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/replication/DependencyTest.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/replication/DependencyTest.java
@@ -13,6 +13,7 @@
*
* Copyright 2007-2010 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.replication;
@@ -92,7 +93,7 @@ public void setup() throws Exception
* Then test that the sequence of Delete necessary to remove
* all those entries is also correctly ordered.
*/
- @Test(enabled=true, groups="slow")
+ @Test(enabled=true)
public void addModDelDependencyTest() throws Exception
{
ReplicationServer replServer = null;
@@ -333,7 +334,7 @@ private void cleanDB() throws FileNotFoundException, IOException, Exception
* has been added.
* To increase the risks of failures a loop of add/del/add is done.
*/
- @Test(enabled=true, groups="slow")
+ @Test(enabled=true)
public void addDelAddDependencyTest() throws Exception
{
ReplicationServer replServer = null;
@@ -438,7 +439,7 @@ private LDAPReplicationDomain startNewLDAPReplicationDomain(ReplicationServer re
* Check that the dependency of moddn operation are working by
* issuing a set of Add operation followed by a modrdn of the added entry.
*/
- @Test(enabled=true, groups="slow")
+ @Test(enabled=true)
public void addModdnDependencyTest() throws Exception
{
ReplicationServer replServer = null;
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/replication/GenerationIdTest.java b/opendj-server-legacy/src/test/java/org/opends/server/replication/GenerationIdTest.java
index 890b8eb69b..ed0dd5a1ad 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/replication/GenerationIdTest.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/replication/GenerationIdTest.java
@@ -1071,7 +1071,7 @@ private void postTest() throws Exception
* Test generationID saving when the root entry does not exist
* at the moment when the replication is enabled.
*/
- @Test(dependsOnMethods = { "testMultiRS" }, groups = "slow")
+ @Test(dependsOnMethods = { "testMultiRS" })
public void testServerStop() throws Exception
{
String testCase = "testServerStop";
@@ -1112,7 +1112,7 @@ public void testServerStop() throws Exception
* Loop opening sessions to the Replication Server
* to check that it handle correctly disconnection and reconnection.
*/
- @Test(dependsOnMethods = { "testServerStop" }, groups = "slow")
+ @Test(dependsOnMethods = { "testServerStop" })
public void testLoop() throws Exception
{
String testCase = "testLoop";
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/replication/InitOnLineTest.java b/opendj-server-legacy/src/test/java/org/opends/server/replication/InitOnLineTest.java
index d1a5c00124..e2d0836b85 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/replication/InitOnLineTest.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/replication/InitOnLineTest.java
@@ -13,6 +13,7 @@
*
* Copyright 2006-2010 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.replication;
@@ -539,7 +540,7 @@ private int getReplServerPort(int replServerId) throws Exception
* and test that, on S1 side, the task ends with an error.
* State of the backend on S1 partially initialized: ?
*/
- @Test(enabled=true, groups="slow")
+ @Test(enabled=true)
public void initializeImport() throws Exception
{
String testCase = "initializeImport ";
@@ -590,7 +591,7 @@ public void initializeImport() throws Exception
* - test that S1 has successfully exported the entries (by receiving them
* on S2 side).
*/
- @Test(enabled=true, groups="slow")
+ @Test(enabled=true)
public void initializeExport() throws Exception
{
String testCase = "initializeExport";
@@ -632,7 +633,7 @@ public void initializeExport() throws Exception
* - wait task completed
* - test that S2 has successfully received the entries
*/
- @Test(enabled=true, groups="slow")
+ @Test(enabled=true)
public void initializeTargetExport() throws Exception
{
String testCase = "initializeTargetExport";
@@ -684,7 +685,7 @@ public void initializeTargetExport() throws Exception
*
* TODO: Error case: make S2 crash in the middle of the import and test what??
*/
- @Test(enabled=true, groups="slow")
+ @Test(enabled=true)
public void initializeTargetExportAll() throws Exception
{
String testCase = "initializeTargetExportAll";
@@ -736,7 +737,7 @@ public void initializeTargetExportAll() throws Exception
/**
* Tests the import side of the InitializeTarget task.
*/
- @Test(enabled=true, groups="slow")
+ @Test(enabled=true)
public void initializeTargetImport() throws Exception
{
String testCase = "initializeTargetImport";
@@ -919,7 +920,7 @@ public void initializeBroken() throws Exception
* connected to each replication server of the topology, thanks to the
* ReplServerInfoMessage(s) exchanged by the replication servers.
*/
- @Test(enabled=true, groups="slow")
+ @Test(enabled=true)
public void testReplServerInfos() throws Exception
{
String testCase = "testReplServerInfos";
@@ -976,7 +977,7 @@ private Set
- * Note: it is working but disabled as 17.5 minutes to run
+ * Note: takes several minutes to run (240 combinations).
*/
- @Test(dataProvider = "testSafeReadOneRSComplexProvider", groups = "slow", enabled = false)
+ @Test(dataProvider = "testSafeReadOneRSComplexProvider", enabled = true)
public void testSafeReadOneRSComplex(int otherFakeDsGid, long otherFakeDsGenId, int otherFakeDsScen,
int otherFakeRsGid, long otherFakeRsGenId, int otherFakeRsScen) throws Exception
{
@@ -2984,7 +3033,7 @@ private Object[][] testSafeReadTwoRSsProvider()
* Topology:
* DS1---RS1---RS2---DS2 (DS2 with changing configuration)
*/
- @Test(dataProvider = "testSafeReadTwoRSsProvider", groups = "slow", enabled = true)
+ @Test(dataProvider = "testSafeReadTwoRSsProvider", enabled = true)
public void testSafeReadTwoRSs(int fakeDsGid, long fakeDsGenId, int fakeDsScen) throws Exception
{
String testCase = "testSafeReadTwoRSs";
@@ -3102,7 +3151,7 @@ public void testSafeReadTwoRSs(int fakeDsGid, long fakeDsGenId, int fakeDsScen)
* Topology:
* DS1---RS1---DS2 (DS2 going degraded)
*/
- @Test(groups = "slow", enabled = true)
+ @Test(enabled = true)
public void testSafeReadWrongStatus() throws Exception
{
String testCase = "testSafeReadWrongStatus";
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/types/PrivilegeTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/types/PrivilegeTestCase.java
index 618dad7218..ca9e0ddfe9 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/types/PrivilegeTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/types/PrivilegeTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2007-2010 Sun Microsystems, Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.types;
@@ -956,7 +957,7 @@ private void assertPrivilege(InternalClientConnection conn, boolean hasPrivilege
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(dataProvider = "testdata", groups = { "slow" })
+ @Test(dataProvider = "testdata")
public void testBackupBackend(InternalClientConnection conn,
boolean hasPrivilege)
throws Exception
@@ -991,8 +992,7 @@ public void testBackupBackend(InternalClientConnection conn,
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(dataProvider = "testdata", groups = { "slow" },
- dependsOnMethods = { "testBackupBackend" })
+ @Test(dataProvider = "testdata", dependsOnMethods = { "testBackupBackend" })
public void testRestoreBackend(InternalClientConnection conn,
boolean hasPrivilege)
throws Exception
@@ -1022,7 +1022,7 @@ public void testRestoreBackend(InternalClientConnection conn,
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(dataProvider = "testdata", groups = { "slow" })
+ @Test(dataProvider = "testdata")
public void testLDIFExport(InternalClientConnection conn,
boolean hasPrivilege)
throws Exception
@@ -1063,7 +1063,7 @@ public void testLDIFExport(InternalClientConnection conn,
*
* @throws Exception If an unexpected problem occurs.
*/
- @Test(dataProvider = "testdata", groups = { "slow" })
+ @Test(dataProvider = "testdata")
public void testLDIFImport(InternalClientConnection conn,
boolean hasPrivilege)
throws Exception
@@ -1096,7 +1096,7 @@ public void testLDIFImport(InternalClientConnection conn,
* and therefore the rebuild should succeed.
* @throws Exception if an unexpected problem occurs.
*/
- @Test(dataProvider = "testdata", groups = { "slow" })
+ @Test(dataProvider = "testdata")
public void testRebuildIndex(InternalClientConnection conn,
boolean hasPrivilege)
throws Exception
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/util/CertificateManagerTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/util/CertificateManagerTestCase.java
index 2e095646de..013ed48bb7 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/util/CertificateManagerTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/util/CertificateManagerTestCase.java
@@ -13,6 +13,7 @@
*
* Copyright 2008-2010 Sun Microsystems, Inc.
* Portions Copyright 2013-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.util;
@@ -829,7 +830,7 @@ public void testGenerateSelfSignedCertificateJKS(KeyType keyType)
*
* @throws Exception If a problem occurs.
*/
- @Test(groups="slow", dataProvider="keyTypes")
+ @Test(dataProvider="keyTypes")
public void testGenerateSelfSignedCertificatePKCS12(KeyType keyType)
throws Exception
{
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/util/TestCrypt.java b/opendj-server-legacy/src/test/java/org/opends/server/util/TestCrypt.java
index e78d29219e..97461e0d4a 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/util/TestCrypt.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/util/TestCrypt.java
@@ -14,6 +14,7 @@
* Copyright 2008 Sun Microsystems, Inc.
* Portions Copyright 2007 Brighton Consulting, Inc.
* Portions Copyright 2014-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
*/
package org.opends.server.util;
@@ -28,10 +29,10 @@
/**
* This class defines a set of tests for the {@link org.opends.server.util.Crypt} class.
*
- * In the "slow" group, since they are unlikely to break and since there are 4K+ they can take a
+ * Historically in the "slow" group, since they are unlikely to break and since there are 4K+ they can take a
* while
*/
-@Test(groups = { "slow" }, sequential = true)
+@Test(sequential = true)
public final class TestCrypt extends UtilTestCase {
private Crypt crypt = new Crypt();
> listOfList)
* Test that the RS is acking or not acking a safe data update sent from another
* (fake) RS according to passed parameters.
*/
- @Test(dataProvider = "testSafeDataFromRSProvider", groups = "slow", enabled = true)
+ @Test(dataProvider = "testSafeDataFromRSProvider", enabled = true)
public void testSafeDataFromRS(int sdLevel, int fakeRsGid, long fakeRsGenId, boolean sendInAssured) throws Exception
{
String testCase = "testSafeDataFromRS";
@@ -2365,7 +2414,7 @@ private Object[][] testSafeReadOneRSComplexPrecommitProvider()
/**
* See testSafeReadOneRSComplex comment.
*/
- @Test(dataProvider = "testSafeReadOneRSComplexPrecommitProvider", groups = "slow", enabled = true)
+ @Test(dataProvider = "testSafeReadOneRSComplexPrecommitProvider", enabled = true)
public void testSafeReadOneRSComplexPrecommit(int otherFakeDsGid, long otherFakeDsGenId, int otherFakeDsScen,
int otherFakeRsGid, long otherFakeRsGenId, int otherFakeRsScen) throws Exception
{
@@ -2416,9 +2465,9 @@ private Object[][] testSafeReadOneRSComplexProvider()
*
* All possible combinations tested thanks to the provider.
*