Microsoft.AspNetCore.TestHost 10.0.0-preview.2.25164.1

Prefix Reserved
This is a prerelease version of Microsoft.AspNetCore.TestHost.
dotnet add package Microsoft.AspNetCore.TestHost --version 10.0.0-preview.2.25164.1                
NuGet\Install-Package Microsoft.AspNetCore.TestHost -Version 10.0.0-preview.2.25164.1                
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="Microsoft.AspNetCore.TestHost" Version="10.0.0-preview.2.25164.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.AspNetCore.TestHost --version 10.0.0-preview.2.25164.1                
#r "nuget: Microsoft.AspNetCore.TestHost, 10.0.0-preview.2.25164.1"                
#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 Microsoft.AspNetCore.TestHost as a Cake Addin
#addin nuget:?package=Microsoft.AspNetCore.TestHost&version=10.0.0-preview.2.25164.1&prerelease

// Install Microsoft.AspNetCore.TestHost as a Cake Tool
#tool nuget:?package=Microsoft.AspNetCore.TestHost&version=10.0.0-preview.2.25164.1&prerelease                

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: An IServer implementation for executing tests
  • TestServerOptions: Provides options for configuring a TestServer

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.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.

NuGet packages (180)

Showing the top 5 NuGet packages that depend on Microsoft.AspNetCore.TestHost:

Package 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/dotnet/aspnetcore/tree/763b4ef31ca4df6dae07c7ee8f39ea259b6980fa

Rystem.Test.XUnit

Rystem is a open-source framework to improve the System namespace in .Net

NSwag.Commands

NSwag: The OpenAPI/Swagger API toolchain for .NET and TypeScript

Acheve.TestHost

Achve.TestHost is a nuget package to improve TestServer experiences. For more information see http://github.com/Xabaril/Acheve.TestHost

Volo.Abp.AspNetCore.TestBase

Package Description

GitHub repositories (211)

Showing the top 5 popular GitHub repositories that depend on Microsoft.AspNetCore.TestHost:

Repository Stars
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
dotnet/yarp
A toolkit for developing high-performance HTTP reverse proxy applications.
ThreeMammals/Ocelot
.NET API Gateway
Version Downloads Last updated
10.0.0-preview.2.25164.1 721 13 days ago
10.0.0-preview.1.25120.3 1,762 a month ago
9.0.3 329,981 20 days ago
9.0.2 961,530 2 months ago
9.0.1 921,076 3 months ago
9.0.0 2,235,870 5 months ago
9.0.0-rc.2.24474.3 47,896 6 months ago
9.0.0-rc.1.24452.1 34,611 7 months ago
9.0.0-preview.7.24406.2 7,475 8 months ago
9.0.0-preview.6.24328.4 11,685 9 months ago
9.0.0-preview.5.24306.11 3,755 10 months ago
9.0.0-preview.4.24267.6 2,227 5/21/2024
9.0.0-preview.3.24172.13 69,400 4/11/2024
9.0.0-preview.2.24128.4 2,894 3/12/2024
9.0.0-preview.1.24081.5 24,559 2/13/2024
8.0.14 261,208 20 days ago
8.0.13 790,723 2 months ago
8.0.12 1,055,519 3 months ago
8.0.11 3,551,574 5 months ago
8.0.10 5,356,151 6 months ago
8.0.8 6,463,238 8 months ago
8.0.7 4,746,371 9 months ago
8.0.6 4,970,684 5/28/2024
8.0.5 1,778,711 5/14/2024
8.0.4 4,456,242 4/9/2024
8.0.3 3,197,730 3/12/2024
8.0.2 3,279,079 2/13/2024
8.0.1 3,710,538 1/9/2024
8.0.0 5,419,601 11/14/2023
8.0.0-rc.2.23480.2 63,788 10/10/2023
8.0.0-rc.1.23421.29 59,232 9/12/2023
8.0.0-preview.7.23375.9 12,466 8/8/2023
8.0.0-preview.6.23329.11 42,932 7/11/2023
8.0.0-preview.5.23302.2 12,611 6/13/2023
8.0.0-preview.4.23260.4 225,864 5/16/2023
8.0.0-preview.3.23177.8 3,038 4/11/2023
8.0.0-preview.2.23153.2 1,803 3/14/2023
8.0.0-preview.1.23112.2 41,430 2/21/2023
7.0.20 410,891 5/28/2024
7.0.19 65,048 5/14/2024
7.0.18 183,059 4/9/2024
7.0.17 374,298 3/12/2024
7.0.16 383,979 2/13/2024
7.0.15 609,119 1/9/2024
7.0.14 1,023,410 11/14/2023
7.0.13 1,702,982 10/24/2023
7.0.12 1,056,191 10/10/2023
7.0.11 2,663,313 9/12/2023
7.0.10 1,742,212 8/8/2023
7.0.9 1,330,688 7/11/2023
7.0.8 1,082,064 6/22/2023
7.0.7 508,801 6/13/2023
7.0.5 3,668,346 4/11/2023
7.0.4 2,001,558 3/14/2023
7.0.3 1,720,819 2/14/2023
7.0.2 1,822,099 1/10/2023
7.0.1 1,054,437 12/13/2022
7.0.0 3,359,442 11/7/2022
7.0.0-rc.2.22476.2 67,720 10/11/2022
7.0.0-rc.1.22427.2 22,526 9/14/2022
7.0.0-preview.7.22376.6 10,676 8/9/2022
7.0.0-preview.6.22330.3 3,812 7/12/2022
7.0.0-preview.5.22303.8 9,517 6/14/2022
7.0.0-preview.4.22251.1 2,219 5/10/2022
7.0.0-preview.3.22178.4 1,254 4/13/2022
7.0.0-preview.2.22153.2 1,037 3/14/2022
7.0.0-preview.1.22109.13 5,004 2/17/2022
6.0.36 478,166 5 months ago
6.0.35 201,785 6 months ago
6.0.33 767,437 8 months ago
6.0.32 304,239 9 months ago
6.0.31 491,874 5/28/2024
6.0.30 165,208 5/14/2024
6.0.29 732,173 4/9/2024
6.0.28 444,966 3/12/2024
6.0.27 804,335 2/13/2024
6.0.26 1,049,818 1/9/2024
6.0.25 1,720,827 11/14/2023
6.0.24 919,471 10/24/2023
6.0.23 607,908 10/10/2023
6.0.22 1,039,570 9/12/2023
6.0.21 1,592,078 8/8/2023
6.0.20 1,416,800 7/11/2023
6.0.19 878,854 6/22/2023
6.0.18 585,470 6/13/2023
6.0.16 3,159,889 4/11/2023
6.0.15 1,901,665 3/14/2023
6.0.14 2,205,866 2/14/2023
6.0.13 2,850,377 1/10/2023
6.0.12 2,815,183 12/13/2022
6.0.11 3,585,021 11/7/2022
6.0.10 5,187,257 10/11/2022
6.0.9 3,961,127 9/13/2022
6.0.8 4,750,849 8/9/2022
6.0.7 4,222,330 7/12/2022
6.0.6 3,222,713 6/14/2022
6.0.5 4,116,791 5/10/2022
6.0.4 3,767,615 4/11/2022
6.0.3 4,427,905 3/8/2022
6.0.2 3,714,230 2/8/2022
6.0.1 5,583,634 12/14/2021
6.0.0 6,533,000 11/8/2021
6.0.0-rc.2.21480.10 205,292 10/12/2021
6.0.0-rc.1.21452.15 175,122 9/14/2021
6.0.0-preview.7.21378.6 9,109 8/10/2021
6.0.0-preview.6.21355.2 5,045 7/14/2021
6.0.0-preview.5.21301.17 3,518 6/15/2021
6.0.0-preview.4.21253.5 2,765 5/24/2021
6.0.0-preview.3.21201.13 2,979 4/8/2021
6.0.0-preview.2.21154.6 1,005 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21103.6 1,367 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 884,476 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 152,491 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 265,119 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 246,557 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 668,093 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 789,211 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 1,431,728 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 1,456,225 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 1,545,354 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 1,201,641 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 1,635,487 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 1,307,572 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 1,856,363 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 1,073,291 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 1,289,383 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 1,296,507 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 880,117 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 2,128,643 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 17,816 10/13/2020 5.0.0-rc.2.20475.17 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.17 183,566 9/14/2020 5.0.0-rc.1.20451.17 is deprecated because it is no longer maintained.
5.0.0-preview.8.20414.8 9,378 8/25/2020 5.0.0-preview.8.20414.8 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.19 4,310 7/21/2020 5.0.0-preview.7.20365.19 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.15 2,110 6/25/2020 5.0.0-preview.6.20312.15 is deprecated because it is no longer maintained.
5.0.0-preview.5.20279.2 956 6/10/2020 5.0.0-preview.5.20279.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20257.10 1,585 5/18/2020 5.0.0-preview.4.20257.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.14 1,968 4/23/2020 5.0.0-preview.3.20215.14 is deprecated because it is no longer maintained.
5.0.0-preview.2.20167.3 875 4/2/2020 5.0.0-preview.2.20167.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20124.5 1,073 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 631,301 12/13/2022
3.1.31 141,593 11/8/2022
3.1.30 682,092 10/11/2022
3.1.29 98,774 9/13/2022
3.1.28 148,624 8/9/2022
3.1.27 164,870 7/12/2022
3.1.26 150,604 6/14/2022
3.1.25 218,221 5/10/2022
3.1.24 181,412 4/11/2022
3.1.23 344,728 3/8/2022
3.1.22 913,004 12/14/2021
3.1.21 735,244 11/7/2021
3.1.20 625,807 10/11/2021
3.1.19 442,542 9/14/2021
3.1.18 1,028,479 8/10/2021
3.1.17 837,645 7/13/2021
3.1.16 745,156 6/8/2021
3.1.15 738,844 5/11/2021
3.1.14 1,580,208 4/6/2021
3.1.13 1,213,635 3/9/2021
3.1.12 965,472 2/9/2021
3.1.11 1,143,547 1/12/2021
3.1.10 2,977,664 11/9/2020
3.1.9 3,170,126 10/13/2020
3.1.8 3,195,339 9/8/2020
3.1.7 2,438,131 8/11/2020
3.1.6 2,376,219 7/14/2020
3.1.5 3,647,169 6/9/2020
3.1.4 2,262,943 5/12/2020
3.1.3 3,797,859 3/24/2020
3.1.2 2,837,963 2/18/2020
3.1.1 3,171,836 1/14/2020
3.1.0 3,312,435 12/3/2019
3.1.0-preview3.19555.2 3,394 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 1,073 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 1,678 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 226,362 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 77,296 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 4,193,044 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 15,601 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 9,012 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 36,231 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 13,859 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 7,206 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 11,617 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 2,231 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 2,081 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 7,329 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
3.0.0-preview-18579-0056 4,317 12/3/2018 3.0.0-preview-18579-0056 is deprecated because it is no longer maintained.
2.3.0 4,458 3 months ago
2.2.0 12,592,363 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 23,526 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 13,076 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 13,775 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.1 7,151,719 6/18/2018
2.1.0 1,553,393 5/29/2018
2.1.0-rc1-final 36,706 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 13,195 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 28,402 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.3 266,292 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 720,714 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 1,295,417 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 991,332 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 10,144 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 20,853 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.3 135,498 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 561,821 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 277,213 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 364,695 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 5,673 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.5 23,544 11/14/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 4,519 9/20/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 57,189 5/9/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 165,303 3/6/2017 1.0.2 is deprecated because it is no longer maintained.
1.0.1 14,476 12/12/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 293,141 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 15,815 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.