• Home
  • RSS Feed
  • Log in

Sharpen up your DbUnit testing
Posted by Saket Vishal just before lunchtime: September 21st, 2007

DbUnit is a JUnit extension and is very popular among developers for unit testing database-driven projects. In this blog I will discuss some of the tips to make your life easier and beautiful for DbUnit testing.

Using same connection for entire test suite
If you are extending DatabaseTestCase then this class creates a connection to the database in setUp() and closes it in teardown() this can prove to be a big overhead and can cause considerable slowdown in running tests as the number of test cases increase. Maintaining a single connection for the entire test suite can prove to be beneficial in such cases.

If you are using JUnit 4 then you can use annotations for performing initial operations (@BeforeClass) and thus there is no need to extend the DatabaseTestCase and finally handling the closing of database connection.

@BeforeClass
public static void setUpBeforeClass() throws Exception {
handleSetUpOperation();
}

If several test cases are using a read only dataset as expected state of the database after running the test cases then loading this expected dataset file only once for all the test cases can help up in speeding up things.

Specifying a DTD for the dataset can act as a cure for some of the things
You can create a DTD by using the following code in DbUnit.

FlatDtdDataSet.write(connection.createDataSet(),
new FileOutputStream("test.dtd")); 

This DTD can be used now to
- Validate a dataset file against it.
- Providing null values to a column by omitting it for a row in dataset.

Keeping some reusable methods
A few reusable methods like asserting the database state after running tests with an expected state dataset file can be very useful. I am mentioning one of such methods here

    protected void assertTables(String filename, String[] tableNames)
    throws SQLException, Exception, DataSetException, IOException,
    DatabaseUnitException {
    IDataSet expectedDataSet = null;
    if (tableNames == null) {
    // Load expected data from an XML data set
    expectedDataSet = new FlatXmlDataSet(new File(filename));
    tableNames = expectedDataSet.getTableNames();
    } else {
    // Load subset of the complete dataset
    expectedDataSet = new FilteredDataSet(tableNames,
    new FlatXmlDataSet(new File(filename)));
    }
    // Fetch database data after executing your code
    IDataSet actualDataSet = getConnection().createDataSet(tableNames);
    ITable[] expectedTables = new CompositeTable[tableNames.length];
    for (int i = 0; i <tableNames.length; i++) {
    expectedTables[i] = new CompositeTable(expectedDataSet
    .getTableMetaData(tableNames[i]), actualDataSet
    .getTable(tableNames[i]));
    }
    Assertion.assertEquals(expectedDataSet, new CompositeDataSet(
    expectedTables));
    }

Above method assertTables can assert the current state of the database after running test cases with the state provided in the dataset file. This method is intelligent enough to handle both cases of asserting the database state with the expected dataset file by supplying table names (might be a subset of all the tables provided in the dataset file) or without the table names in which case all the tables provided in the dataset files are used. The method uses table meta-data provided in the dataset file to get state of the corresponding table from the database, thus to ignore column such as auto-generated column can be automatically avoided in comparison by not mentioning them in the dataset file.

Happy Red-Green-Refactor-ing.

  • Share/Bookmark

Filed under Java | 2 Comments »



2 Responses to “Sharpen up your DbUnit testing”



    Andres Almiray Says:
    Posted at: September 21, 2007 at 5:34 pm

    I’m curious to know how you implemented handleSetUpOperation() without extending DatabaseTestCase (or DBTestCase). As a matter of fact that scenario is one of the reasons why DbUnit 2.2 includes IDatabaseTester =)



    DbUnit : Testing with Database « Elope Says:
    Posted at: October 5, 2007 at 5:39 am

    [...] Blog about DbUnit:Sharpen up your DbUnit testing [...]



Leave a Reply

Click here to cancel reply.

Deployment automation for Java application running on Websphere, WebLogic and JBoss

Archives

  • March 2010
  • February 2010
  • January 2010
  • December 2009
  • November 2009
  • October 2009
  • September 2009
  • August 2009
  • July 2009
  • June 2009
  • May 2009
  • April 2009

Xebia Sites

  • Xebia Corporate
  • Xebia France
  • Xebia India

Categories

  • Java (282)
  • Agile (109)
  • General (50)
  • Testing (42)
  • Performance (42)
  • Hibernate (36)
  • Scrum (33)
  • Podcast (31)
  • Architecture (31)
  • Spring (28)
  • SOA (24)
  • Maven (22)
  • Project Management (22)
  • Middleware (23)
    • Deployment (14)
  • Flex (17)
  • JPA (17)
  • Eclipse (15)
  • Xebia Labs (15)
  • Quality Assurance (14)

Tag Cloud

    XML Ajax Testing Architecture Spring product owner IntelliJ Scala Scrum SOA Lean Maven Semantic Web Java Hibernate esb Performance Xebia Agile Awareness Workshop Introduction to Agile Groovy Seam Poppendieck Functional Programming fitnesse qcon Grails Closures Agile JavaOne