Java and kotlin tests

Locust Performance Testing Using Java and Kotlin

Join the DZone community and get the full member experience.

If you have already put your hands on performance testing with Locust, then you should know it’s a really great code-based framework that provides outstanding capabilities for writing your tests in the Python scripting language. In one of our previous articles, which has a quick comparison of JMeter and Locust, we presented Locust as a wonderful tool for engineers who have some Python scripting experience.

Running Performance Tests in Locust with Custom Languages

But does that mean that this tool is not for you if you are not a Python fan and for some reason do not prefer this powerful scripting language? Surprisingly, it doesn’t! We have great news for you! The Locust framework gives you the option to run its custom slaves on other programming languages! Basically, if you have programming experience, you can implement your own custom client to support the custom language you are using. It’s worth it to mention that there are already two ready client implementations that allow you to create Locust slaves using Golang and Java programming languages.

In this article, we will demonstrate how to use one of these clients for implementing your performance tests in the Locust framework. We will use the Java client but you can apply the same steps for Golang language as well, because the principles are the same. Moreover, we will show you how to use the same Java Locust library to create your tests using Kotlin. Kotlin has all the benefits provided by Java, but with an additional huge batch of benefits that you can learn from the Kotlin official site. As for me, I love both languages with a slight preference for Kotlin. But as Kotlin and Java can be easily used in the same project, I thought it would be nice to have them both as examples.

The main idea behind the approach for using a custom programming language in Locust performance tests, is that you have the Locust master service running in Python and any number of slave nodes that can be run using any programming language. Each of the Locust slaves sends the metrics to the master, which aggregates the data and runs the Locust web application, which you can use to view the metrics:

Increase image running locust load tests in java

Creating a Load Test in Java for Locust

First, let’s start with a project that will contain the load tests written in Java programming language. In this article, our examples will be based on API HTTP requests against http://blazedemo.com web app. In order to make API calls we can use REST Assured, one of the best Java frameworks for API testing..

Читайте также:  Как придумать название класса css

Adding Dependencies

As we need to run written tests as Locust performance scripts, we also need to have the dependency for the Locust4j Java library, which creates all the magic for the Locust integration. To download and use the mentioned libraries in our project we will use Maven. All you need is to create a Maven project in your favorite IDE and use this pom.xml file:

  4.0.0 com.bushnevyuri locust-java-kotlin-performance-tests 1.0-SNAPSHOT  com.github.myzhan locust4j 1.0.0  com.jayway.restassured rest-assured 2.9.0     maven-assembly-plugin   true com.bushnevyuri.Main   jar-with-dependencies      

The provided pom file contains REST Assured and Locust4j dependencies, plus it contains a configuration that allows creating a Java jar file with all the dependencies packed inside. This jar file is important in order to run the project as a Locust slave, without using the IDE environment later.

Running the Locust Master

As we explained above, we need to run Locust master if we want to use custom programming languages on Locust slaves. To run the Locust master, it is enough to create the simplest Locust script with a dummy task inside. Let’s create a Python file that we can place in the root of our test project and called it “locust-master.py”.

from locust import Locust, TaskSet, task class DummyTask(TaskSet): @task(1) def dummy(self): pass class Dummy(Locust): task_set = DummyTask

Increase image locust not only in python

You can run the master service by this command:

locust -f locust-master.py --master --master-bind-host=127.0.0.1 --master-bind-port=5557

This command says that we are going to run the script in master mode on the local machine and the 5557 port (you can use any another free port on the machine). As a result, you should get something like this:

Increase image running the locust framework in javascript, CSS, C, C++

Now the Locust master is running and ready to get some slaves on board.

Creating the Main Class for the Locust Slave

Let’s create the main class that will be used to run the Locust Java slave. The code is very simple. You just need to create the Locust object and specify which host and port are being used to run the master service:

