I'm just trying to add test cases for services accessing a MySQL DB, and I would like to recreate the whole schema (and for some scenarios also just use a MySQL dump file with the data needed for each test case). I was looking around and found some guys using SQLite / H2 and others to do this, but I'm just wandering if there is any way to run MySQL in-memory so I don't need to worry about anything specific to the the MySQL dialect I might be using on our services.
|
This is one of the reasons why using proprietary SQL extensions is usually not a good idea. What I would do is try to identify the places where you use non-standard SQL and refactor your code to move these parts to dedicated services. Then you can mock these when running unit tests. |
|||||||
|
|
Check this out: http://mysql-je.sourceforge.net/ |
|||||||
|
|
We use MySQL and flyway to handle the migration. For unit testing and simple integration tests we use H2 in memory database with the MODE=MySQL param. Mode=MySQL enables the H2 db to handle most of the MySQL dialect. Our test datasource in the Spring config is set up like this:
(If you don't know Spring - the XML translates into calling new BasicDataSource and then call setDriverClassName and setUrl on the instance created) Then we use flyway on the datasource to create the schema and read in like we would against a regular MySQL db:
You could also just use the dataSource bean in a jdbcTemplate and run some SQL scripts that way or run a number of MySQL scripts using the |
|||
|
|
|
try http://hsqldb.org/, I don't have experience with it, but heard good things. EDIT Sorry - seems like you would need to remove any MySQL specific syntax... |
|||
|
|
|
You can use a different schema for the JUnit tests. If you're using Spring, it's JUnit extensions allow each test to run in a read-only transaction, so no data will be persistent in the database after the tests. If you need initial data for the tests, you put the needed data in the |
|||
|
|
|
You may mount a ramdrive (using ImDisk), copy your datas files on it, and start Mysql services after changing the appropriate configuration in my.cnf Unit test databases being usually small (and you should keep them small for fast testing), they can normally fit in a ramdrive. You may also consider using transaction in your spring tests instead of rebuilding tables at each test. We used that for our dev team and it worked like a charm, we gained a order of magnitude in speed. |
|||
|
|