Microsoft.AspNetCore.TestHost 10.0.0-preview.1.25120.3
About
Microsoft.AspNetCore.TestHost
provides an ASP.NET Core web server for testing middleware in isolation.
Key Features
- Instantiate an app pipeline containing only the components that you need to test
- Send custom requests to verify middleware behavior
How to Use
To use Microsoft.AspNetCore.TestHost
, follow these steps:
Installation
dotnet add package Microsoft.AspNetCore.TestHost
Usage
To set up the TestServer
, configure it in your test project. Here's an example:
[Fact]
public async Task MiddlewareTest_ReturnsNotFoundForRequest()
{
// Build and start a host that uses TestServer
using var host = await new HostBuilder()
.ConfigureWebHost(builder =>
{
builder.UseTestServer()
.ConfigureServices(services =>
{
// Add any required services that the middleware uses
services.AddMyServices();
})
.Configure(app =>
{
// Configure the processing pipeline to use the middleware
// for the test
app.UseMiddleware<MyMiddleware>();
});
})
.StartAsync();
var response = await host.GetTestClient().GetAsync("/");
Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
}
Main Types
The main types provided by this package are:
TestServer
: AnIServer
implementation for executing testsTestServerOptions
: Provides options for configuring aTestServer
Additional Documentation
For additional documentation and examples, refer to the official documentation for testing middleware in ASP.NET Core.
Feedback & Contributing
Microsoft.AspNetCore.TestHost
is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
Showing the top 20 packages that depend on Microsoft.AspNetCore.TestHost.
Packages | Downloads |
---|---|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/1f050242559e7b90ff6c4ee7f99d92b3a5af5a62
|
17 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/2b7e994b8a304700a09617ffc5052f0d943bbcba
|
20 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/458d97420a173fe87487b58ec4aa47a4c9dc4710
|
18 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/66de493473521e173fa15ca557f5f97601cedb23
|
16 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/67e04394e98d5bfa6a5684d471a72fcbe30fd587
|
16 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/9699b939f94b7524a178821d78addefa5af5d750
|
17 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/cf2c5c9c6dca430b97aa96429b84d0da07eb77f1
|
20 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/aspnet/Mvc/tree/a6199bbfbab05583f987bae322fb04566841aaea
|
21 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/02c6de4ba6022025fcda7581415f310f8c73cdc3
|
16 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/1d696053fcd6735aaac1902afdb0b92edbf43e71
|
18 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/3eeb12e106b9e913c3a4dec1a7d16da7b74149eb
|
681 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/3f1acb59718cadf111a0a796681e3d3509bb3381
|
349 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/860072f7781a10db10fa925ea5c86d91f1e6f2c4
|
16 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/8ad057426fa6a27cd648b05684afddab9d97d3d9
|
16 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/8e941eb42f819adb116b881195158b3887a70a1c
|
19 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/c0ae1d179dba6f3acd0e55be55718c97c9028698
|
18 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63
|
17 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/d634f2bd1ad6e319f26ff0f1d7ada5539158a19f
|
16 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/e56abc45c4f8adc518abfc11a59849d616431e2c
|
17 |
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/fb4b5a21ebd67b31fff4ddf5c039181da504c932
|
26 |
.NET 10.0
- No dependencies.
Version | Downloads | Last updated |
---|---|---|
10.0.0-preview.2.25164.1 | 2 | 03/30/2025 |
10.0.0-preview.1.25120.3 | 3 | 03/05/2025 |
9.0.3 | 3 | 03/12/2025 |
9.0.2 | 3 | 03/05/2025 |
9.0.1 | 6 | 01/24/2025 |
9.0.0 | 12 | 12/04/2024 |
9.0.0-rc.2.24474.3 | 10 | 11/29/2024 |
9.0.0-rc.1.24452.1 | 14 | 11/14/2024 |
9.0.0-preview.7.24406.2 | 16 | 11/14/2024 |
9.0.0-preview.6.24328.4 | 7 | 12/01/2024 |
9.0.0-preview.5.24306.11 | 7 | 12/04/2024 |
9.0.0-preview.4.24267.6 | 9 | 11/14/2024 |
9.0.0-preview.3.24172.13 | 7 | 12/02/2024 |
9.0.0-preview.2.24128.4 | 18 | 05/05/2024 |
9.0.0-preview.1.24081.5 | 8 | 12/10/2024 |
8.0.14 | 3 | 03/12/2025 |
8.0.13 | 3 | 03/05/2025 |
8.0.12 | 6 | 01/23/2025 |
8.0.11 | 10 | 12/03/2024 |
8.0.10 | 7 | 12/12/2024 |
8.0.8 | 8 | 12/03/2024 |
8.0.7 | 9 | 12/02/2024 |
8.0.6 | 7 | 12/06/2024 |
8.0.5 | 7 | 12/02/2024 |
8.0.4 | 9 | 12/03/2024 |
8.0.3 | 5 | 01/02/2025 |
8.0.2 | 9 | 12/09/2024 |
8.0.1 | 12 | 02/04/2024 |
8.0.0 | 277 | 04/11/2024 |
8.0.0-rc.2.23480.2 | 14 | 06/01/2024 |
8.0.0-rc.1.23421.29 | 12 | 06/01/2024 |
8.0.0-preview.7.23375.9 | 6 | 12/02/2024 |
8.0.0-preview.6.23329.11 | 23 | 08/15/2023 |
8.0.0-preview.5.23302.2 | 9 | 12/06/2024 |
8.0.0-preview.4.23260.4 | 10 | 12/02/2024 |
8.0.0-preview.3.23177.8 | 7 | 12/11/2024 |
8.0.0-preview.2.23153.2 | 7 | 12/11/2024 |
8.0.0-preview.1.23112.2 | 8 | 12/04/2024 |
7.0.20 | 8 | 12/17/2024 |
7.0.19 | 5 | 12/26/2024 |
7.0.18 | 7 | 12/13/2024 |
7.0.17 | 9 | 12/02/2024 |
7.0.16 | 15 | 12/04/2024 |
7.0.15 | 9 | 11/30/2024 |
7.0.14 | 7 | 12/05/2024 |
7.0.13 | 8 | 12/07/2024 |
7.0.12 | 9 | 12/08/2024 |
7.0.11 | 8 | 12/04/2024 |
7.0.10 | 9 | 12/15/2024 |
7.0.9 | 9 | 11/14/2024 |
7.0.8 | 7 | 12/01/2024 |
7.0.7 | 20 | 06/16/2023 |
7.0.5 | 13 | 06/16/2023 |
7.0.4 | 9 | 11/29/2024 |
7.0.3 | 18 | 07/13/2023 |
7.0.2 | 10 | 12/01/2024 |
7.0.1 | 7 | 12/03/2024 |
7.0.0 | 7 | 12/02/2024 |
7.0.0-rc.2.22476.2 | 13 | 06/01/2024 |
7.0.0-rc.1.22427.2 | 12 | 06/01/2024 |
7.0.0-preview.7.22376.6 | 9 | 12/02/2024 |
7.0.0-preview.6.22330.3 | 9 | 12/11/2024 |
7.0.0-preview.5.22303.8 | 10 | 11/14/2024 |
7.0.0-preview.4.22251.1 | 9 | 11/14/2024 |
7.0.0-preview.3.22178.4 | 8 | 12/03/2024 |
7.0.0-preview.2.22153.2 | 8 | 12/04/2024 |
7.0.0-preview.1.22109.13 | 8 | 12/13/2024 |
6.0.36 | 9 | 11/14/2024 |
6.0.35 | 7 | 11/29/2024 |
6.0.33 | 8 | 11/30/2024 |
6.0.32 | 7 | 12/04/2024 |
6.0.31 | 8 | 12/03/2024 |
6.0.30 | 8 | 11/28/2024 |
6.0.29 | 7 | 12/10/2024 |
6.0.28 | 8 | 12/05/2024 |
6.0.27 | 8 | 11/14/2024 |
6.0.26 | 8 | 12/02/2024 |
6.0.25 | 9 | 11/14/2024 |
6.0.24 | 8 | 12/09/2024 |
6.0.23 | 9 | 12/02/2024 |
6.0.22 | 10 | 12/02/2024 |
6.0.21 | 10 | 12/01/2024 |
6.0.20 | 8 | 12/02/2024 |
6.0.19 | 9 | 12/09/2024 |
6.0.18 | 7 | 12/02/2024 |
6.0.16 | 8 | 12/09/2024 |
6.0.15 | 8 | 12/03/2024 |
6.0.14 | 9 | 11/14/2024 |
6.0.13 | 8 | 12/02/2024 |
6.0.12 | 7 | 12/05/2024 |
6.0.11 | 8 | 11/29/2024 |
6.0.10 | 10 | 11/29/2024 |
6.0.9 | 9 | 11/14/2024 |
6.0.8 | 9 | 12/02/2024 |
6.0.7 | 8 | 11/30/2024 |
6.0.6 | 7 | 11/29/2024 |
6.0.5 | 9 | 12/02/2024 |
6.0.4 | 9 | 12/02/2024 |
6.0.3 | 8 | 12/06/2024 |
6.0.2 | 9 | 11/14/2024 |
6.0.1 | 9 | 11/14/2024 |
6.0.0 | 13 | 05/03/2024 |
6.0.0-rc.2.21480.10 | 13 | 06/01/2024 |
6.0.0-rc.1.21452.15 | 14 | 11/03/2022 |
6.0.0-preview.7.21378.6 | 8 | 12/04/2024 |
6.0.0-preview.6.21355.2 | 9 | 12/12/2024 |
6.0.0-preview.5.21301.17 | 6 | 11/29/2024 |
6.0.0-preview.4.21253.5 | 8 | 12/03/2024 |
6.0.0-preview.3.21201.13 | 9 | 11/29/2024 |
6.0.0-preview.2.21154.6 | 12 | 05/30/2024 |
6.0.0-preview.1.21103.6 | 9 | 12/09/2024 |
5.0.17 | 10 | 12/03/2024 |
5.0.16 | 7 | 12/03/2024 |
5.0.15 | 8 | 12/13/2024 |
5.0.14 | 6 | 12/01/2024 |
5.0.13 | 10 | 12/10/2024 |
5.0.12 | 7 | 12/03/2024 |
5.0.11 | 8 | 12/01/2024 |
5.0.10 | 8 | 11/29/2024 |
5.0.9 | 8 | 12/03/2024 |
5.0.8 | 9 | 12/04/2024 |
5.0.7 | 9 | 11/14/2024 |
5.0.6 | 7 | 12/06/2024 |
5.0.5 | 17 | 05/04/2024 |
5.0.4 | 9 | 12/02/2024 |
5.0.3 | 9 | 12/02/2024 |
5.0.2 | 10 | 12/02/2024 |
5.0.1 | 8 | 12/02/2024 |
5.0.0 | 15 | 11/03/2022 |
5.0.0-rc.2.20475.17 | 14 | 06/01/2024 |
5.0.0-rc.1.20451.17 | 12 | 06/01/2024 |
5.0.0-preview.8.20414.8 | 9 | 12/02/2024 |
5.0.0-preview.7.20365.19 | 7 | 12/03/2024 |
5.0.0-preview.6.20312.15 | 9 | 12/02/2024 |
5.0.0-preview.5.20279.2 | 7 | 12/03/2024 |
5.0.0-preview.4.20257.10 | 11 | 11/29/2024 |
5.0.0-preview.3.20215.14 | 7 | 12/10/2024 |
5.0.0-preview.2.20167.3 | 7 | 12/01/2024 |
5.0.0-preview.1.20124.5 | 7 | 12/03/2024 |
3.1.32 | 536 | 05/11/2023 |
3.1.31 | 10 | 11/14/2024 |
3.1.29 | 10 | 12/02/2024 |
3.1.28 | 7 | 12/02/2024 |
3.1.27 | 7 | 12/03/2024 |
3.1.26 | 7 | 12/03/2024 |
3.1.25 | 10 | 11/14/2024 |
3.1.24 | 8 | 12/01/2024 |
3.1.23 | 7 | 12/04/2024 |
3.1.22 | 7 | 12/01/2024 |
3.1.21 | 7 | 12/02/2024 |
3.1.20 | 9 | 12/13/2024 |
3.1.19 | 8 | 12/04/2024 |
3.1.18 | 13 | 12/01/2024 |
3.1.17 | 9 | 12/10/2024 |
3.1.16 | 7 | 12/13/2024 |
3.1.15 | 11 | 11/14/2024 |
3.1.14 | 8 | 12/04/2024 |
3.1.13 | 8 | 12/03/2024 |
3.1.12 | 8 | 11/29/2024 |
3.1.11 | 9 | 12/02/2024 |
3.1.10 | 9 | 12/04/2024 |
3.1.9 | 8 | 12/06/2024 |
3.1.8 | 7 | 12/06/2024 |
3.1.7 | 8 | 12/07/2024 |
3.1.6 | 10 | 12/01/2024 |
3.1.5 | 13 | 11/14/2024 |
3.1.4 | 9 | 12/01/2024 |
3.1.3 | 8 | 11/14/2024 |
3.1.2 | 10 | 11/14/2024 |
3.1.1 | 9 | 11/14/2024 |
3.1.0 | 8 | 12/02/2024 |
3.1.0-preview3.19555.2 | 9 | 06/01/2024 |
3.1.0-preview2.19528.8 | 14 | 06/01/2024 |
3.1.0-preview1.19508.20 | 10 | 12/02/2024 |
3.0.3 | 9 | 11/14/2024 |
3.0.2 | 10 | 11/12/2024 |
3.0.0 | 19 | 11/03/2022 |
3.0.0-rc1.19457.4 | 11 | 06/01/2024 |
3.0.0-preview9.19424.4 | 11 | 06/01/2024 |
3.0.0-preview8.19405.7 | 14 | 06/01/2024 |
3.0.0-preview7.19365.7 | 16 | 06/01/2024 |
3.0.0-preview6.19307.2 | 14 | 06/01/2024 |
3.0.0-preview5-19227-01 | 7 | 12/03/2024 |
3.0.0-preview4-19216-03 | 8 | 12/01/2024 |
3.0.0-preview3-19153-02 | 8 | 11/14/2024 |
3.0.0-preview-19075-0444 | 7 | 11/14/2024 |
3.0.0-preview-18579-0056 | 8 | 12/02/2024 |
2.3.0 | 4 | 01/22/2025 |
2.2.0 | 9 | 12/03/2024 |
2.2.0-preview3-35497 | 10 | 06/01/2024 |
2.2.0-preview2-35157 | 8 | 06/01/2024 |
2.2.0-preview1-35029 | 13 | 06/01/2024 |
2.1.1 | 15 | 11/03/2022 |
2.1.0 | 8 | 12/09/2024 |
2.1.0-rc1-final | 10 | 05/29/2024 |
2.1.0-preview2-final | 20 | 06/01/2024 |
2.1.0-preview1-final | 12 | 06/01/2024 |
2.0.3 | 7 | 12/02/2024 |
2.0.2 | 7 | 12/02/2024 |
2.0.1 | 9 | 12/06/2024 |
2.0.0 | 11 | 11/14/2024 |
2.0.0-preview2-final | 11 | 06/01/2024 |
2.0.0-preview1-final | 11 | 06/01/2024 |
1.1.3 | 7 | 12/05/2024 |
1.1.2 | 9 | 11/14/2024 |
1.1.1 | 9 | 11/14/2024 |
1.1.0 | 7 | 11/30/2024 |
1.1.0-preview1-final | 15 | 06/01/2024 |
1.0.5 | 9 | 12/02/2024 |
1.0.4 | 11 | 12/01/2024 |
1.0.3 | 13 | 05/03/2024 |
1.0.2 | 8 | 11/14/2024 |
1.0.1 | 10 | 12/02/2024 |
1.0.0 | 7 | 12/02/2024 |
1.0.0-rc2-final | 14 | 05/29/2024 |