Skip to main content

Test Java class with JMeter

It is quite easy to test API or Website using JMeter 

but you may come across situation when you have to load test java class directly. 

This post described how a java class can be load tested. 

We will write a java program and use JMeter Java Sampler to load test it -


  • Set up a maven selenium project. If you are new to java and maven then you may like to check my java tutorials

  • Add following dependencies to your maven project (find out latest versions by searching https://search.maven.org/) - 

<dependency>

   <groupId>org.apache.jmeter</groupId>

   <artifactId>ApacheJMeter_core</artifactId>

   <version>3.1</version>

</dependency>

<dependency>

   <groupId>org.apache.jmeter</groupId>

   <artifactId>ApacheJMeter_java</artifactId>

   <version>3.0</version>

</dependency>

 

  • Let's write a java program to add numbers - 

public class AddNumbers {

   public int addTwoNumbers(int a,int b) {

       return a+b;

   }

}


  • And a test program which we would use in JMeter later on.

  • Implement interface JavaSamplerClient or extend AbstractSamplerClient.

  • You can leave other methods empty and would have to implement runTest and getDefaultParameters. The test class would look as -


public class AddNumberTest implements JavaSamplerClient {

   @Override public void setupTest(JavaSamplerContext javaSamplerContext) {

   }

   @Override

   public SampleResult runTest(JavaSamplerContext javaSamplerContext) {

       String var1 = javaSamplerContext.getParameter("var1");

       String var2 = javaSamplerContext.getParameter("var2");

       SampleResult result = new SampleResult();

       result.sampleStart();

       result.setSampleLabel("Test Sample");

       // Test Code

       AddNumbers addNumbers = new AddNumbers();

       if(addNumbers.addTwoNumbers(Integer.valueOf(var1), Integer.valueOf(var2))==2) {

           result.sampleEnd();

           result.setResponseCode("200");

           result.setResponseMessage("OK");

           result.setSuccessful(true);

       } else {

           result.sampleEnd();

           result.setResponseCode("500");

           result.setResponseMessage("NOK");

           result.setSuccessful(false);

       }

       return result;

   }

   @Override public void teardownTest(JavaSamplerContext javaSamplerContext) {

   }

   @Override public Arguments getDefaultParameters() {

       Arguments defaultParameters = new Arguments();

       defaultParameters.addArgument("var1","1");

       defaultParameters.addArgument("var2","2");

       return defaultParameters;

   }

  • getDefaultParameters has the parameters with default values. This values would appear on Java Sampler which we

  • would see later on. runTest method uses the parameters supplied from getDefaultParameters. runTest is quiet simple, it adds given numbers, if sum is equal to 2 then it is a success else failures.

  • Now package your project using mvn package and place the generated jar file in JMeter's following directory -

  • ~/apache-jmeter-3.0/lib/ext/

  • Now open JMeter and add Java sampler and select classname as AddNumberTest -





If you are new to JMeter then you can follow my JMeter training videos

 Lets run the test with default variables and you will see it fails since 1+2 is not equal to 2

 


Let's change default values to 1


Let's run test again and it is green now -

 



Now you can set up your test with required thread, duration and other parameters :)

** When you create new jar then you should restart JMeter. I did not see JMeter picking changes after placing new jar in /lib/ext/ directory and not restarting the JMeter

Popular posts from this blog

Appium and android mobile app automation

Next appium and Android mobile app automation video tutoria l is live. If you are new to appium then please check - appium-tutorial This video tutorial covers - Start vysor (Just for this session and not mobile automation :)) Start appium and start appium inspector Desired Capabilities platformName - Android deviceName - L2N0219828001013 (as seen on "adb devices") Saved Capability Sets Start Session Scan app elements using appium inspector Get appPackage and appActivity using "APK info" app Install "APK info" app and open app whose appPackage and appActivity are required i.e. calculator Check top section of app icon com.android.calculator2 is app package com.android.calculator2.Calculator is app activity testng.xml file settings for running Android app tests Test details com.seleniumtests.tests.mobile.AndroidAppTest and CalculatorScreen class View beautiful STF test report  

Return only first or last element from webelements collection

Note: If you are new to java and selenium then start with selenium java training videos .     We often come across situation when there are multiple elements on a page and we probably like to exercise only a few of them using selenium webdriver. May be just first and last element. For example on a search result page we may like to click on only first and last link and not all. This is when Iterables API comes handy. (By the way I am assuming that you have already completed watching selenium training videos :)). Once we have collection of web element then we can use Iterables to get only first or last element as following - Consider that we fetch collection of element as - List< WebElement > webElements = getDriver().findElements(By. id ( "htmlID" ));   Now we can get the first web element from this collection as -  WebElement firstElement = Iterables. getFirst (webElements,  getDriver().findElement(By. id ( "defaultElement" )));   Herein second

Using chrome console to test xPath and css selectors

Note: If you are new to java and selenium then start with selenium java training videos .       Since the advent of selenium there have been many plugin to test xPath / css selectors but you don’t need any of them if you have chrome browser. Using Chrome console you can test both xPath and css selectors. Launch website to be tested in chrome browser and hit F-12 and you would see chrome console opened in lower pane of application - Hit escape key and console would open another pane to write element locators - And now you can start writing xPath or css selectors in chrome console and test them - The syntax for writing css id - $$(“ ”) And hit the enter key. If your expression is right then html snippet of the application element corresponding to the css selector would be displayed - If you mouse over the html snippet in chrome console then it would highlight the corresponding element in application - If you want to clean console of previously wri