我正在使用xUnit在Web API Asp.Net Core上编写一些单元测试,我正在测试我的服务。
我创建了一个构建器类,用于创建映射器实例,以便在构造函数中创建需要IMapper的类。
public IMapper Mapper()
{
var config = new MapperConfiguration(cfg =>
{
cfg.AddProfile<CustomerRoleProfile>();
cfg.AddProfile<LicenseProfile>();
cfg.AddProfile<TaxExemptionProfile>();
cfg.AddProfile<BankProfile>();
cfg.AddProfile<AddressProfile>();
cfg.AddProfile<CustomerDetailsProfile>();
cfg.AddProfile<CustomerProfile>();
});
return config.CreateMapper();
}
但每次我使用mapper实例时都会抛出此错误
System.InvalidOperationException: Mapper not initialized
如果我尝试断言配置,则所有测试都失败
config.AssertConfigurationIsValid();
但是如果我尝试使用具有相同配置的静态实例,那么它就不会失败,但是有些测试失败了,因为如果我有更多的测试类,Automapper已经初始化了。
public IMapper Mapper()
{
AutoMapper.Mapper.Reset();
AutoMapper.Mapper.Initialize(cfg =>
{
cfg.AddProfile(new CustomerRoleProfile());
cfg.AddProfile(new LicenseProfile());
cfg.AddProfile(new TaxExemptionProfile());
cfg.AddProfile(new BankProfile());
cfg.AddProfile(new AddressProfile());
cfg.AddProfile(new CustomerDetailsProfile());
cfg.AddProfile(new CustomerProfile());
});
return Automapper.Mapper.Configuration.CreateMapper();
}
使用静态Automapper来自一个类的所有测试,例如,此测试成功
[Fact]
public async Task UpdateOrInsertCustomer()
{
var customer = new CustomerCreateDto() { CustomerId = 1, StoreId = 1, CardTypeCode = "GO", InvoiceTypeCode = "PRO", SelfScanningAllowed = true, TradeId = 12345, CountryCode = "ROU" };
var result = await _customerService.UpdateOrInsert(customer);
result.Should().BeTrue();
}
另一个班级的一些测试失败了,例如这个
[Theory]
[InlineData(1, 1, null)]
public async Task GeValidCustomerDetails(int customerId, int storeId, int? cardHolderId)
{
var result = await _detailsService.GetAsync(customerId, storeId, cardHolderId);
if (!cardHolderId.HasValue)
result.Should().NotBeNull().And.Subject.Should().BeOfType<OrganizationDto>();
else
result.Should().NotBeNull().And.Subject.Should().BeOfType<PersonDto>()
.And.Subject.As<PersonDto>().CardHolderId.Should().Be(cardHolderId.Value);
result.CustomerId.Should().Be(customerId);
result.StoreId.Should().Be(storeId);
}
答案 0 :(得分:-1)
作为一种解决方法,我将静态实例与静态包装器和锁一起使用以避免竞争情况,并且它适用于所有单元测试。 我不知道为什么映射器配置实例不起作用。