我正在使用DBUnit来测试我的数据库。我的数据库不是空的,所以我想要的是忽略现有的元素,只测试我的测试插入的数据。
这是一个如何运行测试的例子:
1-表包含10个元素
2-DBUnit从数据集插入一些数据(3个元素)
3-我的测试插入数据(1个元素)
4-我期望的数据集包含4个元素,这是第一个数据集中定义的3个元素和测试最近添加的元素
5-所以,当我断言实际表和预期表相等时,它会显示一个错误,这是正常的,因为我的表已经包含了元素。
问题是:是否有任何方法可以忽略断言中数据库中存在的元素?我只想测试数据集插入的数据并进行测试。
这是代码:
@Override
protected IDataSet getDataSet() throws Exception {
// transforme fichier XML en BDD
URL url = this.getClass().getResource("/dataset-peqt2-init.xml");
File testFile = new File(url.getFile());
return new FlatXmlDataSetBuilder().build(testFile);
}
@Override
protected DatabaseOperation getSetUpOperation() throws Exception
{
return DatabaseOperation.REFRESH;
}
/**
* Reset the state of database
* Called before every test
*/
@Override
protected DatabaseOperation getTearDownOperation() throws Exception
{
return DatabaseOperation.DELETE;
}
/**
* get the actual table from the database
* @param tableName
* @return
* @throws Exception
* @throws SQLException
* @throws DataSetException
*/
private ITable getActualTable(String tableName) throws Exception, SQLException, DataSetException {
// get the actual table values
IDatabaseConnection connection = getConnection();
IDataSet databaseDataSet = connection.createDataSet();
return databaseDataSet.getTable(tableName);
}
/**
* get the expected table from the dataset
* @param tableName
* @param fileName
* @return
* @throws Exception
*/
private ITable getExpectedTable(String tableName, String fileName) throws Exception {
// get the expected table values
URL url = this.getClass().getResource("/"+fileName);
File testFile = new File(url.getFile());
IDataSet expectedDataSet = new FlatXmlDataSetBuilder().build(testFile);
return expectedDataSet.getTable(tableName);
}
@Test
public void test01_insert() throws SQLException, Exception {
File file = new File(SynchroDerbi.class.getResource("/test-insert.lst").getFile());
log.debug("test01_insert() avec ref : "+file.getName());
SynchroDerbi.run(file);
String fileName = "dataset-insert-expected.xml";
actualTable = getActualTable("equipment");
expectedTable = getExpectedTable("equipment",fileName);
Assertion.assertEqualsIgnoreCols(expectedTable, actualTable, new String[]{"id","idSite"});
}
在getSetUpOperation()
中执行DatabaseOperation.CLEAN_INSERT;
。通过这种方式,操作将首先删除所有表记录,然后插入数据集。
您的测试不应该依赖于系统的当前状态。因此,与其断言相等,不如使用"包含"检查。您从select中获得结果,然后断言这些结果包含您刚刚插入的结果。
如果你想更严格地进行检查(这可能会影响测试的可维护性),你可以选择记录的N个BEFORE,然后插入,然后检查BEFORE+N=AFTER。
PS:DBUnit不是一个非常灵活和可维护的工具。相反,您可以使用系统的代码来保存状态。这样,如果列发生更改,就不需要更改DBUnit数据。为了确保你的测试不会相互影响,请使用数据随机化。如果您可以在测试中启动并回滚事务,那么使用系统代码可能会进一步帮助隔离。