views:

828

answers:

4

I gonna write several intergration tests which will test interatcion with db. For each test I need to have a certain snapshot of db. Each db snapshot saved in .sql file. What I want is to execute certain script file in certain test method, like this:

@Test
public void test_stuff(){
   executeScript(finame.sql);

   ... testing logic ...

   clean_database();
}

Does hibernate has some means to do this?

A: 

You can get hold of the underlying JDBC connection via the hibernate session instance:

https://www.hibernate.org/hib_docs/v3/api/org/hibernate/Session.html#connection()

So you could write your executeScript() method to take the filename and a hibernate session and read the file and execute the sql on the jdbc connection.

HTH

simonlord
+1  A: 
  • You can automatically execute SQL script at startup of hibernate: write your SQL commands in a file called import.sql and put it in the root of the CLASSPATH.

  • You don't need to clean your database for your test, just make your test as transactional with rollback at the end of each test. Hence, you are sure your database is not contaminated by your tests. For instance, using Spring:

    @Transactional public class MyTest { ... }

If you don't use Spring, try a test framework with default-rollback transaction support.

Kartoch
Rod Johnson talks about using transactions and rollback for doing integration testing:http://www.infoq.com/presentations/system-integration-testing-with-springYou can skip to the 30 minute mark if you're already familiar with the reasons for testing.
0sumgain
Interesting but a bit old: the author speask about testing with AbstractTransactionnal... test classe, which is now deprecated in spring 3.0.0 in Favor of @Transactionnal annotation (and it's a much better way).
Kartoch
A: 

Have you heard of Hypersonic SQL? It's an in-memory database where all your tables reside in the memory, then do your test (with Read, update, insert, delete), finally when you close, all data is gone. Read more at: http://www.hsqldb.org/

A: 

The topic of deprecated Session.connection() method: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2603

Rots
I'm sorry but... how is this relevant to the question?
Pascal Thivent
When trying to retrieve JDBC connection to execute your sql script, the first thing you'll notice is that the method is deprecated, but there's not alternative recommended way to retrieve it.
Rots