Hypothesist.AspNet
2.2.66
See the version list below for details.
dotnet add package Hypothesist.AspNet --version 2.2.66
NuGet\Install-Package Hypothesist.AspNet -Version 2.2.66
<PackageReference Include="Hypothesist.AspNet" Version="2.2.66" />
paket add Hypothesist.AspNet --version 2.2.66
#r "nuget: Hypothesist.AspNet, 2.2.66"
// Install Hypothesist.AspNet as a Cake Addin #addin nuget:?package=Hypothesist.AspNet&version=2.2.66 // Install Hypothesist.AspNet as a Cake Tool #tool nuget:?package=Hypothesist.AspNet&version=2.2.66
Hypothesist.AspNet
Use Hypothesist to validate received requests (from an external invocation) via ASP.NET middleware.
Arrange
Define the hypothesis:
var hypothesis = Hypothesis
.For<string>()
.Any(x => x == "some-data");
Insert the middleware to test from incoming requests:
var builder = WebApplication.CreateBuilder(args);
await using var app = builder.Build();
app.MapGet("/hello", (string data) => Results.Ok());
app.Use(hypothesis
.Test()
.FromRequest()
.Select(request => request.Query["data"]!));
or read from the body:
app.Use(hypothesis
.Test()
.FromRequest()
.Body(body => JsonSerializer.DeserializeAsync<Guid>(body)));
Remark: the order of middleware is very important! If you plugin the hypothesis after the body is read by other middleware, you will receive an empty stream and thus no content.
Only test for a specific route:
app.UseWhen(context => context.Request.Path == "/hello", then => then
.Use(hypothesis
.Test()
.FromRequest()
.Select(request => request.Query["data"]!)));
or directly test from an endpoint filter:
app.MapPost("/hello", ([FromBody]Guid body) => Results.Ok(body))
.AddEndpointFilter(hypothesis
.Test()
.FromEndpoint()
.Select(context => context.GetArgument<Guid>(0)));
Act
Invocation on the endpoint from some external program, like:
curl 'http://localhost:1234/hello?data=some-input'
Assert
await hypothesis
.Validate(2.Seconds());
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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. |
-
net7.0
- Hypothesist (>= 2.2.66)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
🤟