我正在尝试在 asp.netcore 项目中设置数据库的集成测试。我使用代码优先的方法来创建数据库。
对于使用 nuget 包 XUnit、FluentAssertions 和 NUnitestApadter3 的测试 iam。当我第一次运行测试时,测试通过了。
[Collection("Integration test collection")]
public class BookServiceTest : IntegrationTestBase
{
[Fact]
public void CanCreateUser()
{
using (var context = GivenBPDContext())
{
var Book = new BookService(context);
Data.Database.Entities.Book book = Book.AddNewBook("test");
context.SaveChanges();
book.Id.Should().NotBe(0);
book.Name.Should().Be("test");
}
}
}
public class IntegrationTestBase
{
protected static BPDContext GivenBPDContext()
{
var context = new BPDContext(new DbContextOptionsBuilder().Options);
return context;
}
// i tried dropping the database here and it do not work
}
一个非常基本的逻辑测试
public class BookService
{
private BPDContext _context;
public BookService(BPDContext context)
{
_context = context;
}
public Book AddNewBook(string name)
{
var book = _context.Books
.FirstOrDefault(x => x.Name == name);
if (book == null)
{
book = _context.Books.Add(new Data.Database.Entities.Book
{
Name = name,
}).Entity;
}
return book;
}
}
我第二次运行测试并更改正在测试的值时失败。我需要一种在每次测试后删除数据库的方法,然后运行迁移以使数据库升级到正确的版本。
下面是我如何设置数据库。启动文件
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
services.AddTransient<IBPDRepository, BPDRepository>();
services.AddDbContext<BPDContext>();
}
public class BPDContext:DbContext
{
public DbSet<Entities.Book> Books { get; set; }
public DbSet<Entities.User> User { get; set; }
public DbSet<Entities.Reviewer> Reviewer { get; set; }
public BPDContext(DbContextOptions options):base(options)
{
}
总之,我需要在每次测试运行之前删除数据库,然后使用迁移更新数据库,最后执行单元。
动漫人物
相关分类