带有 spring JDBC 模板的 DAO:单元测试的最佳方法

发布于 2024-12-10 19:43:13 字数 543 浏览 0 评论 0原文

使用 Spring JDBC 模板构建的单元/集成测试 DAO 层类的最佳方法是什么?

我想到了三种方法:

1)Mock 库(EasyMock、JMock、Mockito 等) - Spring 框架测试代码使用这种方法 - 他们使用 EasyMock。

2) 嵌入式数据库(H2、HSQL、Derby)

3) 真实数据库 - 与生产中使用的产品相同,在我的例子中为 Sybase ASE - 显然有不同的模式。

Cons:
1)This may slow down unit test execution.
2)Schema is shared between different developers / CI server. So, need to make sure there is no concurrency issue.

有些人认为第一种和第二种方法并不是真正的测试。第二种方法的另一个问题是,我使用的数据库 Sybase ASE 似乎与其中任何一个都不兼容。

想了解最佳实践。

谢谢。

What is the best way to unit/integration test DAO layer classes built using Spring JDBC templates?

Three approaches come to mind:

1) Mock library (EasyMock, JMock, Mockito, etc) - Spring framework test code makes use of this approach - They use EasyMock.

2) Embedded Database (H2, HSQL, Derby)

3) Real Database - Same product as used in production, Sybase ASE in my case - different schema obviously.

Cons:
1)This may slow down unit test execution.
2)Schema is shared between different developers / CI server. So, need to make sure there is no concurrency issue.

Some people argue that First and Second approaches are not real testing. Additional problem with Second approach is that, the database I use, Sybase ASE doesn't seem compatible with any of them.

Would like to know best practices.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

扭转时空 2024-12-17 19:43:13
  • 如果你不做#1,那么你就不是真正的单元测试。
  • 一般来说,我们的 DAO 非常薄,不需要单元测试,但我们对它们进行了大量的集成测试,并使用嵌入式数据库 (H2) 进行测试。
  • #3 似乎不是一个好主意。据我了解,您正在谈论使用在测试之间共享的单个“真实数据库”。这会让你很头疼,而且非常难以维护!测试需要隔离运行!
  • If you do not do #1, you are not really unit testing.
  • Our DAOs in general are very thin and do not need unit testing, but we heavily integration test them and we do it with an embedded database (H2).
  • #3 does not seem like a good idea. As far as I understand you are talking about using a single 'real database' that is shared between tests. This can cause you a lot of headaches and is very unmaintainable! Tests need to run in isolation!
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文