ArwynFr.IntegrationTesting 0.2.25

There is a newer version of this package available.
See the version list below for details.
dotnet add package ArwynFr.IntegrationTesting --version 0.2.25
NuGet\Install-Package ArwynFr.IntegrationTesting -Version 0.2.25
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ArwynFr.IntegrationTesting" Version="0.2.25" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ArwynFr.IntegrationTesting --version 0.2.25
#r "nuget: ArwynFr.IntegrationTesting, 0.2.25"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ArwynFr.IntegrationTesting as a Cake Addin
#addin nuget:?package=ArwynFr.IntegrationTesting&version=0.2.25

// Install ArwynFr.IntegrationTesting as a Cake Tool
#tool nuget:?package=ArwynFr.IntegrationTesting&version=0.2.25

ArwynFr.IntegrationTesting

This library provides utility classes for writing integration tests in dotnet using XUnit and WebApplicationFactory.

Nuget.org Nuget.org GitHub
License

Installation

dotnet new classlib -n MyTestProject
dotnet add package ArwynFr.IntegrationTesting
dotnet add package Microsoft.NET.Test.Sdk
dotnet add package xunit.runner.visualstudio

Usage

Read advanced usage documentation for further details.

By default, the lib redirects the tested application logs to XUnit output, so you get them in the test output in case of failure. It also overwrites the application configuration with values from user secrets and environement variables.

public class MyTest : IntegrationTestBase<Program>
{
    public MyTest(ITestOutputHelper output) : base(output) { }

    [Fact]
    public async Task OnTest()
    {
        // Call system under test
        var response = await Client.GetFromJsonAsync<OrderDto>($"/order");

        response.Should().HaveValue();
    }

    // Override a service with fake implementation in the tested app
    protected override void ConfigureAppServices(IServiceCollection services)
        => services.AddSingleton<IMyService, FakeService>();
}

EntityFrameworkCore integration

public class TestBaseDb : IntegrationTestBase<Program, MyDbContext>
{
    public TestBaseDb(ITestOutputHelper output) : base(output) { }

    [Fact]
    public async Task OnTest()
    {
        // Access the injected dbcontext
        var value = await Database.Values
            .Where(val => val.Id == 1)
            .Select(val => val.Result)
            .FirstOrDefaultAsync();

        // Call system under test
        var result = await Client.GetFromJsonAsync<int>("/api/value/1");

        result.Should().Be(value + 1);
    }

    // Create and drop a database for every test execution
    protected override IDatabaseTestStrategy<Context> DatabaseTestStrategy
        => IDatabaseTestStrategy<MyDbContext>.DatabasePerTest;

    // Configure EFcore with a random database name
    protected override void ConfigureDbContext(DbContextOptionsBuilder builder)
        => builder.UseSqlite($"Data Source={Guid.NewGuid()}.sqlite");
}

OpenTelemetry integration

public class OpenTelemetryTests(ITestOutputHelper output) : IntegrationTestBase<Program>(output)
{
    // Tell the library which OTEL sources you want to monitor
    // Traces from other sources will be ignored
    protected override string[] OpenTelemetrySourceNames => ["SourceA", "SourceB"];

    [Fact]
    public async Task Otel()
    {
        // Call system under test
        await Client.GetAsync("/otel");

        // Assert on the collection of all activities collected
        Activities.Any(activity => activity.DisplayName == "Hello").Should().BeTrue();
    }
}

Contributing

This project welcomes contributions:

Request for support:
We do not provide support for this product.

Disclose vulnerability:
Read our security policy
Create a new security advisory on GitHub

Report malfunctions:
Create a new issue on GitHub

Suggest a feature:
Create a new issue on GitHub

Offer some code:
Read our definition of done
Fork the repository
Submit a pull-request

Moderate contributions:
Read our governance policy
This project is not currently appointing new moderators.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.27 48 5/22/2024
0.2.26 81 5/17/2024
0.2.25 82 5/16/2024
0.2.24 66 5/16/2024
0.2.23 78 5/15/2024
0.2.22 68 5/15/2024
0.2.21 68 5/15/2024
0.2.20 78 5/14/2024
0.2.19 55 5/13/2024
0.2.18 91 4/28/2024
0.2.17 86 4/24/2024
0.2.16 78 4/18/2024
0.2.15 72 4/17/2024
0.2.14 70 4/17/2024
0.2.12 75 4/12/2024
0.2.11 85 4/12/2024
0.2.10 78 4/10/2024
0.2.9 66 4/8/2024
0.2.8 75 4/8/2024
0.2.7 99 3/15/2024
0.2.6 88 3/15/2024
0.2.5 90 3/6/2024
0.2.4 87 2/24/2024
0.2.3 77 2/16/2024
0.2.2 85 2/14/2024
0.2.1 100 2/8/2024
0.2.0 79 2/2/2024
0.1.2 85 1/30/2024
0.1.1 75 1/30/2024
0.1.0 81 1/26/2024