123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366 |
- <?php
- /**
- * $Id: PHPUnitTask.php 905 2010-10-05 16:28:03Z mrook $
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * This software consists of voluntary contributions made by many individuals
- * and is licensed under the LGPL. For more information please see
- * <http://phing.info>.
- */
- 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 <michiel.rook@gmail.com>
- * @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;
- }
- }
|