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!

'Performance Testing via Artillery.io, photo 0 img1

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:

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)

3. 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.

4. 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.

5. 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.

6. 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.

7. 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.

'Performance Testing via Artillery.io, photo 1 img2

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:

'Performance Testing via Artillery.io, photo 2 img3

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

'Performance Testing via Artillery.io, photo 3 img4

Config

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

'Performance Testing via Artillery.io, photo 4 img5

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.

'Performance Testing via Artillery.io, photo 5 img6

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.

'Performance Testing via Artillery.io, photo 6 img7

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: {}
'Performance Testing via Artillery.io, photo 7 img8

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.

'Performance Testing via Artillery.io, photo 8 img9

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:

'Performance Testing via Artillery.io, photo 9 img10

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.

'Performance Testing via Artillery.io, photo 10 img11

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:

  1. payload – to use the payload functionality;

  2. path – to write a path for the CSV file that Artillery needs to use;

  3. fields – names of fields that you need to use.

'Performance Testing via Artillery.io, photo 11 img12

See an example with a CSV file:

'Performance Testing via Artillery.io, photo 12 img13

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:

'Performance Testing via Artillery.io, photo 13 img14

And after it’s done, you can use your variable inside your yml file:

'Performance Testing via Artillery.io, photo 14 img15

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:

'Performance Testing via Artillery.io, photo 15 img16

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:

'Performance Testing via Artillery.io, photo 16 img17

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!