Skip to content

Commit

Permalink
Implemented JMeter custom method call __FloatRandomNumber.
Browse files Browse the repository at this point in the history
  • Loading branch information
rakeshcusat committed May 22, 2013
1 parent 46bc93e commit 91d06c2
Show file tree
Hide file tree
Showing 5 changed files with 173 additions and 0 deletions.
76 changes: 76 additions & 0 deletions JMeter/code4reference/com/jmeter/FloatRandomNumber.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
package code4reference.com.jmeter.functions;

import java.util.Collection;
import java.util.LinkedList;
import java.util.List;
import java.util.Random;

import org.apache.jmeter.engine.util.CompoundVariable;
import org.apache.jmeter.functions.AbstractFunction;
import org.apache.jmeter.functions.InvalidVariableException;
import org.apache.jmeter.samplers.SampleResult;
import org.apache.jmeter.samplers.Sampler;
import org.apache.jmeter.threads.JMeterVariables;

public class FloatRandomNumber extends AbstractFunction {
private static final List<String> desc = new LinkedList<String>();
private static final String KEY = "__floatRandomNumber";
private static final Random random = new Random(System.currentTimeMillis());

static {
desc.add("Returns the next pseudorandom, uniformly distributed float value between 0.0 and 1.0.");
}
private Object[] values;

/**
* No-arg constructor.
*/
public FloatRandomNumber() {
}

/**
* {@inheritDoc}
*/
@Override
public synchronized String execute(SampleResult previousResult, Sampler currentSampler)
throws InvalidVariableException {
JMeterVariables vars = getVariables();

Float randomFloat = random.nextFloat();
String varName = null;

if (values.length > 0) {
varName = ((CompoundVariable) values[0]).execute().trim();
}

if (vars != null && varName != null && varName.length() > 0) {// vars will be null on TestPlan
vars.put(varName, randomFloat.toString());
}

return randomFloat.toString();
}

/**
* {@inheritDoc}
*/
@Override
public synchronized void setParameters(Collection<CompoundVariable> parameters) throws InvalidVariableException {
values = parameters.toArray();
}

/**
* {@inheritDoc}
*/
@Override
public String getReferenceKey() {
return KEY;
}

/**
* {@inheritDoc}
*/
@Override
public List<String> getArgumentDesc() {
return desc;
}
}
76 changes: 76 additions & 0 deletions JMeter/code4reference/com/jmeter/functions/FloatRandomNumber.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
package code4reference.com.jmeter.functions;

import java.util.Collection;
import java.util.LinkedList;
import java.util.List;
import java.util.Random;

import org.apache.jmeter.engine.util.CompoundVariable;
import org.apache.jmeter.functions.AbstractFunction;
import org.apache.jmeter.functions.InvalidVariableException;
import org.apache.jmeter.samplers.SampleResult;
import org.apache.jmeter.samplers.Sampler;
import org.apache.jmeter.threads.JMeterVariables;

public class FloatRandomNumber extends AbstractFunction {
private static final List<String> desc = new LinkedList<String>();
private static final String KEY = "__floatRandomNumber";
private static final Random random = new Random(System.currentTimeMillis());

static {
desc.add("Returns the next pseudorandom, uniformly distributed float value between 0.0 and 1.0.");
}
private Object[] values;

/**
* No-arg constructor.
*/
public FloatRandomNumber() {
}

/**
* {@inheritDoc}
*/
@Override
public synchronized String execute(SampleResult previousResult, Sampler currentSampler)
throws InvalidVariableException {
JMeterVariables vars = getVariables();

Float randomFloat = random.nextFloat();
String varName = null;

if (values.length > 0) {
varName = ((CompoundVariable) values[0]).execute().trim();
}

if (vars != null && varName != null && varName.length() > 0) {// vars will be null on TestPlan
vars.put(varName, randomFloat.toString());
}

return randomFloat.toString();
}

/**
* {@inheritDoc}
*/
@Override
public synchronized void setParameters(Collection<CompoundVariable> parameters) throws InvalidVariableException {
values = parameters.toArray();
}

/**
* {@inheritDoc}
*/
@Override
public String getReferenceKey() {
return KEY;
}

/**
* {@inheritDoc}
*/
@Override
public List<String> getArgumentDesc() {
return desc;
}
}
12 changes: 12 additions & 0 deletions JavaPrograms/jarExample/MainJar.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import code4reference.com.jar.TestJar;

class MainJar{
public static void main(String args[]){

TestJar testjar = new TestJar();

testjar.print();

}

}
9 changes: 9 additions & 0 deletions JavaPrograms/jarExample/code4reference/com/jar/TestJar.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package code4reference.com.jar;

public class TestJar {

public void print(){
System.out.println("Hello World! from TestJar");
}

}
Binary file added JavaPrograms/jarExample/testjar.jar
Binary file not shown.

0 comments on commit 91d06c2

Please sign in to comment.