* A GetRootDSE performance test
*/
@Test
public void testPerfGetRootDse() throws Exception
{
GetRootDseOperationContext getRootDseContext = new GetRootDseOperationContext( getService().getAdminSession() );
Entry rootDse = getService().getOperationManager().getRootDse( getRootDseContext );
assertNotNull( rootDse );
int nbIterations = 1500000;
long t0 = System.currentTimeMillis();
long t00 = 0L;
long tt0 = System.currentTimeMillis();
for ( int i = 0; i < nbIterations; i++ )
{
getRootDseContext.setCurrentInterceptor( 0 );
if ( i % 100000 == 0 )
{
long tt1 = System.currentTimeMillis();