Database integration tests - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T09:56:37Z http://stackoverflow.com/feeds/question/61718 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/61718/database-integration-tests 4 Database integration tests Garry Shutler 2008-09-14T23:25:02Z 2008-09-18T18:26:40Z <p>When you are doing integration tests with either just your data access layer or the majority of the application stack. What is the best way prevent multiple tests from clashing with each other if they are run on the same database?</p> http://stackoverflow.com/questions/61718/database-integration-tests/61720#61720 7 Answer by Free Wildebeest for Database integration tests Free Wildebeest 2008-09-14T23:30:17Z 2008-09-14T23:30:17Z <p>For simple database applications I find using <a href="http://www.sqlite.org/" rel="nofollow">SQLite</a> invaluable. It allows you to have a unique and standalone database for each test.</p> <p>However it does only work if you're using simple generic SQL functionality or can easily hide the slight differences between SQLite and your production database system behind a class, but I've always found that to be fairly easy in the SQL applications I've developed.</p> http://stackoverflow.com/questions/61718/database-integration-tests/61721#61721 5 Answer by Orion Edwards for Database integration tests Orion Edwards 2008-09-14T23:33:14Z 2008-09-14T23:33:14Z <p>Transactions.</p> <p>What the ruby on rails unit test framework does is this:</p> <pre><code>Load all fixture data. For each test: BEGIN TRANSACTION # Yield control to user code ROLLBACK TRANSACTION End for each </code></pre> <p>This means that</p> <ol> <li>Any changes your test makes to the database won't affect other threads while it's in-progress</li> <li>The next test's data isn't polluted by prior tests</li> <li>This is about a zillion times faster than manually reloading data for each test.</li> </ol> <p>I for one think this is pretty cool</p> http://stackoverflow.com/questions/61718/database-integration-tests/61722#61722 0 Answer by Garry Shutler for Database integration tests Garry Shutler 2008-09-14T23:37:27Z 2008-09-14T23:37:27Z <p>I wanted to accept both Free Wildebeest's and Orion Edwards' answers but it would not let me. The reason I wanted to do this is that I'd come to the conclusion that these were the two main ways to do it, but which one to chose depends on the individual case (mostly the size of the database).</p> http://stackoverflow.com/questions/61718/database-integration-tests/61764#61764 0 Answer by Techboy for Database integration tests Techboy 2008-09-15T00:44:47Z 2008-09-15T00:44:47Z <p>Also run the tests at different times, so that they do not impact the performance or validity of each other.</p> http://stackoverflow.com/questions/61718/database-integration-tests/73274#73274 1 Answer by Bradley Harris for Database integration tests Bradley Harris 2008-09-16T14:58:45Z 2008-09-16T14:58:45Z <p>Just to add to Free Wildebeest's answer I have also used <a href="http://hsqldb.org/" rel="nofollow">HSQLDB</a> to do a similar type testing where each test gets a clean instance of the DB. </p> http://stackoverflow.com/questions/61718/database-integration-tests/95312#95312 0 Answer by Steven Turman for Database integration tests Steven Turman 2008-09-18T18:26:40Z 2008-09-18T18:26:40Z <p>While not as clever as the Rails unit test framework in one of the other answers here, creating distinct data per test or group of tests is another way of doing it. The level of tediousness with this solution depends on the number of test cases you have and how dependant they are on one another. The tediousness will hold true if you have one database per test or group of dependant tests.</p> <p>When running the test suite, you load the data at the start, run the test suite, unload/compare results making sure the actual result meets the expected result. If not, do the cycle again. Load, run suite, unload/compare.</p>