A .NET library for interacting with Shopify's Toxiproxy, a TCP proxy for simulating network conditions and chaos testing.
The library targets .NET Standard 2.0, so ita can be used in .NET Framework 4.6.1 onwards and in .NET/.NET Core projects.
Toxiproxy.Client provides a simple and intuitive .NET interface for communicating with the Toxiproxy HTTP API. This library enables you to test your application's resilience by simulating various network failure scenarios such as latency, timeouts, bandwidth limitations, and connection failures.
Toxiproxy is a framework specifically designed for testing, CI, and development environments that allows you to simulate network conditions deterministically. It helps you prove with tests that your application doesn't have single points of failure by introducing controlled "toxics" into your network connections.
- Network Simulation: Simulate various network conditions including latency, timeouts, bandwidth limits, and connection drops.
- Dynamic Configuration: Add, remove, and configure network conditions on the fly via HTTP API.
- Testing & CI Ready: Built specifically for automated testing environments.
- Resilience Testing: Verify your application can handle real-world network failures.
The library supports all these toxics.
Install via NuGet Package Manager:
Install-Package Toxiproxy.ClientOr via .NET CLI:
dotnet add package Toxiproxy.ClientYou need a Toxiproxy server running. Download it from the official releases page or spin up a Docker container:
docker run -d -it ghcr.io/shopify/toxiproxy:latestThe library supports Toxiproxy server from version 2.0.0 onwards.
First of all you need to create an instance of the ToxiproxyClient object, that allows the interaction with the server.
By default the client connects to the instance running on localhost on port 8474.
ToxiproxyClient client = await ToxiproxyClient.ConnectAsync();otherwise, you can pass specific hostname and port parameters of the server you want to connect to:
ToxiproxyClient client = await ToxiproxyClient.ConnectAsync("my-toxiproxy.domain.local", 8474);Once you have a client connection, you can create a proxy towards another service on the network.
This example creates a proxy in front of a MSSQL Server running on the same network:
Proxy mssqlProxy = await client.ConfigureProxyAsync(cfg =>
{
cfg.Name = "mssql_proxy";
cfg.Listen = "0.0.0.0:11433";
cfg.Upstream = "mssql.domain.local:1433";
});It's possible to create more than one proxy on the same server; in general, you create a proxy for each service you need to test.
This example adds a proxy for a Redis server running on the same network:
Proxy redisProxy = await client.ConfigureProxyAsync(cfg =>
{
cfg.Name = "redis_proxy";
cfg.Listen = "0.0.0.0:16379";
cfg.Upstream = "redis.domain.local:6379";
});It's possible to simulate a service unavailability by disabling the service's proxy:
await redisProxy.DisableAsync();or bring it back up:
await redisProxy.EnableAsync();Once we have a proxy configured, we can add toxics to is, in order to simulate connection issues.
This example adds a latency toxic to the MSSQL proxy, so to simulate a 1s network latency while interacting with it:
LatencyToxic latency = await mssqlProxy.AddLatencyToxicAsync(cfg =>
{
cfg.Latency = 1000;
cfg.Jitter = 10;
});Here we're adding a timeout toxic to the Redis proxy, so to simulate a network timeout after 1 second:
TimeoutToxic timeout = await redisProxy.AddTimeoutToxicAsync(cfg =>
{
cfg.Timeout = 1000;
});Toxics can work either upstream or downstream; if not specified, a toxic works downstream by default.
In this example we add a bandwidth toxic to the MSSQL proxy so to limit the upstream bandwidth to 10 KB/s:
BandwidthToxic bandwidth = await mssqlProxy.AddBandwidthToxicAsync(cfg =>
{
cfg.Rate = 10;
cfg.Stream = ToxicStream.Upstream;
});Toxics on a proxy can be removed by doing:
await redisProxy.RemoveToxicAsync(timeout);In this example, we remove the timeout toxic from the Redis proxy.
If you need to reset the Toxiproxy server configuration, you can use:
await client.ResetAsync();This way, you enable/re-enable all proxies on the server and remove all active toxics on all proxies.
In the sample folder you can find a usage example of this library.
The sample consists in proxying a Redis instance through Toxiproxy, and reading values from it while Toxiproxy tampers the connection.
Both Toxiproxy and Redis are set up using containers.
cd sample
docker compose up -d
dotnet toxiproxy-client-sample.cs
docker compose down