Unit testing Doctrine objects with PHPUnit - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T14:42:09Z http://stackoverflow.com/feeds/question/299255 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/299255/unit-testing-doctrine-objects-with-phpunit 1 Unit testing Doctrine objects with PHPUnit Ciaran McNulty 2008-11-18T16:24:39Z 2009-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-&gt;save(); } public function testSavingWorksAgain() { $user = new User(); $user-&gt;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#300161 1 Answer by Ciaran McNulty for Unit testing Doctrine objects with PHPUnit Ciaran McNulty 2008-11-18T21:12:28Z 2008-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#852813 0 Answer by Matthew Lurz for Unit testing Doctrine objects with PHPUnit Matthew Lurz 2009-05-12T13:32:10Z 2009-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>