Unit testing Doctrine objects with PHPUnit - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T14:42:09Zhttp://stackoverflow.com/feeds/question/299255http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/299255/unit-testing-doctrine-objects-with-phpunit1Unit testing Doctrine objects with PHPUnitCiaran McNulty2008-11-18T16:24:39Z2009-05-12T13:32:10Z
<p>I'm starting to try and test my Doctrine objects with PHPUnit, and would like to reload the DB from my model objects afresh each time.</p>
<p>My first attempt looks something like this:</p>
<pre><code>class Tests_User extends PHPUnit_Framework_TestCase
{
public function setUp()
{
Doctrine_Manager::connection('mysql://user:pass@localhost/testdb');
Doctrine::createDatabases();
Doctrine::createTablesFromModels('../../application/models');
}
public function testSavingWorks()
{
$user = new User();
$user->save();
}
public function testSavingWorksAgain()
{
$user = new User();
$user->save();
}
public function tearDown()
{
Doctrine::dropDatabases();
}
}
</code></pre>
<p>The problem is that when setUp() is called again for the second test, createTablesFromModels() fails, so I get an error because none of the tables are present.</p>
<p>I'd really appreciate an example of how someone else has reinitialised a Doctrine connection for PHPUnit or other unit testing purposes.</p>
http://stackoverflow.com/questions/299255/unit-testing-doctrine-objects-with-phpunit/300161#3001611Answer by Ciaran McNulty for Unit testing Doctrine objects with PHPUnitCiaran McNulty2008-11-18T21:12:28Z2008-11-18T21:12:28Z<p>So it turns out that createTablesFromModels includes the files in and then compares the lists of defined classes before and after, which is why it's not working twice.</p>
<p>A sequence like the following works when repeated:</p>
<pre><code>Doctrine::loadModels($path);
Doctrine::createTablesFromArray(Doctrine::getLoadedModels());
</code></pre>
http://stackoverflow.com/questions/299255/unit-testing-doctrine-objects-with-phpunit/852813#8528130Answer by Matthew Lurz for Unit testing Doctrine objects with PHPUnitMatthew Lurz2009-05-12T13:32:10Z2009-05-12T13:32:10Z<p>In case you haven't found this already, Jani has posted an approach to help automate the setup/teardown process.</p>
<p><a href="http://codeutopia.net/blog/2008/08/27/database-helper-for-phpunit/" rel="nofollow">http://codeutopia.net/blog/2008/08/27/database-helper-for-phpunit/</a></p>