hot questions tagged database-testing - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T06:44:00Zhttp://stackoverflow.com/feeds/tag?tagnames=database-testing&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1203758/dbunit-how-to-guard-against-multiple-tests-running-at-the-same-time0DbUnit how to guard against multiple tests running at the same time?rally25rs2009-07-30T00:07:36Z2009-07-30T00:46:24Z
<p>I am working on a test environment for a project, and am looking into using DbUnit.NET to do a lot of the database interaction testing. I do have one very big question though:</p>
<p>We are running against Oracle, and setting up a seperate test DB instance for every developer really isn't feasible (especially since we only have 1 DBA who is already strapped for time). This means that all developers and out Continuous Integration server all need to use the same DB schema.</p>
<p>So, on to the question: is there a good way to prevent more than 1 person from testing at the same time? It would be easy to put a record in a db table that indicates that a test is running, then remove it after tests are finished, but NUnit doesn't have any way to run something at test session start and end.</p>
<p>Any other thoughts? It seems like it should be a pretty common issue... or does everyone actually run separate DB instances for every developer/tester that might run the tests?</p>
http://stackoverflow.com/questions/61718/database-integration-tests4Database integration testsGarry Shutler2008-09-14T23:25:02Z2008-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/255942/can-i-flush-my-nhibernate-session-and-get-a-new-session-without-committing-the-tr2Can I flush my NHibernate session and get a new session without committing the transaction?Alex Scordellis2008-11-01T18:41:44Z2008-11-03T13:00:56Z
<p>I'm using Castle ActiveRecord for persistence, and I'm trying to write a base class for my persistence tests which will do the following:</p>
<ul>
<li>Open a transaction for each test case and roll it back at the end of the test case, so that I get a clean DB for each test case without me having to rebuild the schema for each test case.</li>
<li>Provide the ability to flush my NHibernate session and get a new one in the middle of a test, so that I know that my persistence operations have really hit the DB rather than just the NHibernate session.</li>
</ul>
<p>In order to prove that my base class (<code>ARTestBase</code>) is working, I've come up with the following sample tests.</p>
<pre><code>[TestFixture]
public class ARTestBaseTest : ARTestBase
{
[Test]
public void object_created_in_this_test_should_not_get_committed_to_db()
{
ActiveRecordMediator<Entity>.Save(new Entity {Name = "test"});
Assert.That(ActiveRecordMediator<Entity>.Count(), Is.EqualTo(1));
}
[Test]
public void object_created_in_previous_test_should_not_have_been_committed_to_db()
{
ActiveRecordMediator<Entity>.Save(new Entity {Name = "test"});
Assert.That(ActiveRecordMediator<Entity>.Count(), Is.EqualTo(1));
}
[Test]
public void calling_flush_should_make_nhibernate_retrieve_fresh_objects()
{
var savedEntity = new Entity {Name = "test"};
ActiveRecordMediator<Entity>.Save(savedEntity);
Flush();
// Could use FindOne, but then this test would fail if the transactions aren't being rolled back
foreach (var entity in ActiveRecordMediator<Entity>.FindAll())
{
Assert.That(entity, Is.Not.SameAs(savedEntity));
}
}
}
</code></pre>
<p>Here is my best effort at the base class. It correctly implements <code>Flush()</code>, so the third test case passes. However it does not rollback the transactions, so the second test fails.</p>
<pre><code>public class ARTestBase
{
private SessionScope sessionScope;
private TransactionScope transactionScope;
[TestFixtureSetUp]
public void InitialiseAR()
{
ActiveRecordStarter.ResetInitializationFlag();
ActiveRecordStarter.Initialize(typeof (Entity).Assembly, ActiveRecordSectionHandler.Instance);
ActiveRecordStarter.CreateSchema();
}
[SetUp]
public virtual void SetUp()
{
transactionScope = new TransactionScope(OnDispose.Rollback);
sessionScope = new SessionScope();
}
[TearDown]
public virtual void TearDown()
{
sessionScope.Dispose();
transactionScope.Dispose();
}
protected void Flush()
{
sessionScope.Dispose();
sessionScope = new SessionScope();
}
[TestFixtureTearDown]
public virtual void TestFixtureTearDown()
{
SQLiteProvider.ExplicitlyDestroyConnection();
}
}
</code></pre>
<p>Note that I'm using a custom SQLite provider with an in-memory database. My custom provider, taken from <a href="http://brian.genisio.org/2008/07/active-record-mock-framework.html" rel="nofollow">this blog post</a>, keeps the connection open at all times to maintain the schema. Removing this and using a regular SQL Server database doesn't change the behaviour.</p>
<p>Is there a way to acheive the required behaviour?</p>