我是集成测试的新手,我正在寻找关于我的问题的解决方法的一些解释和建议:
我在测试中使用TransactionScope来保持数据库清洁并在每次测试之前创建新的TransactionScope并在每次测试后处理它:
[SetUp]
public void Init()
{
this.scope = new TransactionScope(
TransactionScopeOption.Required,
new TransactionOptions() { IsolationLevel = IsolationLevel.ReadUncommitted },
TransactionScopeAsyncFlowOption.Enabled);
this.context = new SportsPerformanceDbContext();
this.questRepo = new QuestionRepository(this.context);
}
[TearDown]
public void CleanAll()
{
this.context.Dispose();
this.scope.Dispose();
}
当我运行一个测试类时,一切正常。但是当我至少运行两个测试类时,我遇到了一个问题:在这个测试中(见下文) lasrQuestionId 等于数据库中的最后一个问题ID - 没关系,但是 actualResultId 等于 Id_of_the_last_added_question_in_tests_with_transaction_scope + 1 :
[Test]
public async void AddAsyncTest()
{
// Arrange
var questionModel = new QuestionModel
{
//some properties
};
Question lastQuestion = this.GetLastQuestion();
var lastQuestionId = lastQuestion?.Id ?? 0;
// Act
var addResult = await this.questRepo.AddAsync(questionModel);
var actualResult = addResult.Value;
// Assert
Assert.AreEqual(lastQuestionId + 1, actualResult.Id);
// some other assertions
}
所以我有以下内容,例如 lastQuestionId 是5(数据库中有5个问题),但 actualResult Id 是16(因为我之前添加了一些)其他测试中的问题)...我认为我的上下文或 scope.dispose()存在问题。我不知道问题在哪里,你能解释我在这里做错了什么吗?提前谢谢!
this.GetLastQuestion()代码如下:
private Question GetLastQuestion()
{
using (var ctx = new SportsPerformanceDbContext())
{
return ctx.Question
.OrderByDescending(q => q.Id)
.FirstOrDefault();
}
}
答案 0 :(得分:0)
这就是SQL Server引擎works:
的方式对于具有特定种子/增量的给定标识属性,引擎不会重用标识值。如果特定的insert语句失败或者回滚insert语句,则消耗的标识值将丢失,并且不会再次生成。生成后续标识值时,这可能会导致间隙。