53 lines
1.7 KiB
C#
53 lines
1.7 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Http.Internal;
|
|
using Microsoft.AspNetCore.Mvc.Abstractions;
|
|
using Microsoft.AspNetCore.Routing;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Logging.Testing;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNetCore.Mvc
|
|
{
|
|
public class HttpStatusCodeResultTests
|
|
{
|
|
[Fact]
|
|
public void HttpStatusCodeResult_ExecuteResultSetsResponseStatusCode()
|
|
{
|
|
// Arrange
|
|
var result = new StatusCodeResult(StatusCodes.Status404NotFound);
|
|
|
|
var httpContext = GetHttpContext();
|
|
var routeData = new RouteData();
|
|
var actionDescriptor = new ActionDescriptor();
|
|
|
|
var context = new ActionContext(httpContext, routeData, actionDescriptor);
|
|
|
|
// Act
|
|
result.ExecuteResult(context);
|
|
|
|
// Assert
|
|
Assert.Equal(StatusCodes.Status404NotFound, httpContext.Response.StatusCode);
|
|
}
|
|
|
|
private static IServiceCollection CreateServices()
|
|
{
|
|
var services = new ServiceCollection();
|
|
services.AddSingleton<ILoggerFactory>(NullLoggerFactory.Instance);
|
|
return services;
|
|
}
|
|
|
|
private static HttpContext GetHttpContext()
|
|
{
|
|
var services = CreateServices();
|
|
|
|
var httpContext = new DefaultHttpContext();
|
|
httpContext.RequestServices = services.BuildServiceProvider();
|
|
|
|
return httpContext;
|
|
}
|
|
}
|
|
} |