. */ require_once 'phing/Task.php'; require_once 'phing/system/io/PhingFile.php'; require_once 'phing/system/io/Writer.php'; require_once 'phing/util/LogWriter.php'; /** * Runs PHPUnit tests. * * @author Michiel Rook * @version $Id: PHPUnitTask.php 905 2010-10-05 16:28:03Z mrook $ * @package phing.tasks.ext.phpunit * @see BatchTest * @since 2.1.0 */ class PHPUnitTask extends Task { private $batchtests = array(); private $formatters = array(); private $bootstrap = ""; private $haltonerror = false; private $haltonfailure = false; private $haltonincomplete = false; private $haltonskipped = false; private $errorproperty; private $failureproperty; private $incompleteproperty; private $skippedproperty; private $printsummary = false; private $testfailed = false; private $testfailuremessage = ""; private $codecoverage = false; private $groups = array(); private $excludeGroups = array(); private $usecustomerrorhandler = true; /** * Initialize Task. * This method includes any necessary PHPUnit2 libraries and triggers * appropriate error if they cannot be found. This is not done in header * because we may want this class to be loaded w/o triggering an error. */ public function init() { if (version_compare(PHP_VERSION, '5.0.3') < 0) { throw new BuildException("PHPUnitTask requires PHP version >= 5.0.3", $this->getLocation()); } /** * Determine PHPUnit version number */ @include_once 'PHPUnit/Runner/Version.php'; $version = PHPUnit_Runner_Version::id(); if (version_compare($version, '3.2.0') < 0) { throw new BuildException("PHPUnitTask requires PHPUnit version >= 3.2.0", $this->getLocation()); } /** * Other dependencies that should only be loaded when class is actually used. */ require_once 'phing/tasks/ext/phpunit/PHPUnitTestRunner.php'; require_once 'phing/tasks/ext/phpunit/BatchTest.php'; require_once 'phing/tasks/ext/phpunit/FormatterElement.php'; /** * Add some defaults to the PHPUnit filter */ $pwd = dirname(__FILE__); require_once 'PHPUnit/Framework.php'; require_once 'PHPUnit/Util/Filter.php'; // point PHPUnit_MAIN_METHOD define to non-existing method if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'PHPUnitTask::undefined'); } $path = realpath($pwd . '/../../../'); if (version_compare($version, '3.5.0') >= 0) { PHP_CodeCoverage_Filter::getInstance()->addDirectoryToBlacklist($path); } else { PHPUnit_Util_Filter::addDirectoryToFilter($path); } } /** * Sets the name of a bootstrap file that is run before * executing the tests * * @param string $bootstrap the name of the bootstrap file */ public function setBootstrap($bootstrap) { $this->bootstrap = $bootstrap; } public function setErrorproperty($value) { $this->errorproperty = $value; } public function setFailureproperty($value) { $this->failureproperty = $value; } public function setIncompleteproperty($value) { $this->incompleteproperty = $value; } public function setSkippedproperty($value) { $this->skippedproperty = $value; } public function setHaltonerror($value) { $this->haltonerror = $value; } public function setHaltonfailure($value) { $this->haltonfailure = $value; } public function getHaltonfailure() { return $this->haltonfailure; } public function setHaltonincomplete($value) { $this->haltonincomplete = $value; } public function getHaltonincomplete() { return $this->haltonincomplete; } public function setHaltonskipped($value) { $this->haltonskipped = $value; } public function getHaltonskipped() { return $this->haltonskipped; } public function setPrintsummary($printsummary) { $this->printsummary = $printsummary; } public function setCodecoverage($codecoverage) { $this->codecoverage = $codecoverage; } public function setUseCustomErrorHandler($usecustomerrorhandler) { $this->usecustomerrorhandler = $usecustomerrorhandler; } public function setGroups($groups) { $token = ' ,;'; $this->groups = array(); $tok = strtok($groups, $token); while ($tok !== false) { $this->groups[] = $tok; $tok = strtok($token); } } public function setExcludeGroups($excludeGroups) { $token = ' ,;'; $this->excludeGroups = array(); $tok = strtok($excludeGroups, $token); while ($tok !== false) { $this->excludeGroups[] = $tok; $tok = strtok($token); } } /** * Add a new formatter to all tests of this task. * * @param FormatterElement formatter element */ public function addFormatter(FormatterElement $fe) { $fe->setParent($this); $this->formatters[] = $fe; } /** * The main entry point * * @throws BuildException */ public function main() { if ($this->codecoverage && !extension_loaded('xdebug')) { throw new Exception("PHPUnitTask depends on Xdebug being installed to gather code coverage information."); } if ($this->printsummary) { $fe = new FormatterElement(); $fe->setParent($this); $fe->setType("summary"); $fe->setUseFile(false); $this->formatters[] = $fe; } if ($this->bootstrap) { require_once $this->bootstrap; } foreach ($this->formatters as $fe) { $formatter = $fe->getFormatter(); if ($fe->getUseFile()) { $destFile = new PhingFile($fe->getToDir(), $fe->getOutfile()); $writer = new FileWriter($destFile->getAbsolutePath()); $formatter->setOutput($writer); } else { $formatter->setOutput($this->getDefaultOutput()); } $formatter->startTestRun(); } foreach ($this->batchtests as $batchtest) { $this->execute($batchtest->getTestSuite()); } foreach ($this->formatters as $fe) { $formatter = $fe->getFormatter(); $formatter->endTestRun(); } if ($this->testfailed) { throw new BuildException($this->testfailuremessage); } } /** * @throws BuildException */ protected function execute($suite) { $runner = new PHPUnitTestRunner($this->project, $this->groups, $this->excludeGroups); $runner->setCodecoverage($this->codecoverage); $runner->setUseCustomErrorHandler($this->usecustomerrorhandler); foreach ($this->formatters as $fe) { $formatter = $fe->getFormatter(); $runner->addFormatter($formatter); } $runner->run($suite); $retcode = $runner->getRetCode(); if ($retcode == PHPUnitTestRunner::ERRORS) { if ($this->errorproperty) { $this->project->setNewProperty($this->errorproperty, true); } if ($this->haltonerror) { $this->testfailed = true; $this->testfailuremessage = $runner->getLastFailureMessage(); } } elseif ($retcode == PHPUnitTestRunner::FAILURES) { if ($this->failureproperty) { $this->project->setNewProperty($this->failureproperty, true); } if ($this->haltonfailure) { $this->testfailed = true; $this->testfailuremessage = $runner->getLastFailureMessage(); } } elseif ($retcode == PHPUnitTestRunner::INCOMPLETES) { if ($this->incompleteproperty) { $this->project->setNewProperty($this->incompleteproperty, true); } if ($this->haltonincomplete) { $this->testfailed = true; $this->testfailuremessage = $runner->getLastFailureMessage(); } } elseif ($retcode == PHPUnitTestRunner::SKIPPED) { if ($this->skippedproperty) { $this->project->setNewProperty($this->skippedproperty, true); } if ($this->haltonskipped) { $this->testfailed = true; $this->testfailuremessage = $runner->getLastFailureMessage(); } } } protected function getDefaultOutput() { return new LogWriter($this); } /** * Adds a set of tests based on pattern matching. * * @return BatchTest a new instance of a batch test. */ public function createBatchTest() { $batchtest = new BatchTest($this->getProject()); $this->batchtests[] = $batchtest; return $batchtest; } }