blob: 6d50748b6f5194808180d5f8140623ca18be7b34 [file] [log] [blame]
/*
* 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.fortress.core.jmeter;
import org.apache.jmeter.protocol.java.sampler.JavaSamplerContext;
import org.apache.jmeter.samplers.SampleResult;
import org.apache.directory.fortress.core.model.User;
import static org.junit.Assert.*;
/**
* Description of the Class
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class AddUser extends UserBase
{
private int ctr = 0;
/**
* Description of the Method
*
* @param samplerContext Description of the Parameter
* @return Description of the Return Value
*/
public SampleResult runTest( JavaSamplerContext samplerContext )
{
String userId = hostname + '-' + qualifier + '-' + getKey();
SampleResult sampleResult = new SampleResult();
try
{
sampleResult.sampleStart();
assertNotNull( adminMgr );
User user = new User();
user.setUserId( userId );
user.setPassword( "secret" );
user.setOu( ou );
write( "threadid: " + getThreadId() + ", userId: " + userId );
User outUser = adminMgr.addUser( user );
assertNotNull( outUser );
if( update )
{
user.setDescription( "updated: " + user.getUserId() );
outUser = adminMgr.updateUser( user );
}
assertNotNull( outUser );
if ( verify )
{
assertTrue( verify( userId, Op.ADD ) );
}
if( sleep > 0 )
{
try
{
Thread.sleep( sleep );
}
catch (InterruptedException ie)
{
Thread.currentThread().interrupt();
}
}
sampleResult.sampleEnd();
sampleResult.setBytes(1);
sampleResult.setResponseMessage("test completed TID: " + getThreadId() + " UID: " + userId);
sampleResult.setSuccessful(true);
}
catch ( org.apache.directory.fortress.core.SecurityException se )
{
warn( "ThreadId: " + getThreadId() + ", error running test: " + se );
se.printStackTrace();
sampleResult.setSuccessful( false );
}
return sampleResult;
}
}