<div>
                    Hi, 
                </div><div><br></div><div>I have been writing Unit Tests for classes and libraries under libraries/config/*. For isolation between different libraries, its preferred to mock certain functions. Since some of the code is functional, I tried to convert (for a start) libraries/config/validate.lib.php into a class with static methods.</div><div><br></div><div>However, the issue here is that mocking static methods is not really possible with PHPUnit and there are a few workarounds I came across and would like to know which one should we go for, or if there is anything better that can be done.</div><div><br></div><div>So, while the writer of PHPUnit specifies how to mock static methods here[0], its only possible if the static calls are to the same class.</div><div><br></div><div>For example, for testing FormDisplay::_validate, I need to mock PMA_config_validate. After I convert validate.lib.php to a class, say, PMA_Validator, I will have to mock PMA_Validator::config_validate, but the above solution won't work here (since PMA_Validator cannot be mocked). A workaround for this could be to pass the mocked static class as mentioned in [0] to the FormDisplay.class.php and make all static calls via that class.</div><div><br></div><div>For this, we could have something of this sort in the constructor of FormDisplay:</div><div><br></div><div>if (defined('TESTSUITE'))</div><div><span class="Apple-tab-span" style="white-space:pre">  </span>$this->validator = $GLOBALS['dummyValidator'] or $this->validator = <mockedClassPassedInTheArgument></div><div>else</div><div><span class="Apple-tab-span" style="white-space:pre">  </span>$this->validator = 'PMA_Validator'</div><div><br></div><div>and the calls can be made like:</div><div><br></div><div>$caller = $this->validator; // $this->validator::config_validate won't work</div><div>$caller:config_validate();</div><div><br></div><div>Another solution could be what is mentioned in a blog here[1]. The problem with this solution is that the file, FormDisplay.class.php would include and hence declare the PMA_Validator class before our test suite tries to (re)declare it by extending MockProxy class.</div><div><br></div><div>In either case, it looks like some sort of modification would be needed to test these classes.</div><div><br></div><div>Please advice.</div><div><br></div><div>[0] <a href="http://sebastian-bergmann.de/archives/883-Stubbing-and-Mocking-Static-Methods.html">http://sebastian-bergmann.de/archives/883-Stubbing-and-Mocking-Static-Methods.html</a></div><div>[1] <a href="http://www.deanspot.org/content/mocking-static-method-calls-phpunit">http://www.deanspot.org/content/mocking-static-method-calls-phpunit</a></div>
                <div><div><br></div><div>-- </div><div>Ayush Chaudhary</div><div><br></div></div>