DivertR 4.0.0
dotnet add package DivertR --version 4.0.0
NuGet\Install-Package DivertR -Version 4.0.0
<PackageReference Include="DivertR" Version="4.0.0" />
paket add DivertR --version 4.0.0
#r "nuget: DivertR, 4.0.0"
// Install DivertR as a Cake Addin #addin nuget:?package=DivertR&version=4.0.0 // Install DivertR as a Cake Tool #tool nuget:?package=DivertR&version=4.0.0
DivertR
DivertR is a .NET proxy framework that can be used to create test doubles. It is similar to existing mocking frameworks like Moq but provides additional features for integration testing of wired-up systems.
Installing
Install DivertR as a NuGet package:
Install-Package DivertR
Or via the .NET command line interface:
dotnet add package DivertR
Example Usage
DivertR works by decorating dependency injection services with proxies that behave the same as the originals but that can be manipulated and reset dynamically. This facilitate a style of testing where you start with the integrated, wired-up system and only mock out specific parts required per test.
For example, it can significantly speed up integration tests running against a WebApplicationFactory (TestServer) instance by altering and mocking dependencies between tests without requiring reinitialisation like this:
[Fact]
public async Task GivenBookExists_WhenGetBookById_ThenReturnsBook()
{
// ARRANGE
var mockedBook = new Book { Id = Guid.NewGuid(), Name = "Test Book" };
// Configure IBookService to return a mocked result
_diverter
.Redirect<IBookService>() // Redirect IFooService calls
.To(x => x.GetBookAsync(mockedBook.Id)) // matching this method and argument value
.Via(() => Task.FromResult(mockedBook)); // via this delegate
// ACT
var bookResult = await _httpClient.GetFromJsonAsync<Book>($"/books/{mockedBook.Id}");
// ASSERT
Assert.NotNull(bookResult);
Assert.Equal(mockedBook.Id, bookResult.Id);
Assert.Equal(mockedBook.Name, bookResult.Name);
}
[Fact]
public async Task GivenBookServiceError_WhenGetBookById_ThenReturns500InternalServerError()
{
// ARRANGE
var bookId = Guid.NewGuid();
// Configure IBookService to throw an exception
_diverter
.Redirect<IBookService>()
.To(x => x.GetBookAsync(bookId)) // match on bookId value only
.Via(() => throw new Exception("Test"));
// ACT
var controlResponse = await _httpClient.GetAsync($"/books/{Guid.NewGuid()}");
var testResponse = await _httpClient.GetAsync($"/books/{bookId}");
// ASSERT
Assert.Equal(HttpStatusCode.NotFound, controlResponse.StatusCode);
Assert.Equal(HttpStatusCode.InternalServerError, testResponse.StatusCode);
}
Note
The source code for the example above is available here.Follow the Resources section below for more examples, quickstart, documentation, etc.
Resources
- Quickstart guide
- Documentation
- Discussion - Feedback and comments are welcome
- DivertR NuGet package
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 1.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 1.0.0)
- System.Collections.Immutable (>= 1.6.0)
- System.Reflection.DispatchProxy (>= 4.5.0)
- System.Threading.Tasks.Extensions (>= 4.5.4)
-
.NETStandard 2.1
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 1.0.0)
- System.Collections.Immutable (>= 1.6.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on DivertR:
Package | Downloads |
---|---|
DivertR.DynamicProxy
A DivertR proxy factory implementation that supports proxying class types using Castle DynamicProxy |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.0.0 | 9,464 | 5/22/2023 |
3.1.0 | 96,867 | 1/27/2023 |
3.0.0 | 2,233 | 1/7/2023 |
2.2.0 | 653 | 11/26/2022 |
2.1.0 | 3,858 | 11/13/2022 |
2.0.1 | 5,506 | 8/16/2022 |
2.0.0 | 445 | 8/12/2022 |
1.3.1 | 496 | 5/19/2022 |
1.3.0 | 4,473 | 1/30/2022 |
1.2.0 | 3,219 | 12/7/2021 |
1.1.0 | 2,207 | 11/28/2021 |
1.0.0 | 3,206 | 11/25/2021 |
0.1.0 | 1,366 | 10/6/2021 |