Fix #468 - all UseHealthChecks without a path
This commit is contained in:
Родитель
3e4a3d0b90
Коммит
525fbf495b
|
@ -35,11 +35,6 @@ namespace Microsoft.AspNetCore.Builder
|
|||
throw new ArgumentNullException(nameof(app));
|
||||
}
|
||||
|
||||
if (!path.HasValue)
|
||||
{
|
||||
throw new ArgumentException("A URL path must be provided", nameof(path));
|
||||
}
|
||||
|
||||
UseHealthChecksCore(app, path, port: null, Array.Empty<object>());
|
||||
return app;
|
||||
}
|
||||
|
@ -64,11 +59,6 @@ namespace Microsoft.AspNetCore.Builder
|
|||
throw new ArgumentNullException(nameof(app));
|
||||
}
|
||||
|
||||
if (!path.HasValue)
|
||||
{
|
||||
throw new ArgumentException("A URL path must be provided", nameof(path));
|
||||
}
|
||||
|
||||
if (options == null)
|
||||
{
|
||||
throw new ArgumentNullException(nameof(options));
|
||||
|
@ -101,11 +91,6 @@ namespace Microsoft.AspNetCore.Builder
|
|||
throw new ArgumentNullException(nameof(app));
|
||||
}
|
||||
|
||||
if (!path.HasValue)
|
||||
{
|
||||
throw new ArgumentException("A URL path must be provided", nameof(path));
|
||||
}
|
||||
|
||||
UseHealthChecksCore(app, path, port, Array.Empty<object>());
|
||||
return app;
|
||||
}
|
||||
|
@ -133,11 +118,6 @@ namespace Microsoft.AspNetCore.Builder
|
|||
throw new ArgumentNullException(nameof(app));
|
||||
}
|
||||
|
||||
if (!path.HasValue)
|
||||
{
|
||||
throw new ArgumentException("A URL path must be provided", nameof(path));
|
||||
}
|
||||
|
||||
if (port == null)
|
||||
{
|
||||
throw new ArgumentNullException(nameof(port));
|
||||
|
@ -173,11 +153,6 @@ namespace Microsoft.AspNetCore.Builder
|
|||
throw new ArgumentNullException(nameof(app));
|
||||
}
|
||||
|
||||
if (!path.HasValue)
|
||||
{
|
||||
throw new ArgumentException("A URL path must be provided", nameof(path));
|
||||
}
|
||||
|
||||
if (options == null)
|
||||
{
|
||||
throw new ArgumentNullException(nameof(options));
|
||||
|
@ -208,11 +183,6 @@ namespace Microsoft.AspNetCore.Builder
|
|||
throw new ArgumentNullException(nameof(app));
|
||||
}
|
||||
|
||||
if (!path.HasValue)
|
||||
{
|
||||
throw new ArgumentException("A URL path must be provided", nameof(path));
|
||||
}
|
||||
|
||||
if (path == null)
|
||||
{
|
||||
throw new ArgumentNullException(nameof(port));
|
||||
|
@ -241,8 +211,8 @@ namespace Microsoft.AspNetCore.Builder
|
|||
else
|
||||
{
|
||||
app.MapWhen(
|
||||
c => c.Connection.LocalPort == port && c.Request.Path.StartsWithSegments(path),
|
||||
b => b.UseMiddleware<HealthCheckMiddleware>(args));
|
||||
c => c.Connection.LocalPort == port,
|
||||
b0 => b0.Map(path, b1 => b1.UseMiddleware<HealthCheckMiddleware>(args)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -323,6 +323,29 @@ namespace Microsoft.AspNetCore.Diagnostics.HealthChecks
|
|||
Assert.Equal("Healthy", await response.Content.ReadAsStringAsync());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task CanListenWithoutPath_AcceptsRequest()
|
||||
{
|
||||
var builder = new WebHostBuilder()
|
||||
.Configure(app =>
|
||||
{
|
||||
app.UseHealthChecks(default);
|
||||
})
|
||||
.ConfigureServices(services =>
|
||||
{
|
||||
services.AddHealthChecks();
|
||||
});
|
||||
|
||||
var server = new TestServer(builder);
|
||||
var client = server.CreateClient();
|
||||
|
||||
var response = await client.GetAsync("http://localhost:5001/health");
|
||||
|
||||
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
|
||||
Assert.Equal("text/plain", response.Content.Headers.ContentType.ToString());
|
||||
Assert.Equal("Healthy", await response.Content.ReadAsStringAsync());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task CanListenOnPort_AcceptsRequest_OnSpecifiedPort()
|
||||
{
|
||||
|
@ -354,6 +377,37 @@ namespace Microsoft.AspNetCore.Diagnostics.HealthChecks
|
|||
Assert.Equal("Healthy", await response.Content.ReadAsStringAsync());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task CanListenOnPortWithoutPath_AcceptsRequest_OnSpecifiedPort()
|
||||
{
|
||||
var builder = new WebHostBuilder()
|
||||
.Configure(app =>
|
||||
{
|
||||
app.Use(next => async (context) =>
|
||||
{
|
||||
// Need to fake setting the connection info. TestServer doesn't
|
||||
// do that, because it doesn't have a connection.
|
||||
context.Connection.LocalPort = context.Request.Host.Port.Value;
|
||||
await next(context);
|
||||
});
|
||||
|
||||
app.UseHealthChecks(default, port: 5001);
|
||||
})
|
||||
.ConfigureServices(services =>
|
||||
{
|
||||
services.AddHealthChecks();
|
||||
});
|
||||
|
||||
var server = new TestServer(builder);
|
||||
var client = server.CreateClient();
|
||||
|
||||
var response = await client.GetAsync("http://localhost:5001/health");
|
||||
|
||||
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
|
||||
Assert.Equal("text/plain", response.Content.Headers.ContentType.ToString());
|
||||
Assert.Equal("Healthy", await response.Content.ReadAsStringAsync());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task CanListenOnPort_RejectsRequest_OnOtherPort()
|
||||
{
|
||||
|
@ -382,5 +436,7 @@ namespace Microsoft.AspNetCore.Diagnostics.HealthChecks
|
|||
|
||||
Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче