使用 Rhino Commons UnitOfWork 嵌套事务范围以进行集成测试

发布于 2024-07-15 18:06:45 字数 1237 浏览 9 评论 0原文

我正在尝试设置一个集成测试类,将每个测试包装在一个事务中。 这样我可以在每次测试后回滚事务,而不是在每次测试前重置数据库。

我还希望能够在集成测试本身中使用事务。

我在该项目中使用 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 UnitOfWorks. 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 UnitOfWorks 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鸠魁 2024-07-22 18:06:45

我相信 UnitOfWork.Start().BeginTransaction() 返回一个 RhinoTransaction。 因此,为了使其更清楚,您可以尝试将代码重写为:

using(IUnitOfWork uow = UnitOfWork.Start(UnitOfWorkNestingOptions.CreateNewOrNestUnitOfWork))
{
    RhinoTransaction tx = uow.BeginTransaction();
    .
    .
    .
    .
    tx.Rollback();
}

不过请注意,我还没有尝试过上面的代码,请告诉我它是否有效。

I believe UnitOfWork.Start().BeginTransaction() returns a RhinoTransaction. So to make it more clear you can try to rewrite the code as this:

using(IUnitOfWork uow = UnitOfWork.Start(UnitOfWorkNestingOptions.CreateNewOrNestUnitOfWork))
{
    RhinoTransaction tx = uow.BeginTransaction();
    .
    .
    .
    .
    tx.Rollback();
}

Be warned though, I have not tried the code above, let me know if it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文