131 lines
4.7 KiB
C#
131 lines
4.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 System;
|
|
using System.Buffers;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc.Abstractions;
|
|
using Microsoft.AspNetCore.Mvc.Formatters;
|
|
using Microsoft.AspNetCore.Mvc.Infrastructure;
|
|
using Microsoft.AspNetCore.Mvc.Internal;
|
|
using Microsoft.AspNetCore.Routing;
|
|
using Microsoft.AspNetCore.Testing;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging.Abstractions;
|
|
using Microsoft.Extensions.Options;
|
|
using Moq;
|
|
using Newtonsoft.Json;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNetCore.Mvc
|
|
{
|
|
public class CreatedAtRouteResultTests
|
|
{
|
|
public static IEnumerable<object[]> CreatedAtRouteData
|
|
{
|
|
get
|
|
{
|
|
yield return new object[] { null };
|
|
yield return
|
|
new object[] {
|
|
new Dictionary<string, string>() { { "hello", "world" } }
|
|
};
|
|
yield return
|
|
new object[] {
|
|
new RouteValueDictionary(new Dictionary<string, string>() {
|
|
{ "test", "case" },
|
|
{ "sample", "route" }
|
|
})
|
|
};
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[MemberData(nameof(CreatedAtRouteData))]
|
|
public async Task CreatedAtRouteResult_ReturnsStatusCode_SetsLocationHeader(object values)
|
|
{
|
|
// Arrange
|
|
var expectedUrl = "testAction";
|
|
var httpContext = GetHttpContext();
|
|
var actionContext = GetActionContext(httpContext);
|
|
var urlHelper = GetMockUrlHelper(expectedUrl);
|
|
|
|
// Act
|
|
var result = new CreatedAtRouteResult(routeName: null, routeValues: values, value: null);
|
|
result.UrlHelper = urlHelper;
|
|
await result.ExecuteResultAsync(actionContext);
|
|
|
|
// Assert
|
|
Assert.Equal(StatusCodes.Status201Created, httpContext.Response.StatusCode);
|
|
Assert.Equal(expectedUrl, httpContext.Response.Headers["Location"]);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task CreatedAtRouteResult_ThrowsOnNullUrl()
|
|
{
|
|
// Arrange
|
|
var httpContext = GetHttpContext();
|
|
var actionContext = GetActionContext(httpContext);
|
|
var urlHelper = GetMockUrlHelper(returnValue: null);
|
|
|
|
var result = new CreatedAtRouteResult(
|
|
routeName: null,
|
|
routeValues: new Dictionary<string, object>(),
|
|
value: null);
|
|
|
|
result.UrlHelper = urlHelper;
|
|
|
|
// Act & Assert
|
|
await ExceptionAssert.ThrowsAsync<InvalidOperationException>(
|
|
async () => await result.ExecuteResultAsync(actionContext),
|
|
"No route matches the supplied values.");
|
|
}
|
|
|
|
private static ActionContext GetActionContext(HttpContext httpContext)
|
|
{
|
|
var routeData = new RouteData();
|
|
routeData.Routers.Add(Mock.Of<IRouter>());
|
|
|
|
return new ActionContext(httpContext,
|
|
routeData,
|
|
new ActionDescriptor());
|
|
}
|
|
|
|
private static HttpContext GetHttpContext()
|
|
{
|
|
var httpContext = new DefaultHttpContext();
|
|
httpContext.Request.PathBase = new PathString("");
|
|
httpContext.Response.Body = new MemoryStream();
|
|
httpContext.RequestServices = CreateServices();
|
|
return httpContext;
|
|
}
|
|
|
|
private static IServiceProvider CreateServices()
|
|
{
|
|
var options = Options.Create(new MvcOptions());
|
|
options.Value.OutputFormatters.Add(new StringOutputFormatter());
|
|
options.Value.OutputFormatters.Add(new JsonOutputFormatter(
|
|
new JsonSerializerSettings(),
|
|
ArrayPool<char>.Shared));
|
|
|
|
var services = new ServiceCollection();
|
|
services.AddSingleton<IActionResultExecutor<ObjectResult>>(new ObjectResultExecutor(
|
|
new DefaultOutputFormatterSelector(options, NullLoggerFactory.Instance),
|
|
new TestHttpResponseStreamWriterFactory(),
|
|
NullLoggerFactory.Instance));
|
|
|
|
return services.BuildServiceProvider();
|
|
}
|
|
|
|
private static IUrlHelper GetMockUrlHelper(string returnValue)
|
|
{
|
|
var urlHelper = new Mock<IUrlHelper>();
|
|
urlHelper.Setup(o => o.Link(It.IsAny<string>(), It.IsAny<object>())).Returns(returnValue);
|
|
|
|
return urlHelper.Object;
|
|
}
|
|
}
|
|
} |