在UseInMemoryDatabase()

时间:2019-07-08 06:55:02

标签: c# entity-framework unit-testing asp.net-core asp.net-identity

我使此方法更易于进行单元测试DbContext。这种方法使Context中的db进入了内存。之所以有效,是因为我使用实体(例如_context.Projects_context.Tests等,在单元测试中测试了此方法)

        public static TaskManagerDbContext Create()
        {
            var options = new DbContextOptionsBuilder<TaskManagerDbContext>()
                                .UseInMemoryDatabase(Guid.NewGuid().ToString())
                                .EnableSensitiveDataLogging(true)
                                .Options;

            var context = new TaskManagerDbContext(options);
            context.SaveChanges();

            return context;
        }

我的DbContextClass如下:


    public class TaskManagerDbContext : IdentityDbContext<ApplicationUser>, ITaskManagerDbContext
    {
        public TaskManagerDbContext(DbContextOptions<TaskManagerDbContext> options)
            : base(options)
        {
        }

        //db sets here

        protected override void OnModelCreating(ModelBuilder modelBuilder)
        {
            base.OnModelCreating(modelBuilder);
            modelBuilder.ApplyConfigurationsFromAssembly(typeof(TaskManagerDbContext).Assembly);
        }
    }

我的问题是,是否可以像使用UserManager一样在内存中存储Identity的SignInManagerRoleManagerIdentityDbContext?如何对Identity这样的用户,内存中的角色进行单元测试,就像我们可以使用标准Context一样?在进行即时测试时,如何在存储在内存中的虚假上下文中调用此Managers

编辑:

基于this SO Question身份共享context显而易见。但是如何在通过Managers方法创建的IdentityDbContext上使用UseInMemoryDatabase()

EDIT2:

我通过固定装置注入context

public class DatabaseFixture
{
    public TaskManagerDbContext Context { get; private set; }

    public DatabaseFixture()
    {
        this.Context = DatabaseContextFactory.Create();
    }
}

[CollectionDefinition("DatabaseTestCollection")]
public class QueryCollection : ICollectionFixture<DatabaseFixture>
{
}

及其用法:

[Collection("DatabaseTestCollection")]
public class RegisterUserCommandTests
{
    private readonly TaskManagerDbContext _context;

    public RegisterUserCommandTests(DatabaseFixture fixture)
    {
        _context = fixture.Create();
    }

    //and usage of it in class:
    var user = _context.Projects.Find(8);
}

我正在使用Xunit

1 个答案:

答案 0 :(得分:1)

您需要创建一个服务集合,向其中注册所有内容,然后使用它来提取您需要的内容。

var services = new ServiceCollection();
services.AddDbContext<TaskManagerDbContext>(o =>
    o.UseInMemoryDatabase(Guid.NewGuid()));
services.AddIdentity<IdentityUser, IdentityRole>()
    .AddEntityFrameworkStores<TaskManagerDbContext>();
var provider = services.BuildServiceProvider();

然后,您可以使用provider

using (var scope = provider.CreateScope())
{
    var userManager = scope.ServiceProvider.GetRequiredService<UserManager<IdentityUser>>();
}