Apache JMeter: Load Test Whatever You Want
This post will show you, step by step, how to write a JMeter Java Request.
Step 1: Preparing the development environment
Add these two jar files to the java classpath.
- $JMETER_HOME/lib/ext/ApacheJMeter_core.jar
- $JMETER_HOME/lib/ext/ApacheJMeter_java.jar
(If you are using Eclipse, add these files as external jar files to the java build path.)
Step 2: Extending AbstractJavaSamplerClient
After setting up the classpath, create a custom sampler by extending AbstractJavaSamplerClient and override the following methods.
public Arguments getDefaultParameters() {...} public void setupTest(JavaSamplerContext context) {...} public void teardownTest(JavaSamplerContext context) {...} public SampleResult runTest(JavaSamplerContext context) {...}
getDefaultParameters
Implement getDefaultParameters if you want initial values for test paramters. JMeter will display the parameters in its Java Request configuration GUI. (See the contents of the red rectangle in the picture below.) Here’s an example implementation:
public Arguments getDefaultParameters() { Arguments defaultParameters = new Arguments(); defaultParameters.addArgument("memcached_servers", "localhost:11211"); defaultParameters.addArgument("username", "testuser"); defaultParameters.addArgument("password", "testpasswd"); return defaultParameters; }
setupTest
This is where you read test parameters and initialize your test client. JMeter calls this method only once for each test thread.
teardownTest
Clean up the mess.
runTest
Write your test logic in this method. JMeter will call runTest method for every execution of test threads. Here is a typical runTest implementation:
@Override public SampleResult runTest(JavaSamplerContext context) { SampleResult result = new SampleResult(); boolean success = true; result.sampleStart(); // // Write your test code here. // result.sampleEnd(); result.setSuccessful(success); return result; }
The time elapsed betweed result.sampleStart() and result.sampleEnd() is used to calculate average response time of the application under test.
Step 3: Deploy your custom sampler
You can see the results of your test by adding listeners to your test plan. “A step by step tutorial about load testing relational databases” post shows how to add listeners to test plans.
Reference: Load Test Whatever You Want With Apache JMeter from our JCG partner Ilkin Ulas at the All your base are belong to us blog.
perfect article..done my job..
Great , ii’s been very useful article and it solve my problem thanks a lot :D
Thanks for great post. There is a way to execute custom Java code right from JMeter test using Beanshell Sampler. It won’t require custom coding, packaging, deploying, etc. however full access to Java and JMeter API will be provided. See How to use BeanShell: JMeter’s favorite built-in component guide for more details
Thanks for a great post. When you define parameters in getDefaultParameters method how do you get the parameter’s value in runTest? How do I get the username and password passed in my code?
Thanks for this post. How can I generate result file (jtl) from java code?
I’ve been struggling creating a Java Sampler that calls Spring boot libraries , the problem I see is that the spring Objs are never booted. even though the dependencies dont seem to be a problem any more, Im wondering if I should persist pursuing this kind of calls.