Mock Objects in PHPUnit to emulate Static Method Calls? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T22:29:28Zhttp://stackoverflow.com/feeds/question/344315http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/344315/mock-objects-in-phpunit-to-emulate-static-method-calls3Mock Objects in PHPUnit to emulate Static Method Calls?Sam McAfee2008-12-05T16:02:14Z2008-12-08T21:11:48Z
<p>I am trying to test a class that manages data access in the database (you know, CRUD, essentially). The DB library we're using happens to have an API wherein you first get the table object by a static call:</p>
<pre><code>function getFoo($id) {
$MyTableRepresentation = DB_DataObject::factory("mytable");
$MyTableRepresentation->get($id);
... do some stuff
return $somedata
}
</code></pre>
<p>...you get the idea.</p>
<p>We're trying to test this method, but mocking the DataObject stuff so that (a) we don't need an actual db connection for the test, and (b) we don't even need to include the DB_DataObject lib for the test.</p>
<p>However, in PHPUnit I can't seem to get $this->getMock() to appropriately set up a static call. I have...</p>
<pre><code> $DB_DataObject = $this->getMock('DB_DataObject', array('factory'));
</code></pre>
<p>...but the test still says unknown method "factory". I know it's creating the object, because before it said it couldn't find DB_DataObject. Now it can. But, no method?</p>
<p>What I really want to do is to have two mock objects, one for the table object returned as well. So, not only do I need to specify that factory is a static call, but also that it returns some specified other mock object that I've already set up.</p>
<p>I should mention as a caveat that I did this in SimpleTest a while ago (can't find the code) and it worked fine.</p>
<p>What gives?</p>
<p>[UPDATE]</p>
<p>I am starting to grasp that it has something to do with expects()</p>
http://stackoverflow.com/questions/344315/mock-objects-in-phpunit-to-emulate-static-method-calls/344452#3444521Answer by Ciaran McNulty for Mock Objects in PHPUnit to emulate Static Method Calls?Ciaran McNulty2008-12-05T16:44:22Z2008-12-05T16:44:22Z<p>This is a good example of a dependency in your code - the design has made it impossible to inject in a Mock rather than the real class.</p>
<p>My first suggestion would be to try and refactor the code to use an instance rather than a static call.</p>
http://stackoverflow.com/questions/344315/mock-objects-in-phpunit-to-emulate-static-method-calls/344531#3445310Answer by Eran Galperin for Mock Objects in PHPUnit to emulate Static Method Calls?Eran Galperin2008-12-05T17:04:42Z2008-12-05T17:09:52Z<p>What's missing (or not?) from your DB_DataObject class is a setter to pass a prepared db object before calling the factory method. That way you can pass a mock or a custom db object (with the same interface) should the need arise.</p>
<p>In your test setup:</p>
<pre><code> public function setUp() {
$mockDb = new MockDb();
DB_DataObject::setAdapter($mockDb);
}
</code></pre>
<p>The factory() method should return the mocked DB instance. If it's not already integrated into your class, you will probably have to refactor the factory() method as well to make it work.</p>
http://stackoverflow.com/questions/344315/mock-objects-in-phpunit-to-emulate-static-method-calls/346419#3464192Answer by Sam McAfee for Mock Objects in PHPUnit to emulate Static Method Calls?Sam McAfee2008-12-06T15:53:45Z2008-12-06T15:53:45Z<p>I agree with both of you that it would be better not to use a static call. However, I guess I forgot to mention that DB_DataObject is a third party library, and the static call is <em>their</em> best practice for their code usage, not ours. There are other ways to use their objects that involve constructing the returned object directly. It just leaves those darned include/require statements in whatever class file is using that DB_DO class. That sucks because the tests will break (or just not be isolated) if you're meanwhile trying to mock a class of the same name in your test--at least I think.</p>
http://stackoverflow.com/questions/344315/mock-objects-in-phpunit-to-emulate-static-method-calls/350909#3509090Answer by silfreed for Mock Objects in PHPUnit to emulate Static Method Calls?silfreed2008-12-08T21:11:48Z2008-12-08T21:11:48Z<p>Are you require/including the class file for DB_DataObject in your test case? If the class doesn't exist before PHPUnit tries to mock the object you can get errors like this.</p>