使用 Rhino Commons UnitOfWork 嵌套事务范围以进行集成测试
我正在尝试设置一个集成测试类,将每个测试包装在一个事务中。 这样我可以在每次测试后回滚事务,而不是在每次测试前重置数据库。
我还希望能够在集成测试本身中使用事务。
我在该项目中使用 NHibernate 和 Rhino Commons UnitOfWork。 我正在使用 MSTest 进行测试。
我想要这样的东西:
[TestInitialize]
public void TestInit() {
// create outer transaction scope
UnitOfWork.Start();
UnitOfWork.Current.BeginTransaction();
}
[TestCleanup]
public void TestCleanup() {
// rollback outer transaction
UnitOfWork.Current.Dispose();
}
[TestMethod]
public void IntegrationTest() {
using (UnitOfWork.Start(UnitOfWorkNestingOptions.CreateNewOrNestUnitOfWork)) {
UnitOfWork.Current.BeginTransaction();
// integration test code
UnitOfWork.Current.TransactionalFlush();
// possibly more transactions
}
}
这是我第一次使用 NHibernate、Rhino Commons 和 MSTest。 我不清楚嵌套的 Rhino Commons UnitOfWork
会话的行为。 我这里的内容不会回滚集成测试中的更改。
我尝试使用 System.Transactions 中的 TransactionScope,但在 UnitOfWork 结束时出现以下错误:
System.InvalidOperationException:事务正在进行时无法调用断开连接。
所以这是我的问题:
有没有办法在 Rhino Commons 中使用 UnitOfWork 来实现这种行为? 如果没有,我是否应该在每次测试之前重置数据库,或者是否有其他方法来嵌套与 UnitOfWork 配合良好的事务?
谢谢。
I'm trying to set up a integration test class that wraps each test in a transaction. This way I can rollback the transaction after each test instead of resetting the DB before each test.
I also want to be able to use transactions in the integration tests themselves.
I am using NHibernate and the Rhino Commons UnitOfWork for the the project. I am using MSTest for the tests.
I want something like this:
[TestInitialize]
public void TestInit() {
// create outer transaction scope
UnitOfWork.Start();
UnitOfWork.Current.BeginTransaction();
}
[TestCleanup]
public void TestCleanup() {
// rollback outer transaction
UnitOfWork.Current.Dispose();
}
[TestMethod]
public void IntegrationTest() {
using (UnitOfWork.Start(UnitOfWorkNestingOptions.CreateNewOrNestUnitOfWork)) {
UnitOfWork.Current.BeginTransaction();
// integration test code
UnitOfWork.Current.TransactionalFlush();
// possibly more transactions
}
}
This is the first time I have used NHibernate, Rhino Commons, and MSTest. I am not clear on the behavior of sessions with nested Rhino Commons UnitOfWork
s. What I have here does not rollback the changes from the integration test.
I tried using TransactionScope
from System.Transactions
, but get the following error when the UnitOfWork
s end:
System.InvalidOperationException: Disconnect cannot be called while a transaction is in progress..
So here are my questions:
Is there a way to get this behavior with UnitOfWork in Rhino Commons? If not, should I just reset the database before each test or is there another way to nest transactions that plays nicely with the UnitOfWork?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信
UnitOfWork.Start().BeginTransaction()
返回一个RhinoTransaction
。 因此,为了使其更清楚,您可以尝试将代码重写为:不过请注意,我还没有尝试过上面的代码,请告诉我它是否有效。
I believe
UnitOfWork.Start().BeginTransaction()
returns aRhinoTransaction
. So to make it more clear you can try to rewrite the code as this:Be warned though, I have not tried the code above, let me know if it works.