DEV Community

Valor-software-tech
Valor-software-tech

Posted on

Performance Testing via Artillery.io - user guide

Valor's Head of QA Dmitry has shared his experience using Artillery.io including tips and tricks for beginners. The following story is on his behalf, and the original material was published on the company's blog.

Intro

Today, I’m going to tell you all about setting up and using Artillery.io on your projects. We have a lot of popular testing tools like JMeter, Gatling, LoadNinja, etc. So you might be wondering why I’ve chosen Artillery. Well, I’m going to show its advantages and share handy usage tips later in the article.

‌Artillery.io is a modern performance testing software that is powerful yet quite simple to navigate. It suits different types of performance testing, on local machines and as part of CI. What’s even better? – Artillery provides a free ‘Dev’ option if you want to test the waters before diving in. So, let's make some exploration!

Why Artillery.io?

Artillery offers many services that make performance and load testing faster and more reliable. Now let me outline a few reasons why I choose to use it over the better-known software.

  1. Node.js tool
    Java-based tools can be complicated and time-consuming to work with. Artillery.io is a Node.js tool with a basic СLI, which is a far simpler way to run performance tests.

  2. Broad support of protocols, frameworks, and libraries
    Out of the box, Artillery.io will support:

  • HTTP
  • Socket.IO
  • WebSocket
    However, you can use Artillery.io to test any stack, thanks to the plugin interface. Here are a few examples:

  • Apache Kafka

  • Amazon Kinesis

  • HLS (HTTP Live Streaming)‌

  • YAML format
    Unlike popular competitors’ testing tools, Artillery.io writes tests in YAML format which makes them readable and easy to understand. Artillery also supports a JSON format for testing.

  1. Accessible scenarios
    With Artillery's scenarios and phases, you can build more flexible tests and cover multiple use cases in parallel. Also, it takes you just a few steps and conditions to set up tests for complex user behaviours. Finally, it's easy to reuse scenarios for comparison and future testing.

  2. Easy integration
    Artillery.io seamlessly integrates with CI (for example, check the integration guide for GitHub Actions), making the process very organized. It also works with Docker, so you can run your Artillery tests inside a Docker container.

  3. Detailed reports
    After running tests, you can create a JSON report through the --output flag. Also, you can generate an HTML report out of JSON to save it as a file or export it to your browser. Find details on reporting in the Scenario section below.

  4. Artillery Docs
    Artillery provides numerous documents to browse for instructions and other useful info. This helps you get the performance testing software up and running much smoother than with other similar tools. Also, you can look up support from other developers on community forums.
    Image description

How does Artillery.io work?

I’m going to walk you through some basic commands to get started with Artillery.io using ngx-bootstrap in my examples. Ngx-bootstrap, together with other community libraries, were created by Valor Software, the company where I’m working. And as we have hundreds of thousands of engineers using our products monthly, we need scalable performance testing to make sure everything runs smoothly. So, let’s get started!

First, you need to install the latest version of the software.

Install
To install the latest version, enter:
npm install -g artillery@latest

Fast test
To run a fast test, enter:
artillery quick --count 15 -n 30 https://valor-software.com/ngx-bootstrap/

With this command, the test will run 15 virtual users with each of them making 30 HTTP GET requests to the URL address that you specified.‌

This command also supports other flags to configure your fast tests:
Image description

Below is a list of possible configurations of the run command:
Image description

Config
For standard test scenarios, you should create a ‘my.yml’ file with config.
Image description

The my.yml file should contain ‘config:’ paired with the target URL. To set up environments for your tests, you can write environments into the command after the target URL has been entered.
Image description

Phases in the config
Artillery.io allows you to enter multiple sequential load options for the application. The testing phase consists of several aspects:

  • duration: the time of one phase;
  • arrivalRate: the number of users added each second;
  • rampTo: up to how many users per second the load will grow by;
  • name: a name of the phases. Image description

If you only have one target URL, the different phases of the performance testing are placed right after it. If there are multiple environments, then you should add phases to each environment variable.

Plugins
In the Artillery npm utility, you can find lots of plugins that can help you in your performance testing. Install artillery-plugin-expect to compare the expected result with the actually received result.

Then, after the phases inside the config, enter:
plugins:
expect: {}

Image description

Now, with the config completed, we can finally write some tests!

Scenario
All tests should be written in the scenarios section and should contain:

  • GET, POST, PUT, DELETE, and some other commands;
  • a URL for every endpoint;
  • the body text in JSON format;
  • all checks you want to run. Image description

To run tests, you should enter:
artillery run my.yml

To run a test and then generate a report in a .txt file, run:
artillery run -o first.txt my.yml

After generating a .txt report, to generate a second report in HTML, run the command:
artillery report first.txt

Here's the report example:
Image description

Authentication
With Artillery.io, you can use basic authentication or get authorized by tokens uploading CSV with your credentials. Just pick an option that suits your project best.

Check their official documentation to find information on authentication and many other aspects of Artillery.io.
Image description

Let's first revise how you can get authorized by tokens. To upload a CSV file with credentials, you should add the following lines into the config file:

  • payload – to use the payload functionality;
  • path – to write a path for the CSV file that Artillery needs to use;
  • fields – names of fields that you need to use. Image description

See an example with a CSV file:
Image description

The second way to get authorized is through environment variables. And we have several options for this. The first one is to execute an export command in your console as below:
Image description

And after it's done, you can use your variable inside your yml file:
Image description

Another option is to write a new script with an environment variable in your package.json file to execute your tests without typing the export variable in the terminal each time. It will look like this:
Image description

Then all you need to do is run this script in the terminal:
npm run artillery:run

Finally, you can upload CSV to pass parameters for your test requests: GET, POST, PUT, etc.
Check an example with POST:
Image description

Final thoughts
Artillery.io is an accessible and comprehensive tool that I use and can surely recommend for performance testing.

With a free Artillery Core version, you can run tests from a local or virtual machine. And by switching to Artillery Pro, you're getting a self-hosted AWS performance testing platform.

Other features of Artillery Pro include:

  • runs millions of tests per second across 13 geographical regions;
  • works with existing security systems;
  • no repeat charges or paid maintenance;
  • VPC internal test services.

I hope this article has given you some clarity on Artillery’s software, and helped you make a choice regarding the performance testing tool you want to work with. ‌‍

In case you’re looking for help in software testing, or your project needs an advanced quality assurance pipeline – drop us a line!

Useful Links

Top comments (0)