Skip to content

Distributed load-testing framework for .NET. Create distributed load test scenarios entirely using plain C# or F#. It is designed to test any system regardless of the protocol or a semantic model (Pull/Push).

Notifications You must be signed in to change notification settings

PragmaticFlow/NBomber

Repository files navigation

NBomber logo

NuGet Nuget

NBomber - Distributed load-testing framework for .NET. It is designed to test any system regardless of the protocol (HTTP/WebSockets/AMQP) or a semantic model (Pull/Push). It allows to write distributed load test scenarios in plain C# or F#.

NBomber 5

NBomber as a modern framework provides:

Why we build NBomber and what you can do with it?

The main reason behind NBomber is to provide a lightweight framework for writing load tests which you can use to test literally any system and simulate any production workload. We wanted to provide only a few abstractions so that we could describe any type of load and still have a simple, intuitive API. Another goal is to provide building blocks to validate your POC (proof of concept) projects by applying any complex load distribution. With NBomber you can test any PULL or PUSH system (HTTP, WebSockets, GraphQl, gRPC, SQL Databse, MongoDb, Redis etc). With NBomber you can convert some of your integration tests to load tests easily.

What makes it very simple?

One of the design goals of NBomber is to keep API as minimal as possible. Because of this, NBomber focuses on fully utilizing programming language(C#/F#) constructs instead of reinventing a new DSL that should be learned. In other words, if you want to write a for loop, you don't need to learn a DSL for this.

var scenario = Scenario.Create("hello_world_scenario", async context =>
{
    // you can define and execute any logic here,
    // for example: send http request, SQL query etc
    // NBomber will measure how much time it takes to execute your logic
    await Task.Delay(1_000);

    return Response.Ok();
})
.WithLoadSimulations(
    Simulation.Inject(rate: 10,
                      interval: TimeSpan.FromSeconds(1),
                      during: TimeSpan.FromSeconds(30))
);

NBomberRunner
    .RegisterScenarios(scenario)
    .Run();

Videos

Load Testing with C# and NBomber (Part 1)

Links

Frequently asked questions

Question Answer
How NBomber can be installed? NBomber is shipped as .NET library and can be installed via NuGet package manager
How can I run NBomber load test scenario? You can run it as Console application or as Unit test (xUnit/NUnit)
Can I use NBomber for free? You can use it for free, only for personal use. For the organization usage, you should have a license.
Can multiple teams use the same license within one organization? Yes, a single license can be shared for the whole organization
How many users from the same organization can use the license at the same time? Unlimited
Can I run NBomber Cluster without purchasing a license? Yes, you can try Local Dev Cluster mode
How many instances can be installed with one NBomber license? Unlimited
How many NBomber executions can be run in parallel? Unlimited

About Us

We are US based company NBomber LLC (8 The Green, Dover, Delaware 19901, USA).

About

Distributed load-testing framework for .NET. Create distributed load test scenarios entirely using plain C# or F#. It is designed to test any system regardless of the protocol or a semantic model (Pull/Push).

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published