我正在开发一个基于 Spring 2.5 和 hibernate 3 的 Web 应用程序。最近我引入了 JUnit 测试,并使用 DBUnit 框架完成了一些集成测试。DBUnit 应该在一个测试和另一个测试之间使用 xml 数据集更新数据库,并且它运行良好,正如我所见。
但是,当我在测试中更新一个元素时,hibernate 似乎捕捉到了这个信息,甚至我在下面的测试中加载了这个元素,这些信息是我修改过的。如果我在执行暂停时查看数据库,则 DBUnit 正确重置了数据库。所以我认为这可能是一个休眠问题..
有没有办法在测试之间进行拆解,说我想要一个新的休眠会话用于我的春季上下文?顺便说一句,我没有使用 Spring 注释,而是通过代码获取 Spring 上下文:
String[] contextLocations = new String[2];
contextLocations[0] = "WebContent/WEB-INF/applicationContext.xml";
contextLocations[1] = "src/System_V3/test/applicationContext.xml";
context = new FileSystemXmlApplicationContext(contextLocations);
DBUnit 设置:
@Before
public void setUpBeforeClass() throws Exception {
handleSetUpOperation();
}
private static void handleSetUpOperation() throws Exception {
conn = getConnection();
conn.getConnection().setAutoCommit(false);
final IDataSet data = getDataSet();
try {
DatabaseOperation.REFRESH.execute(conn, data);
} finally {
conn.close();
}
}
private static IDatabaseConnection getConnection() throws ClassNotFoundException, SQLException,
DatabaseUnitException {
Class.forName("org.gjt.mm.mysql.Driver");
return new DatabaseConnection(DriverManager.getConnection(
"jdbc:mysql://localhost:3306/web_database", "root", "pass"));
}
private static IDataSet getDataSet() throws IOException, DataSetException {
ClassLoader classLoader = TestPrueba.class.getClassLoader();
return new FlatXmlDataSetBuilder().build(classLoader
.getResourceAsStream("System_V3/test/dataset.xml"));
}
测试是在 JUnit 4 中仅使用 @Test 注释完成的,并且测试类不扩展任何库类。
有什么建议吗?