React to fallback changes
This commit is contained in:
parent
0e9fa31da5
commit
9f351a09a2
|
|
@ -9,6 +9,7 @@ using Microsoft.Framework.DependencyInjection;
|
||||||
using Microsoft.Framework.DependencyInjection.Fallback;
|
using Microsoft.Framework.DependencyInjection.Fallback;
|
||||||
using Microsoft.AspNet.Security.DataProtection;
|
using Microsoft.AspNet.Security.DataProtection;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
using Microsoft.Framework.Runtime.Infrastructure;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.Identity.EntityFramework.Test
|
namespace Microsoft.AspNet.Identity.EntityFramework.Test
|
||||||
{
|
{
|
||||||
|
|
@ -43,7 +44,7 @@ namespace Microsoft.AspNet.Identity.EntityFramework.Test
|
||||||
public async Task EnsureStartupUsageWorks()
|
public async Task EnsureStartupUsageWorks()
|
||||||
{
|
{
|
||||||
var context = CreateContext(true);
|
var context = CreateContext(true);
|
||||||
var builder = new ApplicationBuilder(new ServiceCollection().BuildServiceProvider());
|
var builder = new ApplicationBuilder(CallContextServiceLocator.Locator.ServiceProvider);
|
||||||
|
|
||||||
builder.UseServices(services =>
|
builder.UseServices(services =>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ using Microsoft.Data.Entity;
|
||||||
using Microsoft.Framework.DependencyInjection;
|
using Microsoft.Framework.DependencyInjection;
|
||||||
using Microsoft.Framework.DependencyInjection.Fallback;
|
using Microsoft.Framework.DependencyInjection.Fallback;
|
||||||
using Microsoft.Framework.OptionsModel;
|
using Microsoft.Framework.OptionsModel;
|
||||||
|
using Microsoft.Framework.Runtime.Infrastructure;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.Identity.EntityFramework.Test
|
namespace Microsoft.AspNet.Identity.EntityFramework.Test
|
||||||
|
|
@ -79,7 +80,7 @@ namespace Microsoft.AspNet.Identity.EntityFramework.Test
|
||||||
public async Task EnsureStartupUsageWorks()
|
public async Task EnsureStartupUsageWorks()
|
||||||
{
|
{
|
||||||
EnsureDatabase();
|
EnsureDatabase();
|
||||||
var builder = new ApplicationBuilder(new ServiceCollection().BuildServiceProvider());
|
var builder = new ApplicationBuilder(CallContextServiceLocator.Locator.ServiceProvider);
|
||||||
|
|
||||||
builder.UseServices(services =>
|
builder.UseServices(services =>
|
||||||
{
|
{
|
||||||
|
|
@ -104,7 +105,7 @@ namespace Microsoft.AspNet.Identity.EntityFramework.Test
|
||||||
public async Task EnsureStartupOptionsChangeWorks()
|
public async Task EnsureStartupOptionsChangeWorks()
|
||||||
{
|
{
|
||||||
EnsureDatabase();
|
EnsureDatabase();
|
||||||
var builder = new ApplicationBuilder(new ServiceCollection().BuildServiceProvider());
|
var builder = new ApplicationBuilder(CallContextServiceLocator.Locator.ServiceProvider);
|
||||||
|
|
||||||
builder.UseServices(services =>
|
builder.UseServices(services =>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@ using Microsoft.Framework.DependencyInjection.Fallback;
|
||||||
using Microsoft.Framework.Logging;
|
using Microsoft.Framework.Logging;
|
||||||
using Microsoft.AspNet.Security.DataProtection;
|
using Microsoft.AspNet.Security.DataProtection;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
using Microsoft.Framework.Runtime.Infrastructure;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.Identity.EntityFramework.Test
|
namespace Microsoft.AspNet.Identity.EntityFramework.Test
|
||||||
{
|
{
|
||||||
|
|
@ -48,7 +49,7 @@ namespace Microsoft.AspNet.Identity.EntityFramework.Test
|
||||||
public async Task EnsureStartupUsageWorks()
|
public async Task EnsureStartupUsageWorks()
|
||||||
{
|
{
|
||||||
EnsureDatabase();
|
EnsureDatabase();
|
||||||
var builder = new ApplicationBuilder(new ServiceCollection().BuildServiceProvider());
|
var builder = new ApplicationBuilder(CallContextServiceLocator.Locator.ServiceProvider);
|
||||||
|
|
||||||
builder.UseServices(services =>
|
builder.UseServices(services =>
|
||||||
{
|
{
|
||||||
|
|
@ -74,7 +75,7 @@ namespace Microsoft.AspNet.Identity.EntityFramework.Test
|
||||||
public async Task EnsureStartupOptionsChangeWorks()
|
public async Task EnsureStartupOptionsChangeWorks()
|
||||||
{
|
{
|
||||||
EnsureDatabase();
|
EnsureDatabase();
|
||||||
var builder = new ApplicationBuilder(new ServiceCollection().BuildServiceProvider());
|
var builder = new ApplicationBuilder(CallContextServiceLocator.Locator.ServiceProvider);
|
||||||
|
|
||||||
builder.UseServices(services =>
|
builder.UseServices(services =>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ using Moq;
|
||||||
using System.Security.Claims;
|
using System.Security.Claims;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
using Microsoft.Framework.Runtime.Infrastructure;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.Identity.InMemory.Test
|
namespace Microsoft.AspNet.Identity.InMemory.Test
|
||||||
{
|
{
|
||||||
|
|
@ -24,7 +25,7 @@ namespace Microsoft.AspNet.Identity.InMemory.Test
|
||||||
[InlineData(false)]
|
[InlineData(false)]
|
||||||
public async Task VerifyAccountControllerSignIn(bool isPersistent)
|
public async Task VerifyAccountControllerSignIn(bool isPersistent)
|
||||||
{
|
{
|
||||||
var app = new ApplicationBuilder(new ServiceCollection().BuildServiceProvider());
|
var app = new ApplicationBuilder(CallContextServiceLocator.Locator.ServiceProvider);
|
||||||
app.UseCookieAuthentication();
|
app.UseCookieAuthentication();
|
||||||
|
|
||||||
var context = new Mock<HttpContext>();
|
var context = new Mock<HttpContext>();
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ using Microsoft.Framework.ConfigurationModel;
|
||||||
using Microsoft.Framework.DependencyInjection;
|
using Microsoft.Framework.DependencyInjection;
|
||||||
using Microsoft.Framework.DependencyInjection.Fallback;
|
using Microsoft.Framework.DependencyInjection.Fallback;
|
||||||
using Microsoft.Framework.OptionsModel;
|
using Microsoft.Framework.OptionsModel;
|
||||||
|
using Microsoft.Framework.Runtime.Infrastructure;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.Identity.Test
|
namespace Microsoft.AspNet.Identity.Test
|
||||||
|
|
@ -113,7 +114,7 @@ namespace Microsoft.AspNet.Identity.Test
|
||||||
[Fact]
|
[Fact]
|
||||||
public void CanCustomizeIdentityOptions()
|
public void CanCustomizeIdentityOptions()
|
||||||
{
|
{
|
||||||
var builder = new ApplicationBuilder(new ServiceCollection().BuildServiceProvider());
|
var builder = new ApplicationBuilder(CallContextServiceLocator.Locator.ServiceProvider);
|
||||||
builder.UseServices(services =>
|
builder.UseServices(services =>
|
||||||
{
|
{
|
||||||
services.AddIdentity<IdentityUser>();
|
services.AddIdentity<IdentityUser>();
|
||||||
|
|
@ -135,7 +136,7 @@ namespace Microsoft.AspNet.Identity.Test
|
||||||
[Fact]
|
[Fact]
|
||||||
public void CanSetupIdentityOptions()
|
public void CanSetupIdentityOptions()
|
||||||
{
|
{
|
||||||
var app = new ApplicationBuilder(new ServiceCollection().BuildServiceProvider());
|
var app = new ApplicationBuilder(CallContextServiceLocator.Locator.ServiceProvider);
|
||||||
app.UseServices(services =>
|
app.UseServices(services =>
|
||||||
{
|
{
|
||||||
services.AddIdentity<IdentityUser>().ConfigureIdentity(options => options.User.RequireUniqueEmail = true);
|
services.AddIdentity<IdentityUser>().ConfigureIdentity(options => options.User.RequireUniqueEmail = true);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue