Best way to create / drop a database before / after integration testing on a Maven/Junit/DBUnit project? Best way to create / drop a database before / after integration testing on a Maven/Junit/DBUnit project? database database

Best way to create / drop a database before / after integration testing on a Maven/Junit/DBUnit project?


I use the Maven SQL Plugin

You're much better off using it and making sure that you create and populate before your tests and then drop after your tests. You'll also want to use create or replace, or drop if exists in your creation script (assuming your database supports it) in the event that a test fails and leaves the database in some inconsistent state.


It took some fiddling around, but I got it to drop, create, and create the schema for H2 and MySQL. Still need to finish it for Oracle and SQL*Server 2008. I tucked the exact DROP and CREATE commands into properties and in some cases (such as H2) needed to skip the create database altogether. Here is what it looks like:

  <plugin>    <!-- Used to automatically drop (if any) and create a database prior to running integration test cases. -->    <groupId>org.codehaus.mojo</groupId>    <artifactId>sql-maven-plugin</artifactId>    <dependencies>      <dependency>        <!-- Adds the correct JDBC driver as a dependency of this plugin -->        <groupId>${database.groupId}</groupId>        <artifactId>${database.artifactId}</artifactId>        <version>${database.version}</version>      </dependency>    </dependencies>    <configuration>      <!-- common configuration shared by all executions -->      <driver>${database.class}</driver>      <username>${database.username}</username>      <password>${database.password}</password>      <url>${database.url}</url>    </configuration>    <executions>      <execution>        <!-- Start by dropping the database (we'll leave it intact when finished) -->        <id>drop-db</id>        <phase>pre-integration-test</phase>        <goals>          <goal>execute</goal>        </goals>        <configuration>          <!-- Can't use regular URL in case database doesn't exist -->          <url>${database.url.alternate}</url>          <skip>${database.sqlDrop.skip}</skip>          <autocommit>true</autocommit>          <sqlCommand>${database.sqlDrop};</sqlCommand>          <onError>continue</onError>        </configuration>      </execution>      <execution>        <!-- then create a new database -->        <id>create-db</id>        <phase>pre-integration-test</phase>        <goals>          <goal>execute</goal>        </goals>        <configuration>          <!-- Can't use regular URL in case database doesn't exist -->          <url>${database.url.alternate}</url>          <skip>${database.sqlCreate.skip}</skip>          <autocommit>true</autocommit>          <sqlCommand>${database.sqlCreate};</sqlCommand>          <onError>continue</onError>        </configuration>      </execution>      <execution>        <!-- and finally run the schema creation script we just made with the hibernate3-maven-plugin -->        <id>create-schema</id>        <phase>pre-integration-test</phase>        <goals>          <goal>execute</goal>        </goals>        <configuration>          <skip>${database.sqlSchema.skip}</skip>          <autocommit>true</autocommit>          <srcFiles>            <srcFile>target/hibernate3/sql/create-${database.vendor}-schema.sql</srcFile>          </srcFiles>          <onError>continue</onError>        </configuration>      </execution>    </executions>  </plugin>