我使此方法更易于进行单元测试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的SignInManager
,RoleManager
,IdentityDbContext
?如何对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
。
答案 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>>();
}