Skip to content

Commit c0a16cc

Browse files
committed
Include SendAsync in the ITestServer abstraction
1 parent cebec12 commit c0a16cc

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/Hosting/TestHost/src/ITestServer.cs

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using System.Net.Http;
55
using Microsoft.AspNetCore.Hosting;
66
using Microsoft.AspNetCore.Hosting.Server;
7+
using Microsoft.AspNetCore.Http;
78

89
namespace Microsoft.AspNetCore.TestHost;
910

@@ -26,6 +27,12 @@ public interface ITestServer : IServer
2627
/// <summary>
2728
/// Creates a new <see cref="HttpClient"/> for processing HTTP requests against the test server.
2829
/// </summary>
29-
/// <returns></returns>
30+
/// <returns>An HttpClient instance configured to work with the current test server.</returns>
3031
HttpClient CreateClient();
32+
33+
/// <summary>
34+
/// Creates, configures, sends, and returns a <see cref="HttpContext"/>. This completes as soon as the response is started.
35+
/// </summary>
36+
/// <returns>The HttpContext associated with the sent request.</returns>
37+
Task<HttpContext> SendAsync(Action<HttpContext> configureContext, CancellationToken cancellationToken = default);
3138
}

src/Hosting/TestHost/src/PublicAPI.Unshipped.txt

+1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ Microsoft.AspNetCore.TestHost.ITestServer.CreateClient() -> System.Net.Http.Http
44
Microsoft.AspNetCore.TestHost.ITestServer.CreateHandler() -> System.Net.Http.HttpMessageHandler!
55
Microsoft.AspNetCore.TestHost.ITestServer.Host.get -> Microsoft.AspNetCore.Hosting.IWebHost!
66
*REMOVED*static Microsoft.AspNetCore.TestHost.HostBuilderTestServerExtensions.GetTestServer(this Microsoft.Extensions.Hosting.IHost! host) -> Microsoft.AspNetCore.TestHost.TestServer!
7+
Microsoft.AspNetCore.TestHost.ITestServer.SendAsync(System.Action<Microsoft.AspNetCore.Http.HttpContext!>! configureContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Http.HttpContext!>!
78
static Microsoft.AspNetCore.TestHost.HostBuilderTestServerExtensions.GetTestServer(this Microsoft.Extensions.Hosting.IHost! host) -> Microsoft.AspNetCore.TestHost.ITestServer!

0 commit comments

Comments
 (0)