package com.bushnevyuri; import com.github.myzhan.locust4j.Locust; public class Main < public static void main(String[] args) < Locust locust = Locust.getInstance(); locust.setMasterHost("127.0.0.1"); locust.setMasterPort(5557); //some free port to run the Locust slave locust.run(. ); // >

Inside the locust.run(. ) function you need to provide the list of tests that you are going to run. Let’s run a small test that just opens the http://blazedemo.com application:

package com.bushnevyuri.tasks; import com.github.myzhan.locust4j.AbstractTask; import com.github.myzhan.locust4j.Locust; import com.jayway.restassured.response.Response; import static com.jayway.restassured.RestAssured.given; public class OpenApplicationTask extends AbstractTask < private int weight; @Override public int getWeight() < return weight; >@Override public String getName() < return "Open application task"; >public OpenApplicationTask(int weight) < this.weight = weight; >@Override public void execute() < try < Response response = given().get("http://blazedemo.com"); Locust.getInstance().recordSuccess("http", getName(), response.getTime(), 1); >catch (Exception ex) < ex.printStackTrace(); >> >

Implementing Tests

As you can see, tests implementation is also relatively simple. All you need to do is to extend the new class from the “AbstractTask” class located inside the Locust4j framework and override some of the functions:

  • getWeight() — should return the weight of the task. This represents how often a specified task is going to be used. In other words, a task with weight 2 will run twice as often as a task with weight 1
  • getName() — should return the name of the task that we will see in the Locust monitoring and report, to identify the task
  • execute() — contains the body of the test that you should use to put your task logic inside
Читайте также:  Java for operating system

In addition, we made the custom class constructor for the task to accept the task weight as an argument (check this article to learn more about constructors). Using this approach, we can configure the weights of the implemented tasks from the main class, which contains all the tasks that are going to be executed, separated by commas.

Creating Assertions

If you need to create some assertions, you can put them inside the same execute() function that contains the main logic of the task. Let’s create one additional task that simulates a flights search between Paris and Buenos Aires. In the same task we will verify that the response code is 200, which means that request has been executed successfully:

package com.bushnevyuri.tasks; import com.github.myzhan.locust4j.AbstractTask; import com.github.myzhan.locust4j.Locust; import com.jayway.restassured.response.Response; import static com.jayway.restassured.RestAssured.given; public class FindFlightsTask extends AbstractTask < private int weight; @Override public int getWeight() < return weight; >@Override public String getName() < return "Find flights task"; >public FindFlightsTask(int weight) < this.weight = weight; >@Override public void execute() < try < Response response = given().parameters("fromPort", "Paris", "toPort", "Buenos Aires"). when().post("http://blazedemo.com/reserve.php"); assert response.getStatusCode() == 200; Locust.getInstance().recordSuccess("http", getName(), response.getTime(), 1); >catch (Exception ex) < ex.printStackTrace(); >> >

As soon as our tasks are implemented, we can specify them inside the locust.run() function separated by a comma:

package com.bushnevyuri; import com.bushnevyuri.tasks.FindFlightsTask; import com.bushnevyuri.tasks.OpenApplicationTask; import com.github.myzhan.locust4j.Locust; public class Main < public static void main(String[] args) < Locust locust = Locust.getInstance(); locust.setMasterHost("127.0.0.1"); locust.setMasterPort(5557); //some free port to run the Locust slave locust.run( new OpenApplicationTask(50), new FindFlightsTask(50) ); >>

Running the Locust Load Test

After that you can run the Locust Java slave right from the IDE:

Increase image which languages does locust support?

After the script has started, the master should show you the message:

[2017-12-16 23:09:35,182] Yuris-MBP-2.home/INFO/locust.runners: …. Currently 1 clients ready to swarm.

What if you want to run the same slave but via the console? First, you need to create the jar file with all the dependencies packed inside. If you are following our steps, you should already have the pom.xml file with the correct configuration to create the jar file. Use this command:

mvn clean compile assembly:single

After that, you can run the Locust Java slave using this command (assuming that your console is opened at the root of our test project):

