unit testing of dynamic fixtures - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T02:57:16Zhttp://stackoverflow.com/feeds/question/37785http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/37785/unit-testing-of-dynamic-fixtures1unit testing of dynamic fixturesAlexander Morland2008-09-01T11:33:49Z2008-09-04T11:55:42Z
<p>Is it possible to have a fixture change between test methods? If so, how can I do this? </p>
<p>My syntax for this problem : </p>
<p>In the cakephp framework i am building tests for a behavior that is configured by adding fields to the table. This is intended to work in the same way that adding the "created"
and "modified" fields will auto-populate these fields on save.</p>
<p>To test this I <em>could</em> create dozens of fixtures/model combos to test the different setups, but it would be a hundred times better, faster and easier to just have the fixture change "shape" between test methods. </p>
<blockquote>
<p>If you are not familiar with the <a href="http://cakephp.org" rel="nofollow">CakePHP framework</a>, you can maybe still help me as it uses <a href="http://simletest.org" rel="nofollow">SimpleTest</a></p>
</blockquote>
<p><em>Edit: rephrased question to be more general</em></p>
http://stackoverflow.com/questions/37785/unit-testing-of-dynamic-fixtures/38825#388250Answer by Orion Edwards for unit testing of dynamic fixturesOrion Edwards2008-09-02T04:38:23Z2008-09-02T04:38:23Z<p>I'm not familiar specifically with CakePHP, but this kind of thing seems to happen anywhere with fixtures.</p>
<p>There is no built in way in rails at least for this to happen, and I imagine not in cakePHP or anywhere else either because the whole idea of a fixture, is that it is <strong>fixed</strong></p>
<p>There are 2 'decent' workarounds I'm aware of</p>
<ul>
<li><p>Write a <code>changefixture</code> method, and just before you do your asserts/etc, run it with the parameters of what to change. It should go and update the database or whatever needs to be done.</p></li>
<li><p>Don't use fixtures at all, and use some kind of object factory or object generator to create your objects each time</p></li>
</ul>
http://stackoverflow.com/questions/37785/unit-testing-of-dynamic-fixtures/43561#435610Answer by Alexander Morland for unit testing of dynamic fixturesAlexander Morland2008-09-04T11:55:42Z2008-09-04T11:55:42Z<p>This is not an answer to my quetion, but a solution to my issue example.</p>
<p>Instead of using multiple fixtures or changing the fixtures, I edit the Model::_schema arrays by removing the fields that I wanted to test without. This has the effect that the model acts as if the fields was not there, but I am unsure if this is a 100% test. I do not think it is for all cases, but it works for my example.</p>