130 lines
4.9 KiB
C#
130 lines
4.9 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.Collections.Generic;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc.ApplicationParts;
|
|
using Microsoft.AspNetCore.Mvc.Controllers;
|
|
using Microsoft.AspNetCore.Mvc.Internal;
|
|
using Microsoft.AspNetCore.Mvc.ModelBinding;
|
|
using Microsoft.AspNetCore.Mvc.ModelBinding.Validation;
|
|
using Microsoft.AspNetCore.Routing;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.ObjectPool;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
namespace Microsoft.AspNetCore.Mvc.IntegrationTests
|
|
{
|
|
public static class ModelBindingTestHelper
|
|
{
|
|
public static ModelBindingTestContext GetTestContext(
|
|
Action<HttpRequest> updateRequest = null,
|
|
Action<MvcOptions> updateOptions = null,
|
|
ControllerActionDescriptor actionDescriptor = null)
|
|
{
|
|
var httpContext = GetHttpContext(updateRequest, updateOptions);
|
|
var services = httpContext.RequestServices;
|
|
var options = services.GetRequiredService<IOptions<MvcOptions>>();
|
|
|
|
var context = new ModelBindingTestContext()
|
|
{
|
|
ActionDescriptor = actionDescriptor ?? new ControllerActionDescriptor(),
|
|
HttpContext = httpContext,
|
|
MetadataProvider = TestModelMetadataProvider.CreateDefaultProvider(),
|
|
RouteData = new RouteData(),
|
|
ValueProviderFactories = new List<IValueProviderFactory>(options.Value.ValueProviderFactories),
|
|
};
|
|
|
|
return context;
|
|
}
|
|
|
|
public static DefaultControllerArgumentBinder GetArgumentBinder(
|
|
MvcOptions options = null,
|
|
IModelBinderProvider binderProvider = null)
|
|
{
|
|
if (options == null)
|
|
{
|
|
var metadataProvider = TestModelMetadataProvider.CreateDefaultProvider();
|
|
return GetArgumentBinder(metadataProvider, binderProvider);
|
|
}
|
|
else
|
|
{
|
|
var metadataProvider = TestModelMetadataProvider.CreateProvider(options.ModelMetadataDetailsProviders);
|
|
return GetArgumentBinder(metadataProvider, binderProvider);
|
|
}
|
|
}
|
|
|
|
public static DefaultControllerArgumentBinder GetArgumentBinder(
|
|
IModelMetadataProvider metadataProvider,
|
|
IModelBinderProvider binderProvider = null)
|
|
{
|
|
var services = GetServices();
|
|
var options = services.GetRequiredService<IOptions<MvcOptions>>();
|
|
|
|
if (binderProvider != null)
|
|
{
|
|
options.Value.ModelBinderProviders.Insert(0, binderProvider);
|
|
}
|
|
|
|
return new DefaultControllerArgumentBinder(
|
|
metadataProvider,
|
|
new ModelBinderFactory(metadataProvider, options),
|
|
GetObjectValidator(metadataProvider, options));
|
|
}
|
|
|
|
public static IObjectModelValidator GetObjectValidator(
|
|
IModelMetadataProvider metadataProvider,
|
|
IOptions<MvcOptions> options = null)
|
|
{
|
|
IList<IModelValidatorProvider> validatorProviders;
|
|
if (options == null)
|
|
{
|
|
validatorProviders = TestModelValidatorProvider.CreateDefaultProvider().ValidatorProviders;
|
|
}
|
|
else
|
|
{
|
|
validatorProviders = options.Value.ModelValidatorProviders;
|
|
}
|
|
|
|
return new DefaultObjectValidator(metadataProvider, validatorProviders);
|
|
}
|
|
|
|
private static HttpContext GetHttpContext(
|
|
Action<HttpRequest> updateRequest = null,
|
|
Action<MvcOptions> updateOptions = null)
|
|
{
|
|
var httpContext = new DefaultHttpContext();
|
|
|
|
if (updateRequest != null)
|
|
{
|
|
updateRequest(httpContext.Request);
|
|
}
|
|
|
|
httpContext.RequestServices = GetServices(updateOptions);
|
|
return httpContext;
|
|
}
|
|
|
|
private static IServiceProvider GetServices(Action<MvcOptions> updateOptions = null)
|
|
{
|
|
var serviceCollection = new ServiceCollection();
|
|
serviceCollection.AddAuthorization();
|
|
serviceCollection.AddSingleton(new ApplicationPartManager());
|
|
serviceCollection.AddMvc();
|
|
serviceCollection
|
|
.AddSingleton<ObjectPoolProvider, DefaultObjectPoolProvider>()
|
|
.AddTransient<ILoggerFactory, LoggerFactory>()
|
|
.AddTransient<ILogger<DefaultAuthorizationService>, Logger<DefaultAuthorizationService>>();
|
|
|
|
if (updateOptions != null)
|
|
{
|
|
serviceCollection.Configure(updateOptions);
|
|
}
|
|
|
|
return serviceCollection.BuildServiceProvider();
|
|
}
|
|
}
|
|
}
|