active questions tagged phpunit - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T15:01:20Zhttp://stackoverflow.com/feeds/tag/phpunithttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/10228/run-phpunit-tests-in-certain-order0Run PHPUnit Tests in Certain Orderdragonmantank2008-08-13T19:02:23Z2009-12-16T14:46:13Z
<p>Is there a way to get the tests inside of a TestCase to run in a certain order? For example, I want to seperate the lifecycle of an object from creation to use to destruction but need to make sure that the object is set up first before I run the other tests.</p>
http://stackoverflow.com/questions/1899802/phpunit-config-options0phpUnit config optionsiceangel892009-12-14T09:09:29Z2009-12-15T09:20:29Z
<p>what do the following options mean or whats it for</p>
<pre><code><log type="coverage-html" target="./log/report" charset="UTF-8" yui="true" highlight="true"
lowUpperBound="50" highLowerBound="80"/>
</code></pre>
<ul>
<li>yui: i guess it means use stuff from yahoo ui to make it look good?</li>
<li>highlight: maybe have some colors?</li>
<li>lowUpperBound, highLowerbound: whats these? </li>
</ul>
http://stackoverflow.com/questions/1896766/phpunit-exception-testing-error-message-messes-up-results-output0PHPUnit Exception testing, error message messes up results outputEdward2009-12-13T15:05:05Z2009-12-14T00:07:46Z
<p>Hi, my question regarding phpunit for testing exceptions using the command line tool. I can't seem to correctly do this, the error message of the exception just prints out, making the command line window harder to read. Below is how my code is structured and the test code.</p>
<pre><code>public function availableFruits($fruit)
{
switch($fruit) {
case 'foo':
// all good
break;
case 'bar':
// all good
break;
default:
throw new Exception($fruit.' not available!');
break;
}
}
public function chooseFruit($fruit)
{
try {
availableFruits($fruit);
} catch (Exception $e) {
echo $e->getMessage();
}
}
public function testAvailableFruits()
{
$this->setExpectedException('Exception');
chooseFruit('Kiwi');
}
</code></pre>
<p>The error message will print out in the command line window like below. I tried all the methods shown in phpunit.de but same results.</p>
<pre><code>..Error on line 13 in c:\file\path\fruits.php: Kiwi not available!.F
</code></pre>
<p>The error line prints out, how do I suppress that, am I doing it right at all?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1881027/xdebugging-phpunit-testcases-in-eclipse-pdt0XDebugging PHPUnit testcases in Eclipse PDTFlavius2009-12-10T13:38:07Z2009-12-11T19:03:10Z
<p>Until now, I was debugging my PHP scripts and testcases using vim and the appropiate <a href="http://www.vim.org/scripts/script.php?script%5Fid=1929" rel="nofollow">script</a> with python backing it. However, me and my colleagues need to move forward and vim/gvim is not an option for them.</p>
<p>So I've tried to integrate debugging <a href="http://pkp.sfu.ca/wiki/index.php/Configure%5FEclipse%5Ffor%5FPHPUnit#Configure%5FPHPUnit%5Fas%5Fan%5FExternal%5FTool" rel="nofollow">PHPUnit in Eclipse</a> on my setup as an external tool, which again, works with vim. However, it simply waits for something when I</p>
<ol>
<li>Launch the new external tool, then</li>
<li>start debugging as a CLI script</li>
</ol>
<p>Remote debugging is enabled, the environment variable XDEBUG_CONFIG="idekey=ECLIPSE_DBGP_127.0.0.1" is also set.</p>
<p>Any ideas?</p>
<p><strong>Addendum</strong></p>
<p>Running the testsuite <a href="http://www.phpunit.de/wiki/Eclipse" rel="nofollow">works</a>. Debugging a web page works. Debugging <strong>a given test</strong> doesn't.</p>
<p>Eclipse waits forever for something at 57% when trying to debug a phpunit test. I'd like to provide more information, but it doesn't tell me more either.</p>
http://stackoverflow.com/questions/1885887/phpunit-xml-file-phpunit-xml0phpunit xml file (phpunit.xml)iceangel892009-12-11T05:06:22Z2009-12-11T05:24:40Z
<p>i am picking up phpunit. i am at the phpunit.xml file. </p>
<p>i want to understand what does each element do. </p>
<pre><code><testsuite name="application">
<directory>application</directory>
</testsuite>
</code></pre>
<p>the directory refers to the dir containing all the *Test.php files? </p>
<pre><code><filter>
<whitelist>
<directory suffix=".php">../application</directory>
<exclude>
<directory suffix=".php">../library</directory>
<directory suffix=".phtml">../application</directory>
<file>../application/bootstrap.php</file>
<file>../application/scripts/doctrine.php</file>
</exclude>
</whitelist>
</filter>
</code></pre>
<p>whilelist refers to the application files (not test.php) that are supposed to be covered? so in this example, i am saying i want all php files in ../application to be covered, except php files in ../library, phtml files in ../application, and the bootstrap.php and doctrine.php? </p>
http://stackoverflow.com/questions/1884326/phpunit-command-line-variable-on-windows-giving-trouble0PHPunit command line variable on windows giving troubleWebDevHobo2009-12-10T21:54:11Z2009-12-10T22:01:50Z
<p>I installed PHPunit via the commandline and added it to my path variables.<br>I then tried to see if it will run, but I got a weird error.
<img src="http://i.imgur.com/TmHJx.png" alt="CMD screen"></p>
<p>Must be something in some file that I didn't configure correctly, but there are over 800 lines in all the PHPUnit folder that reference to that folder, so I'm at a loss as to which one it is. Most will be for PHP scripts instead of the commandline, but I'm not sure where to look.</p>
<p>This is the variable. This file actually exists, just phpunit and no extension.
<img src="http://i.imgur.com/QvPL6.png" alt="variable path"></p>
<p>The contents(left out the comments):</p>
<pre><code>#!c:\wamp\bin\php\php5.3.1\php.exe
<?php
//whole lot of comments...
if (strpos('c:\wamp\bin\php\php5.3.1\php.exe', '@php_bin') === 0) {
set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path());
}
require_once 'PEAR/PHPUnit/Util/Filter.php';
PHPUnit_Util_Filter::addFileToFilter(__FILE__, 'PHPUNIT');
require 'PEAR/PHPUnit/TextUI/Command.php';
define('PHPUnit_MAIN_METHOD', 'PHPUnit_TextUI_Command::main');
PHPUnit_TextUI_Command::main();
?>
</code></pre>
<p>The relative paths are correct, since the phpunit file is located in the php-map and PEAR is the submap containing all installed PEAR packages.</p>
http://stackoverflow.com/questions/1855362/windows-netbeans-with-phpunit-not-working0Windows Netbeans with PHPunit, not workingWebDevHobo2009-12-06T13:12:45Z2009-12-10T13:07:30Z
<p>I ran into this question: <a href="http://stackoverflow.com/questions/1552130">http://stackoverflow.com/questions/1552130</a></p>
<p>But applying the fix mentioned there does not work. Netbeans keeps saying the version of PHPUnit is too old and that I need at least 3.3.0, while I am using 3.3.9.</p>
<p>Screenschots:
<img src="http://i637.photobucket.com/albums/uu91/Vordreller/2009-12-06%5F140033.png" alt="PHP Panel overview">
<img src="http://i637.photobucket.com/albums/uu91/Vordreller/2009-12-06%5F140101.png" alt="Error"></p>
<p>I haven't editted anything about the files, I just downloaded the tgz, unzipped it all and put up the link.</p>
http://stackoverflow.com/questions/1868260/unit-tests-for-screen-scraping4unit tests for screen-scraping?Chris2009-12-08T16:48:13Z2009-12-08T19:41:14Z
<p>I'm new to unit testing so I'd like to get the opinion of some who are a little more clued-in.</p>
<p>I need to write some screen-scraping code shortly. The target system is a web ui where there'll be copious HTML parsing and similar volatile goodness involved. I'll never be notified of any changes by the target system (e.g. they put a redesign on their site or otherwise change functionality). So I anticipate my code breaking regularly.</p>
<p>So I think my real question is, how much, if any, of my unit testing should worry about or deal with the interface (the website I'm scraping) changing?</p>
<p>I think unit tests or not, I'm going to need to test heavily at runtime since I need to ensure the data I'm consuming is pristine. Even if I ran unit tests prior to every run, the web UI could still change between tests and runtime.</p>
<p>So do I focus on in-code testing and exception handling? Does that mean to draw a line in the sand and exclude this kind of testing from unit tests altogether?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/190292/phpunit-unit-testing-with-items-that-need-to-send-headers2PHPUnit - Unit Testing with items that need to send headersMez2008-10-10T06:01:46Z2009-12-04T09:53:37Z
<p>I'm currently working with PHPUnit to try and develop tests alongside what I'm writing, however, I'm currently working on writing the Session Manager, and am having issues doing so...</p>
<p>The constructor for the Session handling class is</p>
<pre><code>private function __construct()
{
if (!headers_sent())
{
session_start();
self::$session_id = session_id();
}
}
</code></pre>
<p>However, as PHPUnit sends out text before it starts the testing, any testing on this Object returns a failed test, as the HTTP "Headers" have been sent...</p>
http://stackoverflow.com/questions/1729091/unit-test-a-method-that-creates-an-object0unit test a method that creates an objectDave2009-11-13T13:01:37Z2009-12-03T05:21:02Z
<p>I'm trying to get my head round <strong>Unit Testing</strong> and there's one more piece of the jigsaw I need to find.</p>
<p>What I'm trying to do is write tests for the following code. In this case, I've got a really simple Front Controller (written in PHP).</p>
<pre><code>class frontController
{
public function routeRequest($oRequest)
{
$sClassname = $oRequest->getController();
$sMethod = $oRequest->getAction();
$oController = new $sClassname();
$oResponse = $oController->{$sMethod}($oRequest);
return $oResponse;
}
}
</code></pre>
<p>The problem I have is because the code <em>creates new objects</em>. I can easily <strong>mock</strong> the request object so that I can tightly control what it will actually do within my test case. I'm not sure the best way to actually replace the <em>controller</em> with a test double.</p>
<p><a href="http://www.ibm.com/developerworks/library/j-mocktest.html" rel="nofollow">This article from IBM</a> suggests having a factory method for creating my controller and then overriding this with a <em>specific</em> class used for testing:</p>
<pre><code>class frontController
{
public function routeRequest($oRequest)
{
$sMethod = $oRequest->getAction();
$oController = $this->createController($oRequest);
$oResponse = $oController->{$sMethod}($oRequest);
return $oResponse;
}
protected function createController($oRequest)
{
$sClassname = $oRequest->getController();
return new $sClassname();
}
}
</code></pre>
<p>and then for testing perhaps something like this:</p>
<pre><code>class testFrontController extends frontController
{
public function setMockController($oMockController)
{
$this->oMc = $oMockController;
}
protected function createController($oRequest)
{
return $this->oMockController;
}
}
</code></pre>
<p>(note this isn't quite what the article says, but I'm thinking it would be most useful to me if it did this)</p>
<p>Another solution could be to have another class that creates the controller. This would then be a dependent class of the frontController. This way I can replace the factory/creation class during testing with a test double. Something like this:</p>
<pre><code>class frontController
{
public function routeRequest($oRequest, $oControllerFactory)
{
$sMethod = $oRequest->getAction();
$oController = $oControllerFactory->create($oRequest);
$oResponse = $oController->{$sMethod}($oRequest);
return $oResponse;
}
}
class controllerFactory
{
public function create($oRequest)
{
$sClassname = $oRequest->getController();
return new $sClassname();
}
}
</code></pre>
<p>I guess the dependency injection could be taken care of in the front controller constructor or via a setter instead of a parameter to the actual "route" method.</p>
<p>I think I prefer option 2.</p>
<p><strong>Is either of these two methods the right way of going about testing this kind of thing?</strong></p>
<p><em>(perhaps "good way" would be better word here!)</em></p>
<p>Any thoughts or suggestions on option 1 vs option 2 appreciated or indeed any alternatives. Remember - the key thing is about how to <strong>test an object that itself creates other objects</strong> as part of its execution.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/966673/eclipse-pdt-phpunit5Eclipse PDT & PHPUnit ??Gerard2009-06-08T19:54:31Z2009-12-02T10:55:48Z
<p>Is there any integration of PHPUnit with Eclipse PDT? </p>
<p>If not, are there any plans to do so?</p>
http://stackoverflow.com/questions/1822205/dynamically-create-phpunit-tests-from-data-file0Dynamically create PHPUnit tests from data-fileKent2009-11-30T20:25:13Z2009-12-01T07:18:56Z
<p>I have a data file with input and expected outputs. An example could be:</p>
<pre><code>input: output:
2 3
3 5
4 Exception
5 8
... ...
</code></pre>
<p>Currently I have a custom solution to read from the data file and perform a test for each {input,output} pair. I would like to convert this into a PHPUnit based solution and I would like to have one test per input using the test name <em>forXassertY</em>. So the first three tests would be called for2assert3(), for3assert5() and for4assertException().</p>
<p>I do not want to convert my existing data to tests if it's possible to create the test methods dynamically and keep the data file as the basis of these tests. I want to convert it to PHPUnit as I want to add some other tests later on and also process and view the output using Hudson.</p>
<p>Suggestions?</p>
http://stackoverflow.com/questions/1819483/php-unit-testing2PHP Unit testingAlSayed Gamal2009-11-30T12:18:42Z2009-11-30T12:49:23Z
<p>Is there any EASY php testing Framework and may be simpler than simpletest and not command line based like PHPUnit ?</p>
http://stackoverflow.com/questions/545282/testing-objects-with-dependencies-in-phpunit1Testing objects with dependencies in PHPUnitDavidWinterbottom2009-02-13T09:12:43Z2009-11-30T09:00:09Z
<p>For objects which compose another object as part of their implementation, what's the best way to write the unit test so only the principle object gets tested? Trivial example:</p>
<pre><code>class myObj {
public function doSomethingWhichIsLogged()
{
// ...
$logger = new logger('/tmp/log.txt');
$logger->info('some message');
// ...
}
}
</code></pre>
<p>I know that the object could be designed so that the logger object dependency could be injected and hence mocked in a unit test, but that's not always the case - in more complicated scenarios, you do need to compose other objects or make calls to static methods.</p>
<p>As we don't want to test the logger object, only the myObj, how do we proceed? Do we create a stubbed "double" with the test script? Something like:</p>
<pre><code>class logger
{
public function __construct($filepath) {}
public function info($message) {}
}
class TestMyObj extends PHPUnit_Framework_TestCase
{
// ...
}
</code></pre>
<p>This seems feasible for small objects but would be a pain for more complicated APIs where the SUT depended on the return values. Also, what if you want to test the calls to the dependency object in the same was you can with mock objects? Is there a way of mocking objects which are instantiated by the SUT rather than being passed in?</p>
<p>I've read the man page on mocks but it doesn't seem to cover this situation where the dependency is composed rather than aggregated. How do you do it?</p>
http://stackoverflow.com/questions/1808148/unit-testing-phpunit-how-to-login0Unit Testing (PHPUnit): how to login?david parloir2009-11-27T11:12:05Z2009-11-27T12:14:42Z
<p>hi there,
I'm writing tests for my current project, made with Zend Framework.
Everything fine, but I have a problem testing the logged users actions/controllers: I need to be logged in to be able to perform the action/controller.
So my question is: How can I be logged in in PHPUnit?
thans for reading :)</p>
http://stackoverflow.com/questions/1798353/determine-the-http-status-that-will-be-sent-in-php0determine the http status that will be sent in phpmagicrobotmonkey2009-11-25T16:56:34Z2009-11-26T13:04:57Z
<p>I am trying to write a test case for a class that is managing headers for my application. Among the headers it sends are http status headers. I am using headers_list() to see which headers would be send, were I to send headers now. The problem with headers_list() is that it does not include the http status header (although this seems to be undocumented on php.net). So, I cannot find a way to determine what http status would be sent. Even if I do send the headers (which I'm trying not to do, so I can test a bunch of different things all in one go), the status does not show up in headers_list(). Any ideas? </p>
<p>P.S. I realize I could do this by requesting the page and examining the response, but that makes it very difficult to keep tests at a <em>unit</em> level, so I'm trying to avoid it.</p>
http://stackoverflow.com/questions/1568735/zendtool-cli-issues-throwing-fatal-errors2Zend_Tool CLI issues, throwing fatal errorsAndrew2009-10-14T20:20:24Z2009-11-21T00:45:30Z
<p>Before installing PHPUnit on my Ubuntu machine, I thought I had zf.sh all set up correctly. I was able to create a new project without any issues. Now, since installing PHPUnit, everything is not working right.</p>
<p>When I try to create a test project, I get this:</p>
<pre><code>Fatal error: Cannot redeclare class PHPUnit_Framework_TestSuite_DataProvider in /usr/share/php/PHPUnit/Framework/TestSuite/DataProvider.php on line 64
Call Stack:
0.0011 110200 1. {main}() /opt/ZendFramework/ZendFramework-1.9.3PL1-minimal/bin/zf.php:0
0.0011 110320 2. zf_main() /opt/ZendFramework/ZendFramework-1.9.3PL1-minimal/bin/zf.php:23
0.0113 685448 3. zf_run() /opt/ZendFramework/ZendFramework-1.9.3PL1-minimal/bin/zf.php:36
0.0113 685568 4. Zend_Tool_Framework_Client_Console::main() /opt/ZendFramework/ZendFramework-1.9.3PL1-minimal/bin/zf.php:214
0.0114 686044 5. Zend_Tool_Framework_Client_Abstract->dispatch() /opt/ZendFramework/ZendFramework-1.9.3PL1-minimal/library/Zend/Tool/Framework/Client/Console.php:96
0.0114 686164 6. Zend_Tool_Framework_Client_Abstract->initialize() /opt/ZendFramework/ZendFramework-1.9.3PL1-minimal/library/Zend/Tool/Framework/Client/Abstract.php:209
0.0152 866128 7. Zend_Tool_Framework_Loader_Abstract->load() /opt/ZendFramework/ZendFramework-1.9.3PL1-minimal/library/Zend/Tool/Framework/Client/Abstract.php:118
0.4374 2729116 8. include_once('/usr/share/php/PHPUnit/Framework/TestSuite/DataProvider.php') /opt/ZendFramework/ZendFramework-1.9.3PL1-minimal/library/Zend/Tool/Framework/Loader/Abstract.php:90
</code></pre>
<p>What do I need to do to get it working again?</p>
<p><strong>Update:</strong> I think I understand the reason why this is happening. In PHPUnit 3.4.0 there is a class with the same name as the Zend Framework 1.9.3. <a href="http://framework.zend.com/issues/browse/ZF-7894" rel="nofollow">Apparently it is a known issue</a>. But how can I get around this so I can use Zend_Tool again?? Can I downgrade PHPUnit? Will that fix the problem?</p>
<p><strong>Update:</strong> <a href="http://www.nexik.net/zf-for-total-beginners/apache-zendframework-and-phpunit/" rel="nofollow">This tutorial</a> mentions something about installing a diff patch.</p>
http://stackoverflow.com/questions/1758773/how-to-test-my-forms-in-zend-framework-1-80How to test my forms in Zend Framework 1.8+?Andrew2009-11-18T20:18:30Z2009-11-18T20:24:20Z
<p>So I've set up testing in my ZF 1.9.5 application thanks to <a href="http://www.zendcasts.com/unit-testing-with-the-zend-framework-with-zend%5Ftest-and-phpunit/2009/06/" rel="nofollow">this tutorial</a>, I am able to test my controllers, now I want to create a test for a form. However, I'm having the problem that PHPUnit can't find my form. </p>
<pre><code>Fatal error: Class 'Default_Form_AccountProfile' not found
</code></pre>
<p>I'm extending <code>PHPUnit_Framework_TestCase</code> instead of <code>Zend_Test_PHPUnit_ControllerTestCase</code> since it is not a controller. Is that the right thing to do? Here is my test: </p>
<pre><code><?php
class AccountProfileTest extends PHPUnit_Framework_TestCase
{
public function testPopulate()
{
$form = new Default_Form_AccountProfile();
$user = array(
'firstName' => 'Joe',
'lastName' => 'Schmoe'
);
$form->populate($user);
$this->assertEquals($form->getElement('firstName')->getValue(), 'Joe');
$this->assertEquals($form->getElement('lastName')->getValue(), 'Schmoe');
}
}
</code></pre>
<p>What am I doing wrong? What would be the correct way to test a form in Zend Framework?</p>
http://stackoverflow.com/questions/1637790/debug-some-phpunit-tests-in-eclipse0Debug some PhpUnit tests in EclipseMessaoud2009-10-28T14:55:01Z2009-11-18T10:22:24Z
<p>Hello,
I use Eclipse PDT for PHP.
I can run my PhpUnit tests : works fine.</p>
<p>But I can not debug my unit tests.
Has someby already done this ?
Can somebody help doing this ? </p>
<p>Thanx,
Messaoud</p>
http://stackoverflow.com/questions/34312/simple-test-vs-phpunit7Simple test vs PHPunitpaan2008-08-29T10:08:06Z2009-11-18T03:34:05Z
<p>I was wondering if anyone that have experience in both these stuff can shed some light on the <em>significant</em> difference between the two, if any?</p>
<p>Any specific strength of each that makes it suitable for any specific case?</p>
http://stackoverflow.com/questions/1742623/testing-static-classes-with-phpunit0Testing static classes with PHPUnitMike2009-11-16T14:49:25Z2009-11-16T15:04:44Z
<p>Hi,</p>
<p>I've got a set of classes I'm trying to test. Class A depends on Class X. Class X contains functions which do random things and things with databases. I've created a mock version of Class X which returns exactly what I want it to in order to test Class A without dependencies.</p>
<p>So, my question is, how do I now test Class X as I've already included the mock version, which has the same name and filename. I get the "Cannot redeclare Class X" error.</p>
<p>I don't think I can use stubs as there's no way to pass the stubbed object into my class under test. The class under test (Class A) will ask for an instance of a static class (ClassA::getInstance();).</p>
<p>Is this going to be something to do with test suites or test cases as I can't un-include a the file which contains the mock version of Class X.</p>
<p>Thanks in advance for your help,</p>
<p>Mike</p>
http://stackoverflow.com/questions/1552130/how-do-i-fix-my-netbeans-phpunit-integration3How do I fix my NetBeans + PHPUnit integration?Palo Verde2009-10-11T23:54:40Z2009-11-16T12:40:11Z
<p>On NetBeans 6.7.1 with PHPUnit 3.4.1, If I try and run the test I setup in NetBeans it errors out and can't execute the test, here is the output:</p>
<pre><code>PHPUnit 3.4.1 by Sebastian Bergmann.
The --log-xml option is deprecated, please use --log-junit instead.
Argument #1 of PHPUnit_Util_Fileloader:checkAndLoad() is no existing file
</code></pre>
<p>The test runs fine if I run it from the command line, just not from inside NetBeans.</p>
<p>This is the same error you get if you pass a bad path or file to the phpunit tool.
And NetBeans is passing a depreciated flag too..</p>
<p>So my question, is there a setting somewhere that I can fix this?
Does this work in NetBeans 6.8M2?</p>
<p>Thanks,</p>
<p>-Sam</p>
http://stackoverflow.com/questions/1707534/running-unit-tests-on-both-windows-and-linux1Running unit tests on both windows and linuxPeter Lindqvist2009-11-10T12:16:34Z2009-11-13T10:11:51Z
<p>Is there a way, a method, to be able to effectively run unit tests (<a href="http://www.phpunit.de/" rel="nofollow">phpunit</a>) on both linux and windows?</p>
<p>I need to do this because some parts of the system is only available under linux, but i do want to be able to run certain parts of the test suite in my IDE, which is <a href="http://www.netbeans.org" rel="nofollow">netbeans</a> by the way.</p>
<p>The problems i run into have to do with paths most of the time. To complicate things more i also intend to run the tests from within <a href="http://phing.info/trac/" rel="nofollow">phing</a>.</p>
<p>But the thing i haven't adressed yet is the ability to tailor different testsuites for different platforms. Is this even possible?</p>
<p>Tests are basically living inside the test directory and source is within src. The includepaths are handled by an included file. Would it be possible to use an autoloader to handle different directory structure?</p>
http://stackoverflow.com/questions/1726608/configuring-multiple-methods-in-phpunit-mock-objects0Configuring multiple methods in PHPUnit mock objectsTR2009-11-13T01:37:28Z2009-11-13T03:12:00Z
<p>I am trying to create a mock object in PHP and PHPUnit. So far, I have this:</p>
<pre><code>$object = $this->getMock('object',
array('set_properties',
'get_events'),
array(),
'object_test',
null);
$object
->expects($this->once())
->method('get_events')
->will($this->returnValue(array()));
$mo = new multiple_object($object);
</code></pre>
<p>Ignoring my hideously ambiguous object names for the minute, I understand that what I've done is<br>
- Created a mock object, with 2 methods to configure,<br>
- Configured the 'get_events' method to return a blank array, and<br>
- Dropped the mock into the constructor. </p>
<p>What I'd like to do now is configure the second method, but I can't find anything explaining how to do that. I want to do something like</p>
<pre><code>$object
->expects($this->once())
->method('get_events')
->will($this->returnValue(array()))
->expects($this->once())
->method('set_properties')
->with($this->equalTo(array()))
</code></pre>
<p>or some such, but that doesn't work. How should I do that?</p>
<p>Tangentially, does this indicate I've structured my code poorly, if I need to configured more than one method to test?</p>
http://stackoverflow.com/questions/1700311/write-test-results-data-to-a-test-database-in-phpunit-3-4-release0Write test results data to a Test Database in PHPUnit 3.4 releasehkshambesh2009-11-09T10:50:14Z2009-11-09T10:50:14Z
<p>I understand that the database log feature is supported in 3.3 version and not released in 3.4 is there any way I can use the database feature in 3.4</p>
http://stackoverflow.com/questions/1700089/a-list-of-great-tools-that-supports-continuous-integration-as-an-automated-proces-1a LIST of great tools that supports Continuous Integration as an automated process.hkshambesh2009-11-09T10:01:14Z2009-11-09T10:01:14Z
<p>If anyone can help and provide me with the best possible out-source on-line tools for CI. I have looked at PHPUnderControl+PHPUnit+SeleniumRC is there a better tool then this.</p>
http://stackoverflow.com/questions/518083/how-might-i-integrate-phpunit-with-hudson-ci1How might I integrate phpunit with Hudson CI?mrooney2009-02-05T21:41:54Z2009-11-05T19:47:13Z
<p>Hello! We are looking at switching from phpundercontrol to Hudson (it looks to have some really cool features!) but I can't figure out how to get phpunit logs to show up.</p>
<p>I have phpunit running fine in Hudson with ant, and --log-xml is putting a phpunit.xml in the appropriate builds/ folder for that build. But I can't figure out how to get that to show up for the build, so that we can see the tests the ran and which failed, if any.</p>
<p>After I figure that out, getting coverage, metrics, and api will be next :)</p>
<p>It seems like it should be trivial for anything which generates its on HTML, to tell Hudson for example "For this project show a link to 'API' for each build and link to builds/$BUILDNUM/api/index.html".</p>
http://stackoverflow.com/questions/1680641/phpunit-testing-if-a-protected-method-was-called1PHPUnit: Testing if a protected method was calledLuiz Damim2009-11-05T13:36:43Z2009-11-05T15:22:55Z
<p>I´m trying to test if a protected method is called in a public interface.</p>
<pre><code><?php
abstract class SomeClassAbstract
{
abstract public foo();
public function doStuff()
{
$this->_protectedMethod();
}
protected function _protectedMethod();
{
// implementation is irrelevant
}
}
<?php
class MyTest extends PHPUnit_Framework_TestCase
{
public function testCalled()
{
$mock = $this->getMockForAbstractClass('SomeClass');
$mock->expects($this->once())
->method('_protectedMethod');
$mock->doStuff();
}
}
</code></pre>
<p>I know it is called correctly, but PHPUnit says its never called.</p>
<p>The same happens when I test the other way, when a method is <strong>never</strong> called:</p>
<pre><code><?php
abstract class AnotherClassAbstract
{
abstract public foo();
public function doAnotherStuff()
{
$this->_loadCache();
}
protected function _loadCache();
{
// implementation is irrelevant
}
}
<?php
class MyTest extends PHPUnit_Framework_TestCase
{
public function testCalled()
{
$mock = $this->getMockForAbstractClass('AnotherClass');
$mock->expects($this->once())
->method('_loadCache');
$mock->doAnotherStuff();
}
}
</code></pre>
<p>The method is called but PHPUnit says that it is not.</p>
<p>What I´m doing wrong?</p>
<p><strong>Edit</strong>
I wasn´t declaring my methods with double colons, it was just for denoting that it was a public method (interface). Updated to full class/methods declarations.</p>
<p><strong>Edit 2</strong>
I should have said that I´m testing some method implementations in an abstract class (edited the code to reflect this). Since I can not instantiate the class, how can I test this?</p>
<p>I´m thinking in creating an <code>SomeClassSimple</code> extending <code>SomeClassAbstract</code> and testing this one instead. Is it the right approach?</p>
http://stackoverflow.com/questions/1673112/how-does-one-configure-phpunit-to-log-to-the-test-database0How does one configure PHPUnit to log to the test database?Jake Worrell2009-11-04T11:08:39Z2009-11-04T11:31:06Z
<p>Hi All</p>
<p>I am trying to work out how to configure PHPUnit to use the "test database" that is described on this wiki page: <a href="http://www.phpunit.de/wiki/TestDatabase" rel="nofollow">http://www.phpunit.de/wiki/TestDatabase</a> However I can't find any documentation on how to enable and configure it.</p>
<p>Has Anyone got any ideas?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1662608/cruisecontrol-build-failed-exec-returned-255-after-compiled-phpunit-tests0Cruisecontrol, build failed exec returned: 255 after compiled phpunit tests?hkshambesh2009-11-02T17:32:35Z2009-11-02T17:32:35Z
<p>here is my build.xml code:
</p>
<pre><code> <target name="checkout">
<exec executable="svn" dir="${basedir}/source">
<arg line="up" />
</exec>
</target>
<target name="php-documentor">
<exec executable="phpdoc" dir="${basedir}/source" logerror="on">
<arg line="-ct type -ue on -t ${basedir}/build/api
-tb /usr/share/php/data/phpUnderControl/data/phpdoc
-o HTML:Phpuc:phpuc
-d ${basedir}/source/trunk/application/modules
-i *.phtml,*/views/scripts/*,*/html/* "/>
</exec>
</target>
<target name="phpunit">
<exec executable="phpunit" dir="${basedir}/source/tests" failonerror="true">
<arg line="--log-xml ${basedir}/build/logs/phpunit.xml
--log-pmd ${basedir}/build/logs/phpunit.pmd.xml
--log-metrics ${basedir}/build/logs/phpunit.metrics.xml
--coverage-xml ${basedir}/build/logs/phpunit.coverage.xml
--coverage-html ${basedir}/build/coverage
SeleneseTests" />
</exec>
</target>
<target name="build" depends="checkout,php-documentor, phpunit" />
</code></pre>
<p></p>
<p>GETTING THIS IN THE LOG FILE:</p>
<p>MergeLogger - projects/phase-four/build/logs/phpunit.xml is empty.</p>