#339 Don't send chunked responses for HEAD requests
This commit is contained in:
parent
216c2d159c
commit
c13ba3ef0a
|
|
@ -384,9 +384,9 @@ namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
// The application is performing it's own chunking.
|
// The application is performing it's own chunking.
|
||||||
_boundaryType = BoundaryType.PassThrough;
|
_boundaryType = BoundaryType.PassThrough;
|
||||||
}
|
}
|
||||||
else if (endOfRequest && !(isHeadRequest && statusCanHaveBody)) // HEAD requests should always end without a body. Assume a GET response would have a body.
|
else if (endOfRequest)
|
||||||
{
|
{
|
||||||
if (statusCanHaveBody)
|
if (!isHeadRequest && statusCanHaveBody)
|
||||||
{
|
{
|
||||||
Headers[HttpKnownHeaderNames.ContentLength] = Constants.Zero;
|
Headers[HttpKnownHeaderNames.ContentLength] = Constants.Zero;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -14,8 +14,15 @@ using Xunit;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Server.HttpSys.Listener
|
namespace Microsoft.AspNetCore.Server.HttpSys.Listener
|
||||||
{
|
{
|
||||||
public class ResponseHeaderTests
|
public class ResponseHeaderTests : IDisposable
|
||||||
{
|
{
|
||||||
|
private HttpClient _client = new HttpClient();
|
||||||
|
|
||||||
|
void IDisposable.Dispose()
|
||||||
|
{
|
||||||
|
_client.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
[ConditionalFact]
|
[ConditionalFact]
|
||||||
public async Task ResponseHeaders_11Request_ServerSendsDefaultHeaders()
|
public async Task ResponseHeaders_11Request_ServerSendsDefaultHeaders()
|
||||||
{
|
{
|
||||||
|
|
@ -74,12 +81,18 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener
|
||||||
|
|
||||||
HttpResponseMessage response = await responseTask;
|
HttpResponseMessage response = await responseTask;
|
||||||
response.EnsureSuccessStatusCode();
|
response.EnsureSuccessStatusCode();
|
||||||
Assert.Equal(3, response.Headers.Count());
|
Assert.Equal(2, response.Headers.Count());
|
||||||
Assert.True(response.Headers.TransferEncodingChunked.Value);
|
Assert.False(response.Headers.TransferEncodingChunked.HasValue);
|
||||||
Assert.True(response.Headers.Date.HasValue);
|
Assert.True(response.Headers.Date.HasValue);
|
||||||
Assert.Equal("Microsoft-HTTPAPI/2.0", response.Headers.Server.ToString());
|
Assert.Equal("Microsoft-HTTPAPI/2.0", response.Headers.Server.ToString());
|
||||||
Assert.False(response.Content.Headers.Contains("Content-Length"));
|
Assert.False(response.Content.Headers.Contains("Content-Length"));
|
||||||
Assert.Equal(0, response.Content.Headers.Count());
|
Assert.Equal(0, response.Content.Headers.Count());
|
||||||
|
|
||||||
|
// Send a second request to check that the connection wasn't corrupted.
|
||||||
|
responseTask = SendHeadRequestAsync(address);
|
||||||
|
context = await server.AcceptAsync(Utilities.DefaultTimeout);
|
||||||
|
context.Dispose();
|
||||||
|
response = await responseTask;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -103,6 +116,12 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener
|
||||||
Assert.Equal("Microsoft-HTTPAPI/2.0", response.Headers.Server.ToString());
|
Assert.Equal("Microsoft-HTTPAPI/2.0", response.Headers.Server.ToString());
|
||||||
Assert.False(response.Content.Headers.Contains("Content-Length"));
|
Assert.False(response.Content.Headers.Contains("Content-Length"));
|
||||||
Assert.Equal(0, response.Content.Headers.Count());
|
Assert.Equal(0, response.Content.Headers.Count());
|
||||||
|
|
||||||
|
// Send a second request to check that the connection wasn't corrupted.
|
||||||
|
responseTask = SendHeadRequestAsync(address);
|
||||||
|
context = await server.AcceptAsync(Utilities.DefaultTimeout);
|
||||||
|
context.Dispose();
|
||||||
|
response = await responseTask;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -126,6 +145,12 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener
|
||||||
Assert.Equal("Microsoft-HTTPAPI/2.0", response.Headers.Server.ToString());
|
Assert.Equal("Microsoft-HTTPAPI/2.0", response.Headers.Server.ToString());
|
||||||
Assert.Equal(1, response.Content.Headers.Count());
|
Assert.Equal(1, response.Content.Headers.Count());
|
||||||
Assert.Equal(20, response.Content.Headers.ContentLength);
|
Assert.Equal(20, response.Content.Headers.ContentLength);
|
||||||
|
|
||||||
|
// Send a second request to check that the connection wasn't corrupted.
|
||||||
|
responseTask = SendHeadRequestAsync(address);
|
||||||
|
context = await server.AcceptAsync(Utilities.DefaultTimeout);
|
||||||
|
context.Dispose();
|
||||||
|
response = await responseTask;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -172,6 +197,12 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener
|
||||||
Assert.Equal("Microsoft-HTTPAPI/2.0", response.Headers.Server.ToString());
|
Assert.Equal("Microsoft-HTTPAPI/2.0", response.Headers.Server.ToString());
|
||||||
Assert.False(response.Content.Headers.Contains("Content-Length"));
|
Assert.False(response.Content.Headers.Contains("Content-Length"));
|
||||||
Assert.Equal(0, response.Content.Headers.Count());
|
Assert.Equal(0, response.Content.Headers.Count());
|
||||||
|
|
||||||
|
// Send a second request to check that the connection wasn't corrupted.
|
||||||
|
responseTask = SendHeadRequestAsync(address);
|
||||||
|
context = await server.AcceptAsync(Utilities.DefaultTimeout);
|
||||||
|
context.Dispose();
|
||||||
|
response = await responseTask;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -484,32 +515,26 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener
|
||||||
|
|
||||||
private async Task<HttpResponseMessage> SendRequestAsync(string uri, bool usehttp11 = true, bool sendKeepAlive = false)
|
private async Task<HttpResponseMessage> SendRequestAsync(string uri, bool usehttp11 = true, bool sendKeepAlive = false)
|
||||||
{
|
{
|
||||||
using (HttpClient client = new HttpClient())
|
var request = new HttpRequestMessage(HttpMethod.Get, uri);
|
||||||
|
if (!usehttp11)
|
||||||
{
|
{
|
||||||
var request = new HttpRequestMessage(HttpMethod.Get, uri);
|
request.Version = new Version(1, 0);
|
||||||
if (!usehttp11)
|
|
||||||
{
|
|
||||||
request.Version = new Version(1, 0);
|
|
||||||
}
|
|
||||||
if (sendKeepAlive)
|
|
||||||
{
|
|
||||||
request.Headers.Add("Connection", "Keep-Alive");
|
|
||||||
}
|
|
||||||
return await client.SendAsync(request);
|
|
||||||
}
|
}
|
||||||
|
if (sendKeepAlive)
|
||||||
|
{
|
||||||
|
request.Headers.Add("Connection", "Keep-Alive");
|
||||||
|
}
|
||||||
|
return await _client.SendAsync(request);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task<HttpResponseMessage> SendHeadRequestAsync(string uri, bool usehttp11 = true)
|
private async Task<HttpResponseMessage> SendHeadRequestAsync(string uri, bool usehttp11 = true)
|
||||||
{
|
{
|
||||||
using (HttpClient client = new HttpClient())
|
var request = new HttpRequestMessage(HttpMethod.Head, uri);
|
||||||
|
if (!usehttp11)
|
||||||
{
|
{
|
||||||
var request = new HttpRequestMessage(HttpMethod.Head, uri);
|
request.Version = new Version(1, 0);
|
||||||
if (!usehttp11)
|
|
||||||
{
|
|
||||||
request.Version = new Version(1, 0);
|
|
||||||
}
|
|
||||||
return await client.SendAsync(request);
|
|
||||||
}
|
}
|
||||||
|
return await _client.SendAsync(request);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue