Code Monkey home page Code Monkey logo

qatoolkit-engine-bombardier-net's Introduction

QAToolKit.Engine.Bombardier

Build .NET Library CodeQL Sonarcloud Quality gate NuGet package Discord

Description

QAToolKit.Engine.Bombardier is a .NET standard library, which takes IEnumerable<HttpTestRequest> object and runs load tests with tool called Bombardier.

Supported .NET frameworks and standards: netstandard2.0, netstandard2.1, net7.0

Library is a thin wrapper, that generates requests and parses results to JSON. You can process or import that JSON in other tools. We plan to release an exporter to CSV, HTML and maybe other formats.

Major features:

  • Library takes IEnumerable<HttpTestRequest> object, which can be produced in your code or can be imported from other sources. One example can be QAToolKit Swagger library that can produce that object with many options. Check it out here.
  • Generate a Bombardier report in JSON format.

Bombardier version 1.2.5 is used for windows-amd64 and linux-amd64.

Get in touch with me on:

Discord

Sample

//Generate requests from previously stored JSON file:
var content = File.ReadAllText("Assets/GetAllBikes.json");
var httpRequest = JsonConvert.DeserializeObject<IEnumerable<HttpRequest>>(content);

//Create bombardier tests generator
var bombardierTestsGenerator = new BombardierTestsGenerator(httpRequest, options =>
{
    options.BombardierConcurrentUsers = 1;

    options.BombardierDuration = 1;
    options.BombardierTimeout = 30;
    options.BombardierUseHttp2 = true;
});

//Generate bomardier tests
var bombardierTests = await bombardierTestsGenerator.Generate();

//Run Bombardier Tests
var bombardierTestsRunner = new BombardierTestsRunner(bombardierTests.ToList(), options =>
{
    options.ObfuscateAuthenticationHeader = true;
});
var bombardierResults = await bombardierTestsRunner.Run();

Results sample bombardierResults:

[
    {
        "TestStart": "2020-10-26T14:53:41.9558275+01:00",
        "TestStop": "2020-10-26T14:53:45.371211+01:00",
        "Duration": 3.4153835,
        "Command": "-m GET https://api.demo.com/v1/categories?parent=4 -c 1 -H \"Authorization: Bearer eyJhbGciOiJSUzI1N....\" --http2 --timeout=30s --duration=1s",
        "Counter1xx": 0,
        "Counter2xx": 48,
        "Counter3xx": 0,
        "Counter4xx": 0,
        "Counter5xx": 0,
        "AverageLatency": 63.58,
        "AverageRequestsPerSecond": 15.72,
        "MaxLatency": 215.50,
        "MaxRequestsPerSecond": 53.13,
        "StdevLatency": 25.83,
        "StdevRequestsPerSecond": 18.80
    },
    ...
]

As you can see you get a lot of metrics from the tests. You can use xUnit to assert the numbers, or you can use BombardierTestAsserter like this:

var asserter = new BombardierTestAsserter(bombardierResults.FirstOrDefault());
var assertResults = asserter
    .NumberOf1xxResponses((x) => x == 0)
    .NumberOf2xxResponses((x) => x >= 0)
    .NumberOf3xxResponses((x) => x == 0)
    .NumberOf4xxResponses((x) => x == 0)
    .NumberOf5xxResponses((x) => x == 0)
    .AverageLatency((x) => x >= 0)
    .AverageRequestsPerSecond((x) => x >= 0)
    .MaximumLatency((x) => x >= 0)
    .MaximumRequestsPerSecond((x) => x >= 0)
    .AssertAll();

Asserter produces a list of AssertResult:

    /// <summary>
    /// Assert result object
    /// </summary>
    public class AssertResult
    {
        /// <summary>
        /// Assert name
        /// </summary>
        public string Name { get; set; }
        /// <summary>
        /// Is assert true
        /// </summary>
        public bool IsTrue { get; set; }
        /// <summary>
        /// Assert message
        /// </summary>
        public string Message { get; set; }
    }

Description

1. Authentication options

1.1 AddOAuth2Token (prefered)

Use AddOAuth2Token if your APIs are protected by Oauth2 Authentication. Pass Bearer token in the method along with the AuthenticationType.

1.2 AddApiKey

Use AddApiKey if your APIs are protected by simple API Key. Pass Api Key in the method. An ApiKey HTTP header will be generated with the value you provided. This is not best practice, but it's here if you need it.

1.3 AddBasicAuthentication

Use AddBasicAuthentication if your APIs are protected by basic authentication. Pass username and password in the method. A basic Authentication HTTP header will be generated. This is not best practice, but it's here if you need it.

1.4 AddReplacementValues

When you use AddReplacementValues values those can set or replace URL and HTTP body parameters before executing the tests. Replacement values have precedence over the example values that are set in Swagger file.

For example, you can add replacement values dictionary to the BombardierTestsGenerator.

var bombardierTestsGenerator = new BombardierTestsGenerator(options =>
{
    options.AddReplacementValues(new Dictionary<string, object> {
            {"api-version","2"},
            {"bicycleType","1"}
    });
    ...
});

2. Bombardier parameters

You can also set those BombardierGeneratorOptions options:

  • BombardierConcurrentUsers: How many concurrent users should be used in Bombardier tests. Default is 10.
  • BombardierDuration: How long the Bombardier tests should execute in seconds. Use this depending on the type of test you want to perform and should not be used with BombardierRateLimit. Default is 30 seconds.
  • BombardierTimeout: What is the Bombardier timeout to wait for the requests to finish. Default is 30 seconds.
  • BombardierUseHttp2: Use HTTP2 protocol. Otherwise HTTP1 is used. By default this is set to true.
  • BombardierRateLimit: Rate limit Bombardier tests per second. Use this depending on the type of test you want to perform and should not be used with BombardierDuration. By default rate limit is not set.
  • BombardierNumberOfTotalRequests: Limit the test to run only certain amount of requests. By default total number of requests is not set.
  • BombardierInsecure: Instead of HTTPS use HTTP protocol. Default value is false.
  • BombardierBodyContentType: Force only certain HTTP Content type. By default is set to application/json.

3. Obfuscate Auth tokens for Bombardier output

Output is obfuscated by default, but you can turn it off with options.ObfuscateAuthenticationHeader = false; in BombardierTestsRunner options.

How to use

In the sample code above we generate HTTP requests from previously generated object which was serialized to JSON.

If you use Swagger files, you need to check the QAToolKit.Source.Swagger NuGet package, where you can generate that object from the Swagger file.

Let's replace

//Generate requests from previously stored JSON file:
var content = File.ReadAllText("Assets/GetAllBikes.json");
var httpRequest = JsonConvert.DeserializeObject<IEnumerable<HttpRequest>>(content);

with

//Setup Swagger source
var urlSource = new SwaggerUrlSource(options =>
{
    options.AddBaseUrl(new Uri("https://qatoolkitapi.azurewebsites.net/"));
    options.AddRequestFilters(new RequestFilter()
    {
        EndpointNameWhitelist = new string[] { "GetAllBikes" }
    });
    options.UseSwaggerExampleValues = true;
});

//Load requests object
var requests = await urlSource.Load(new Uri[] {
    new Uri("https://qatoolkitapi.azurewebsites.net/swagger/v1/swagger.json")
});

in the sample code above. Check the QAToolKit.Source.Swagger library for more details.

To-do

  • This library is an early alpha version
  • Currently tested for GET, POST, PUT and DELETE HTTP methods. Need to extend support.
  • NTLM authentication is currently not possible because of the Bombardier limitations.

License

MIT License

Copyright (c) 2020-2023 Miha Jakovac

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

qatoolkit-engine-bombardier-net's People

Contributors

mihaj avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.