java -cp target/locust-java-kotlin-performance-tests-1.0-SNAPSHOT-jar-with-dependencies.jar com.bushnevyuri.Main

Now, if you run the locust UI (http://localhost:8089), you should see that you have 1 slave:

Increase image locust performance tests in kotlin

Congratulations! You are running your first Locust script written in pure Java!

But what about Kotlin? As for me, I personally love Kotlin as the main language for all kinds of testing activities. It has all the benefits provided by Java but at the same time, it is much faster to write the tests because of simplicity of syntax and different syntax sugar. We are not going to compare these two wonderful programming languages. We will provide you with some steps explaining how you can use Kotlin instead of Java to implement Locust performance scripts.

Читайте также:  Develop web application using php

Installing the Kotlin Runner

First, you need to install the Kotlin runner to execute the Kotlin scripts. You can easily do this by using the brew package manager:

Adding Dependencies and Plugins

  4.0.0 com.bushnevyuri locust-java-kotlin-performance-tests 1.0-SNAPSHOT 1.2.10  …… org.jetbrains.kotlin kotlin-stdlib-jdk8 $ org.jetbrains.kotlin kotlin-test $ test    …… org.jetbrains.kotlin kotlin-maven-plugin $  compile compile compile   src/main/java src/main/kotlin    test-compile test-compile test-compile    1.8   org.apache.maven.plugins maven-compiler-plugin  compile compile compile   testCompile test-compile testCompile       

After that, you need to create the list of updates in our pom.xml to add the Kotlin dependencies and plugins that will be used to compile the Kotlin scripts:

Converting Tests from Java

If you use the Idea IDE programming environment, then in order to create the same tests in Kotlin, all you need is to create empty files with the same names. (It’s better to add a prefix like ‘Kotlin’ in order to differentiate the Kotlin tests from the existing Java tests). Then, just copy and paste the Java code inside accordingly. The conversion from Java to Kotlin will be done automatically. This is an example of the task that finds the flights between Paris and Buenos Aires, but written on Kotlin this time:

package com.bushnevyuri.tasks import com.github.myzhan.locust4j.AbstractTask import com.github.myzhan.locust4j.Locust import com.jayway.restassured.RestAssured.given class FindFlightsKotlinTask(private val weight: Int) : AbstractTask() < override fun getWeight(): Int < return weight >override fun getName(): String < return "Find flights task" >override fun execute() < try < val response = given().parameters("fromPort", "Paris", "toPort", "Buenos Aires").`when`().post("http://blazedemo.com/reserve.php") assert(response.getStatusCode() == 200) Locust.getInstance().recordSuccess("http", getName(), response.getTime(), 1) >catch (ex: Exception) < ex.printStackTrace() >> >

As soon as all tasks and the main runner function are converted (if you had trouble with the Java -> Kotlin conversion you can check the final classes by this link) you need to package the jar file one more time by using this command:

mvn clean compile assembly:single

Running the Locust Load Test

After that, the Locust Kotlin slave can be run by this command:

kotlin -cp target/locust-java-kotlin-performance-tests-1.0-SNAPSHOT-jar-with-dependencies.jar com.bushnevyuri.KotlinMainKt

As you can see, there is nothing difficult about using Locust with other programming languages. Powerful extensibility is one of the main distinctive features of the Locust framework. So, if you have some programming experience, you should be able to extend the Locust framework with any custom functionality, to achieve any kind of specific goals for your performance testing suite. Couldn’t find Locust integration with your favorite programming language? You can be the person who can creates your own and shares with a grateful Locust community.

As always, you can find the whole project based on provided snippets in the git repo through this link.

That’s it! You now know how to run your load tests in Locust with your custom language, like Java or Kotlin.

Automate your Locust tests through Taurus. You can also easily scale your Locust framework tests, run them in the cloud and analyze the results on BlazeMeter.

Published at DZone with permission of Yuri Bushnev , DZone MVB . See the original article here.

Opinions expressed by DZone contributors are their own.

Источник

Оцените статью