mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
initial commit
This commit is contained in:
171
lib/symfony/vendor/phing/tasks/ext/phpunit2/BatchTest.php
vendored
Executable file
171
lib/symfony/vendor/phing/tasks/ext/phpunit2/BatchTest.php
vendored
Executable file
@ -0,0 +1,171 @@
|
||||
<?php
|
||||
/**
|
||||
* $Id: BatchTest.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
*
|
||||
* 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/types/FileSet.php';
|
||||
|
||||
/**
|
||||
* Scans a list of (.php) files given by the fileset attribute, extracts
|
||||
* all subclasses of PHPUnit2_Framework_TestCase.
|
||||
*
|
||||
* @author Michiel Rook <michiel.rook@gmail.com>
|
||||
* @version $Id: BatchTest.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
* @package phing.tasks.ext.phpunit2
|
||||
* @since 2.1.0
|
||||
*/
|
||||
class BatchTest
|
||||
{
|
||||
/** the list of filesets containing the testcase filename rules */
|
||||
private $filesets = array();
|
||||
|
||||
/** the reference to the project */
|
||||
private $project = NULL;
|
||||
|
||||
/** the classpath to use with Phing::__import() calls */
|
||||
private $classpath = NULL;
|
||||
|
||||
/** names of classes to exclude */
|
||||
private $excludeClasses = array();
|
||||
|
||||
/**
|
||||
* Create a new batchtest instance
|
||||
*
|
||||
* @param Project the project it depends on.
|
||||
*/
|
||||
function __construct(Project $project)
|
||||
{
|
||||
$this->project = $project;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the classes to exclude
|
||||
*/
|
||||
function setExclude($exclude)
|
||||
{
|
||||
$this->excludeClasses = explode(" ", $exclude);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the classpath
|
||||
*/
|
||||
function setClasspath(Path $classpath)
|
||||
{
|
||||
if ($this->classpath === null)
|
||||
{
|
||||
$this->classpath = $classpath;
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->classpath->append($classpath);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new Path object
|
||||
*/
|
||||
function createClasspath()
|
||||
{
|
||||
$this->classpath = new Path();
|
||||
return $this->classpath;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the classpath
|
||||
*/
|
||||
function getClasspath()
|
||||
{
|
||||
return $this->classpath;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a new fileset containing the XML results to aggregate
|
||||
*
|
||||
* @param FileSet the new fileset containing XML results.
|
||||
*/
|
||||
function addFileSet(FileSet $fileset)
|
||||
{
|
||||
$this->filesets[] = $fileset;
|
||||
}
|
||||
|
||||
/**
|
||||
* Iterate over all filesets and return the filename of all files
|
||||
* that end with .php.
|
||||
*
|
||||
* @return array an array of filenames
|
||||
*/
|
||||
private function getFilenames()
|
||||
{
|
||||
$filenames = array();
|
||||
|
||||
foreach ($this->filesets as $fileset)
|
||||
{
|
||||
$ds = $fileset->getDirectoryScanner($this->project);
|
||||
$ds->scan();
|
||||
|
||||
$files = $ds->getIncludedFiles();
|
||||
|
||||
foreach ($files as $file)
|
||||
{
|
||||
if (strstr($file, ".php"))
|
||||
{
|
||||
$filenames[] = $ds->getBaseDir() . "/" . $file;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $filenames;
|
||||
}
|
||||
|
||||
/**
|
||||
* Filters an array of classes, removes all classes that are not subclasses of PHPUnit2_Framework_TestCase,
|
||||
* or classes that are declared abstract
|
||||
*/
|
||||
private function filterTests($input)
|
||||
{
|
||||
$reflect = new ReflectionClass($input);
|
||||
|
||||
return is_subclass_of($input, 'PHPUnit2_Framework_TestCase') && (!$reflect->isAbstract());
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array of PHPUnit2_Framework_TestCase classes that are declared
|
||||
* by the files included by the filesets
|
||||
*
|
||||
* @return array an array of PHPUnit2_Framework_TestCase classes.
|
||||
*/
|
||||
function elements()
|
||||
{
|
||||
$filenames = $this->getFilenames();
|
||||
|
||||
$declaredClasses = array();
|
||||
|
||||
foreach ($filenames as $filename)
|
||||
{
|
||||
$definedClasses = PHPUnit2Util::getDefinedClasses($filename, $this->classpath);
|
||||
|
||||
$declaredClasses = array_merge($declaredClasses, $definedClasses);
|
||||
}
|
||||
|
||||
$elements = array_filter($declaredClasses, array($this, "filterTests"));
|
||||
|
||||
return $elements;
|
||||
}
|
||||
}
|
||||
?>
|
120
lib/symfony/vendor/phing/tasks/ext/phpunit2/FormatterElement.php
vendored
Executable file
120
lib/symfony/vendor/phing/tasks/ext/phpunit2/FormatterElement.php
vendored
Executable file
@ -0,0 +1,120 @@
|
||||
<?php
|
||||
/**
|
||||
* $Id: FormatterElement.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
*
|
||||
* 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/tasks/ext/phpunit2/XMLPHPUnit2ResultFormatter.php';
|
||||
require_once 'phing/tasks/ext/phpunit2/PlainPHPUnit2ResultFormatter.php';
|
||||
require_once 'phing/system/io/PhingFile.php';
|
||||
|
||||
/**
|
||||
* A wrapper for the implementations of PHPUnit2ResultFormatter.
|
||||
*
|
||||
* @author Michiel Rook <michiel.rook@gmail.com>
|
||||
* @version $Id: FormatterElement.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
* @package phing.tasks.ext.phpunit2
|
||||
* @since 2.1.0
|
||||
*/
|
||||
class FormatterElement
|
||||
{
|
||||
protected $formatter = NULL;
|
||||
|
||||
protected $type = "";
|
||||
|
||||
protected $useFile = true;
|
||||
|
||||
protected $toDir = ".";
|
||||
|
||||
protected $outfile = "";
|
||||
|
||||
function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
|
||||
if ($this->type == "xml")
|
||||
{
|
||||
$destFile = new PhingFile($this->toDir, 'testsuites.xml');
|
||||
$this->formatter = new XMLPHPUnit2ResultFormatter();
|
||||
}
|
||||
else
|
||||
if ($this->type == "plain")
|
||||
{
|
||||
$this->formatter = new PlainPHPUnit2ResultFormatter();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new BuildException("Formatter '" . $this->type . "' not implemented");
|
||||
}
|
||||
}
|
||||
|
||||
function setClassName($className)
|
||||
{
|
||||
$classNameNoDot = Phing::import($className);
|
||||
|
||||
$this->formatter = new $classNameNoDot();
|
||||
}
|
||||
|
||||
function setUseFile($useFile)
|
||||
{
|
||||
$this->useFile = $useFile;
|
||||
}
|
||||
|
||||
function getUseFile()
|
||||
{
|
||||
return $this->useFile;
|
||||
}
|
||||
|
||||
function setToDir($toDir)
|
||||
{
|
||||
$this->toDir = $toDir;
|
||||
}
|
||||
|
||||
function getToDir()
|
||||
{
|
||||
return $this->toDir;
|
||||
}
|
||||
|
||||
function setOutfile($outfile)
|
||||
{
|
||||
$this->outfile = $outfile;
|
||||
}
|
||||
|
||||
function getOutfile()
|
||||
{
|
||||
if ($this->outfile)
|
||||
{
|
||||
return $this->outfile;
|
||||
}
|
||||
else
|
||||
{
|
||||
return $this->formatter->getPreferredOutfile() . $this->getExtension();
|
||||
}
|
||||
}
|
||||
|
||||
function getExtension()
|
||||
{
|
||||
return $this->formatter->getExtension();
|
||||
}
|
||||
|
||||
function getFormatter()
|
||||
{
|
||||
return $this->formatter;
|
||||
}
|
||||
}
|
||||
?>
|
187
lib/symfony/vendor/phing/tasks/ext/phpunit2/PHPUnit2ReportTask.php
vendored
Executable file
187
lib/symfony/vendor/phing/tasks/ext/phpunit2/PHPUnit2ReportTask.php
vendored
Executable file
@ -0,0 +1,187 @@
|
||||
<?php
|
||||
/**
|
||||
* $Id: PHPUnit2ReportTask.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
*
|
||||
* 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/FileWriter.php';
|
||||
require_once 'phing/util/ExtendedFileStream.php';
|
||||
|
||||
/**
|
||||
* Transform a PHPUnit2 xml report using XSLT.
|
||||
* This transformation generates an html report in either framed or non-framed
|
||||
* style. The non-framed style is convenient to have a concise report via mail,
|
||||
* the framed report is much more convenient if you want to browse into
|
||||
* different packages or testcases since it is a Javadoc like report.
|
||||
*
|
||||
* @author Michiel Rook <michiel.rook@gmail.com>
|
||||
* @version $Id: PHPUnit2ReportTask.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
* @package phing.tasks.ext.phpunit2
|
||||
* @since 2.1.0
|
||||
*/
|
||||
class PHPUnit2ReportTask extends Task
|
||||
{
|
||||
private $format = "noframes";
|
||||
private $styleDir = "";
|
||||
private $toDir = "";
|
||||
|
||||
/** the directory where the results XML can be found */
|
||||
private $inFile = "testsuites.xml";
|
||||
|
||||
/**
|
||||
* Set the filename of the XML results file to use.
|
||||
*/
|
||||
function setInFile($inFile)
|
||||
{
|
||||
$this->inFile = $inFile;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the format of the generated report. Must be noframes or frames.
|
||||
*/
|
||||
function setFormat($format)
|
||||
{
|
||||
$this->format = $format;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the directory where the stylesheets are located.
|
||||
*/
|
||||
function setStyleDir($styleDir)
|
||||
{
|
||||
$this->styleDir = $styleDir;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the directory where the files resulting from the
|
||||
* transformation should be written to.
|
||||
*/
|
||||
function setToDir($toDir)
|
||||
{
|
||||
$this->toDir = $toDir;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the path to the XSL stylesheet
|
||||
*/
|
||||
private function getStyleSheet()
|
||||
{
|
||||
$xslname = "phpunit2-" . $this->format . ".xsl";
|
||||
|
||||
if ($this->styleDir)
|
||||
{
|
||||
$file = new PhingFile($this->styleDir, $xslname);
|
||||
}
|
||||
else
|
||||
{
|
||||
$path = Phing::getResourcePath("phing/etc/$xslname");
|
||||
|
||||
if ($path === NULL)
|
||||
{
|
||||
$path = Phing::getResourcePath("etc/$xslname");
|
||||
|
||||
if ($path === NULL)
|
||||
{
|
||||
throw new BuildException("Could not find $xslname in resource path");
|
||||
}
|
||||
}
|
||||
|
||||
$file = new PhingFile($path);
|
||||
}
|
||||
|
||||
if (!$file->exists())
|
||||
{
|
||||
throw new BuildException("Could not find file " . $file->getPath());
|
||||
}
|
||||
|
||||
return $file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Transforms the DOM document
|
||||
*/
|
||||
private function transform(DOMDocument $document)
|
||||
{
|
||||
$dir = new PhingFile($this->toDir);
|
||||
|
||||
if (!$dir->exists())
|
||||
{
|
||||
throw new BuildException("Directory '" . $this->toDir . "' does not exist");
|
||||
}
|
||||
|
||||
$xslfile = $this->getStyleSheet();
|
||||
|
||||
$xsl = new DOMDocument();
|
||||
$xsl->load($xslfile->getAbsolutePath());
|
||||
|
||||
$proc = new XSLTProcessor();
|
||||
$proc->importStyleSheet($xsl);
|
||||
|
||||
if ($this->format == "noframes")
|
||||
{
|
||||
$writer = new FileWriter(new PhingFile($this->toDir, "phpunit2-noframes.html"));
|
||||
$writer->write($proc->transformToXML($document));
|
||||
$writer->close();
|
||||
}
|
||||
else
|
||||
{
|
||||
ExtendedFileStream::registerStream();
|
||||
|
||||
// no output for the framed report
|
||||
// it's all done by extension...
|
||||
$dir = new PhingFile($this->toDir);
|
||||
$proc->setParameter('', 'output.dir', $dir->getAbsolutePath());
|
||||
$proc->transformToXML($document);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Fixes 'testsuite' elements with no package attribute, adds
|
||||
* package="default" to those elements.
|
||||
*/
|
||||
private function fixPackages(DOMDocument $document)
|
||||
{
|
||||
$testsuites = $document->getElementsByTagName('testsuite');
|
||||
|
||||
foreach ($testsuites as $testsuite)
|
||||
{
|
||||
if (!$testsuite->hasAttribute('package'))
|
||||
{
|
||||
$testsuite->setAttribute('package', 'default');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* The main entry point
|
||||
*
|
||||
* @throws BuildException
|
||||
*/
|
||||
public function main()
|
||||
{
|
||||
$testSuitesDoc = new DOMDocument();
|
||||
$testSuitesDoc->load($this->inFile);
|
||||
|
||||
$this->fixPackages($testSuitesDoc);
|
||||
|
||||
$this->transform($testSuitesDoc);
|
||||
}
|
||||
}
|
||||
?>
|
158
lib/symfony/vendor/phing/tasks/ext/phpunit2/PHPUnit2ResultFormatter.php
vendored
Executable file
158
lib/symfony/vendor/phing/tasks/ext/phpunit2/PHPUnit2ResultFormatter.php
vendored
Executable file
@ -0,0 +1,158 @@
|
||||
<?php
|
||||
/**
|
||||
* $Id: PHPUnit2ResultFormatter.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
*
|
||||
* 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 'PHPUnit2/Framework/TestListener.php';
|
||||
|
||||
require_once 'phing/system/io/Writer.php';
|
||||
|
||||
/**
|
||||
* This abstract class describes classes that format the results of a PHPUnit2 testrun.
|
||||
*
|
||||
* @author Michiel Rook <michiel.rook@gmail.com>
|
||||
* @version $Id: PHPUnit2ResultFormatter.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
* @package phing.tasks.ext.phpunit2
|
||||
* @since 2.1.0
|
||||
*/
|
||||
abstract class PHPUnit2ResultFormatter implements PHPUnit2_Framework_TestListener
|
||||
{
|
||||
protected $out = NULL;
|
||||
|
||||
protected $project = NULL;
|
||||
|
||||
private $timer = NULL;
|
||||
|
||||
private $runCount = 0;
|
||||
|
||||
private $failureCount = 0;
|
||||
|
||||
private $errorCount = 0;
|
||||
|
||||
/**
|
||||
* Sets the writer the formatter is supposed to write its results to.
|
||||
*/
|
||||
function setOutput(Writer $out)
|
||||
{
|
||||
$this->out = $out;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the extension used for this formatter
|
||||
*
|
||||
* @return string the extension
|
||||
*/
|
||||
function getExtension()
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the project
|
||||
*
|
||||
* @param Project the project
|
||||
*/
|
||||
function setProject(Project $project)
|
||||
{
|
||||
$this->project = $project;
|
||||
}
|
||||
|
||||
function getPreferredOutfile()
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
function startTestRun()
|
||||
{
|
||||
}
|
||||
|
||||
function endTestRun()
|
||||
{
|
||||
}
|
||||
|
||||
function startTestSuite(PHPUnit2_Framework_TestSuite $suite)
|
||||
{
|
||||
$this->runCount = 0;
|
||||
$this->failureCount = 0;
|
||||
$this->errorCount = 0;
|
||||
|
||||
$this->timer = new Timer();
|
||||
$this->timer->start();
|
||||
}
|
||||
|
||||
function endTestSuite(PHPUnit2_Framework_TestSuite $suite)
|
||||
{
|
||||
$this->timer->stop();
|
||||
}
|
||||
|
||||
function startTest(PHPUnit2_Framework_Test $test)
|
||||
{
|
||||
$this->runCount++;
|
||||
}
|
||||
|
||||
function endTest(PHPUnit2_Framework_Test $test)
|
||||
{
|
||||
}
|
||||
|
||||
function addError(PHPUnit2_Framework_Test $test, Exception $e)
|
||||
{
|
||||
$this->errorCount++;
|
||||
}
|
||||
|
||||
function addFailure(PHPUnit2_Framework_Test $test, PHPUnit2_Framework_AssertionFailedError $t)
|
||||
{
|
||||
$this->failureCount++;
|
||||
}
|
||||
|
||||
function addIncompleteTest(PHPUnit2_Framework_Test $test, Exception $e)
|
||||
{
|
||||
}
|
||||
|
||||
function addSkippedTest(PHPUnit2_Framework_Test $test, Exception $e)
|
||||
{
|
||||
}
|
||||
|
||||
function getRunCount()
|
||||
{
|
||||
return $this->runCount;
|
||||
}
|
||||
|
||||
function getFailureCount()
|
||||
{
|
||||
return $this->failureCount;
|
||||
}
|
||||
|
||||
function getErrorCount()
|
||||
{
|
||||
return $this->errorCount;
|
||||
}
|
||||
|
||||
function getElapsedTime()
|
||||
{
|
||||
if ($this->timer)
|
||||
{
|
||||
return $this->timer->getElapsedTime();
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
239
lib/symfony/vendor/phing/tasks/ext/phpunit2/PHPUnit2Task.php
vendored
Executable file
239
lib/symfony/vendor/phing/tasks/ext/phpunit2/PHPUnit2Task.php
vendored
Executable file
@ -0,0 +1,239 @@
|
||||
<?php
|
||||
/**
|
||||
* $Id: PHPUnit2Task.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
*
|
||||
* 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 PHPUnit2 tests.
|
||||
*
|
||||
* @author Michiel Rook <michiel.rook@gmail.com>
|
||||
* @version $Id: PHPUnit2Task.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
* @package phing.tasks.ext.phpunit2
|
||||
* @see BatchTest
|
||||
* @since 2.1.0
|
||||
*/
|
||||
class PHPUnit2Task extends Task
|
||||
{
|
||||
private $batchtests = array();
|
||||
private $formatters = array();
|
||||
private $haltonerror = false;
|
||||
private $haltonfailure = false;
|
||||
private $failureproperty;
|
||||
private $errorproperty;
|
||||
private $printsummary = false;
|
||||
private $testfailed = false;
|
||||
private $codecoverage = false;
|
||||
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
function init() {
|
||||
include_once 'PHPUnit2/Util/Filter.php';
|
||||
if (!class_exists('PHPUnit2_Util_Filter')) {
|
||||
throw new BuildException("PHPUnit2Task depends on PEAR PHPUnit2 package being installed.", $this->getLocation());
|
||||
}
|
||||
|
||||
if (version_compare(PHP_VERSION, '5.0.3') < 0) {
|
||||
throw new BuildException("PHPUnit2Task requires PHP version >= 5.0.3.", $this->getLocation());
|
||||
}
|
||||
|
||||
// other dependencies that should only be loaded when class is actually used.
|
||||
require_once 'phing/tasks/ext/phpunit2/PHPUnit2TestRunner.php';
|
||||
require_once 'phing/tasks/ext/phpunit2/BatchTest.php';
|
||||
require_once 'phing/tasks/ext/phpunit2/FormatterElement.php';
|
||||
require_once 'phing/tasks/ext/phpunit2/SummaryPHPUnit2ResultFormatter.php';
|
||||
|
||||
// add some defaults to the PHPUnit2 Filter
|
||||
PHPUnit2_Util_Filter::addFileToFilter('PHPUnit2Task.php');
|
||||
PHPUnit2_Util_Filter::addFileToFilter('PHPUnit2TestRunner.php');
|
||||
PHPUnit2_Util_Filter::addFileToFilter('phing/Task.php');
|
||||
PHPUnit2_Util_Filter::addFileToFilter('phing/Target.php');
|
||||
PHPUnit2_Util_Filter::addFileToFilter('phing/Project.php');
|
||||
PHPUnit2_Util_Filter::addFileToFilter('phing/Phing.php');
|
||||
PHPUnit2_Util_Filter::addFileToFilter('phing.php');
|
||||
|
||||
}
|
||||
|
||||
function setFailureproperty($value)
|
||||
{
|
||||
$this->failureproperty = $value;
|
||||
}
|
||||
|
||||
function setErrorproperty($value)
|
||||
{
|
||||
$this->errorproperty = $value;
|
||||
}
|
||||
|
||||
function setHaltonerror($value)
|
||||
{
|
||||
$this->haltonerror = $value;
|
||||
}
|
||||
|
||||
function setHaltonfailure($value)
|
||||
{
|
||||
$this->haltonfailure = $value;
|
||||
}
|
||||
|
||||
function setPrintsummary($printsummary)
|
||||
{
|
||||
$this->printsummary = $printsummary;
|
||||
}
|
||||
|
||||
function setCodecoverage($codecoverage)
|
||||
{
|
||||
$this->codecoverage = $codecoverage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a new formatter to all tests of this task.
|
||||
*
|
||||
* @param FormatterElement formatter element
|
||||
*/
|
||||
function addFormatter(FormatterElement $fe)
|
||||
{
|
||||
$this->formatters[] = $fe;
|
||||
}
|
||||
|
||||
/**
|
||||
* The main entry point
|
||||
*
|
||||
* @throws BuildException
|
||||
*/
|
||||
function main()
|
||||
{
|
||||
$tests = array();
|
||||
|
||||
if ($this->printsummary)
|
||||
{
|
||||
$fe = new FormatterElement();
|
||||
$fe->setClassName('SummaryPHPUnit2ResultFormatter');
|
||||
$fe->setUseFile(false);
|
||||
$this->formatters[] = $fe;
|
||||
}
|
||||
|
||||
foreach ($this->batchtests as $batchtest)
|
||||
{
|
||||
$tests = array_merge($tests, $batchtest->elements());
|
||||
}
|
||||
|
||||
foreach ($this->formatters as $fe)
|
||||
{
|
||||
$formatter = $fe->getFormatter();
|
||||
$formatter->setProject($this->getProject());
|
||||
|
||||
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 ($tests as $test)
|
||||
{
|
||||
$this->execute(new PHPUnit2_Framework_TestSuite(new ReflectionClass($test)));
|
||||
}
|
||||
|
||||
foreach ($this->formatters as $fe)
|
||||
{
|
||||
$formatter = $fe->getFormatter();
|
||||
$formatter->endTestRun();
|
||||
}
|
||||
|
||||
if ($this->testfailed)
|
||||
{
|
||||
throw new BuildException("One or more tests failed");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws BuildException
|
||||
*/
|
||||
private function execute($suite)
|
||||
{
|
||||
$runner = new PHPUnit2TestRunner($suite, $this->project);
|
||||
|
||||
$runner->setCodecoverage($this->codecoverage);
|
||||
|
||||
foreach ($this->formatters as $fe)
|
||||
{
|
||||
$formatter = $fe->getFormatter();
|
||||
|
||||
$runner->addFormatter($formatter);
|
||||
}
|
||||
|
||||
$runner->run();
|
||||
|
||||
$retcode = $runner->getRetCode();
|
||||
|
||||
if ($retcode == PHPUnit2TestRunner::ERRORS) {
|
||||
if ($this->errorproperty) {
|
||||
$this->project->setNewProperty($this->errorproperty, true);
|
||||
}
|
||||
if ($this->haltonerror) {
|
||||
$this->testfailed = true;
|
||||
}
|
||||
} elseif ($retcode == PHPUnit2TestRunner::FAILURES) {
|
||||
if ($this->failureproperty) {
|
||||
$this->project->setNewProperty($this->failureproperty, true);
|
||||
}
|
||||
|
||||
if ($this->haltonfailure) {
|
||||
$this->testfailed = true;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private function getDefaultOutput()
|
||||
{
|
||||
return new LogWriter($this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a set of tests based on pattern matching.
|
||||
*
|
||||
* @return BatchTest a new instance of a batch test.
|
||||
*/
|
||||
function createBatchTest()
|
||||
{
|
||||
$batchtest = new BatchTest($this->getProject());
|
||||
|
||||
$this->batchtests[] = $batchtest;
|
||||
|
||||
return $batchtest;
|
||||
}
|
||||
}
|
||||
?>
|
107
lib/symfony/vendor/phing/tasks/ext/phpunit2/PHPUnit2TestRunner.php
vendored
Executable file
107
lib/symfony/vendor/phing/tasks/ext/phpunit2/PHPUnit2TestRunner.php
vendored
Executable file
@ -0,0 +1,107 @@
|
||||
<?php
|
||||
/**
|
||||
* $Id: PHPUnit2TestRunner.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
*
|
||||
* 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 'PHPUnit2/Framework/TestListener.php';
|
||||
require_once 'PHPUnit2/Framework/TestResult.php';
|
||||
require_once 'PHPUnit2/Framework/TestSuite.php';
|
||||
|
||||
require_once 'phing/tasks/ext/coverage/CoverageMerger.php';
|
||||
|
||||
require_once 'phing/system/util/Timer.php';
|
||||
|
||||
/**
|
||||
* Simple Testrunner for PHPUnit2 that runs all tests of a testsuite.
|
||||
*
|
||||
* @author Michiel Rook <michiel.rook@gmail.com>
|
||||
* @version $Id: PHPUnit2TestRunner.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
* @package phing.tasks.ext.phpunit2
|
||||
* @since 2.1.0
|
||||
*/
|
||||
class PHPUnit2TestRunner
|
||||
{
|
||||
const SUCCESS = 0;
|
||||
const FAILURES = 1;
|
||||
const ERRORS = 2;
|
||||
|
||||
private $test = NULL;
|
||||
private $suite = NULL;
|
||||
private $retCode = 0;
|
||||
private $formatters = array();
|
||||
|
||||
private $codecoverage = false;
|
||||
|
||||
private $project = NULL;
|
||||
|
||||
function __construct(PHPUnit2_Framework_TestSuite $suite, Project $project)
|
||||
{
|
||||
$this->suite = $suite;
|
||||
$this->project = $project;
|
||||
$this->retCode = self::SUCCESS;
|
||||
}
|
||||
|
||||
function setCodecoverage($codecoverage)
|
||||
{
|
||||
$this->codecoverage = $codecoverage;
|
||||
}
|
||||
|
||||
function addFormatter(PHPUnit2_Framework_TestListener $formatter)
|
||||
{
|
||||
$this->formatters[] = $formatter;
|
||||
}
|
||||
|
||||
function run()
|
||||
{
|
||||
$res = new PHPUnit2_Framework_TestResult();
|
||||
|
||||
if ($this->codecoverage)
|
||||
{
|
||||
$res->collectCodeCoverageInformation(TRUE);
|
||||
}
|
||||
|
||||
foreach ($this->formatters as $formatter)
|
||||
{
|
||||
$res->addListener($formatter);
|
||||
}
|
||||
|
||||
$this->suite->run($res);
|
||||
|
||||
if ($this->codecoverage)
|
||||
{
|
||||
CoverageMerger::merge($this->project, $res->getCodeCoverageInformation());
|
||||
}
|
||||
|
||||
if ($res->errorCount() != 0)
|
||||
{
|
||||
$this->retCode = self::ERRORS;
|
||||
}
|
||||
|
||||
else if ($res->failureCount() != 0 || $res->notImplementedCount() != 0)
|
||||
{
|
||||
$this->retCode = self::FAILURES;
|
||||
}
|
||||
}
|
||||
|
||||
function getRetCode()
|
||||
{
|
||||
return $this->retCode;
|
||||
}
|
||||
}
|
||||
?>
|
121
lib/symfony/vendor/phing/tasks/ext/phpunit2/PHPUnit2Util.php
vendored
Executable file
121
lib/symfony/vendor/phing/tasks/ext/phpunit2/PHPUnit2Util.php
vendored
Executable file
@ -0,0 +1,121 @@
|
||||
<?php
|
||||
/**
|
||||
* $Id: PHPUnit2Util.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
*
|
||||
* 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>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Various utility functions
|
||||
*
|
||||
* @author Michiel Rook <michiel.rook@gmail.com>
|
||||
* @version $Id: PHPUnit2Util.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
* @package phing.tasks.ext.phpunit2
|
||||
* @since 2.1.0
|
||||
*/
|
||||
class PHPUnit2Util
|
||||
{
|
||||
protected static $definedClasses = array();
|
||||
|
||||
/**
|
||||
* Returns the package of a class as defined in the docblock of the class using @package
|
||||
*
|
||||
* @param string the name of the class
|
||||
* @return string the name of the package
|
||||
*/
|
||||
static function getPackageName($classname)
|
||||
{
|
||||
$reflect = new ReflectionClass($classname);
|
||||
|
||||
if (preg_match('/@package[\s]+([\.\w]+)/', $reflect->getDocComment(), $matches))
|
||||
{
|
||||
return $matches[1];
|
||||
}
|
||||
else
|
||||
{
|
||||
return "default";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Derives the classname from a filename.
|
||||
* Assumes that there is only one class defined in that particular file, and that
|
||||
* the naming follows the dot-path (Java) notation scheme.
|
||||
*
|
||||
* @param string the filename
|
||||
* @return string the name fo the class
|
||||
*/
|
||||
static function getClassFromFileName($filename)
|
||||
{
|
||||
$filename = basename($filename);
|
||||
|
||||
$rpos = strrpos($filename, '.');
|
||||
|
||||
if ($rpos != -1)
|
||||
{
|
||||
$filename = substr($filename, 0, $rpos);
|
||||
}
|
||||
|
||||
return $filename;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string the filename
|
||||
* @param Path optional classpath
|
||||
* @return array list of classes defined in the file
|
||||
*/
|
||||
static function getDefinedClasses($filename, $classpath = NULL)
|
||||
{
|
||||
$filename = realpath($filename);
|
||||
|
||||
if (!file_exists($filename))
|
||||
{
|
||||
throw new Exception("File '" . $filename . "' does not exist");
|
||||
}
|
||||
|
||||
if (isset(self::$definedClasses[$filename]))
|
||||
{
|
||||
return self::$definedClasses[$filename];
|
||||
}
|
||||
|
||||
Phing::__import($filename, $classpath);
|
||||
|
||||
$declaredClasses = get_declared_classes();
|
||||
|
||||
foreach ($declaredClasses as $classname)
|
||||
{
|
||||
$reflect = new ReflectionClass($classname);
|
||||
|
||||
self::$definedClasses[$reflect->getFilename()][] = $classname;
|
||||
|
||||
if (is_array(self::$definedClasses[$reflect->getFilename()]))
|
||||
{
|
||||
self::$definedClasses[$reflect->getFilename()] = array_unique(self::$definedClasses[$reflect->getFilename()]);
|
||||
}
|
||||
}
|
||||
|
||||
if (isset(self::$definedClasses[$filename]))
|
||||
{
|
||||
return self::$definedClasses[$filename];
|
||||
}
|
||||
else
|
||||
{
|
||||
return array();
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
117
lib/symfony/vendor/phing/tasks/ext/phpunit2/PlainPHPUnit2ResultFormatter.php
vendored
Executable file
117
lib/symfony/vendor/phing/tasks/ext/phpunit2/PlainPHPUnit2ResultFormatter.php
vendored
Executable file
@ -0,0 +1,117 @@
|
||||
<?php
|
||||
/**
|
||||
* $Id: PlainPHPUnit2ResultFormatter.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
*
|
||||
* 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 'PHPUnit2/Framework/Test.php';
|
||||
require_once 'PHPUnit2/Util/Filter.php';
|
||||
|
||||
require_once 'phing/tasks/ext/phpunit2/PHPUnit2ResultFormatter.php';
|
||||
|
||||
/**
|
||||
* Prints plain text output of the test to a specified Writer.
|
||||
*
|
||||
* @author Michiel Rook <michiel.rook@gmail.com>
|
||||
* @version $Id: PlainPHPUnit2ResultFormatter.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
* @package phing.tasks.ext.phpunit2
|
||||
* @since 2.1.0
|
||||
*/
|
||||
class PlainPHPUnit2ResultFormatter extends PHPUnit2ResultFormatter
|
||||
{
|
||||
private $inner = "";
|
||||
|
||||
function getExtension()
|
||||
{
|
||||
return ".txt";
|
||||
}
|
||||
|
||||
function getPreferredOutfile()
|
||||
{
|
||||
return "testresults";
|
||||
}
|
||||
|
||||
function startTestSuite(PHPUnit2_Framework_TestSuite $suite)
|
||||
{
|
||||
parent::startTestSuite($suite);
|
||||
|
||||
$this->inner = "";
|
||||
}
|
||||
|
||||
function endTestSuite(PHPUnit2_Framework_TestSuite $suite)
|
||||
{
|
||||
parent::endTestSuite($suite);
|
||||
|
||||
$sb = "Testsuite: " . $suite->getName() . "\n";
|
||||
$sb.= "Tests run: " . $this->getRunCount();
|
||||
$sb.= ", Failures: " . $this->getFailureCount();
|
||||
$sb.= ", Errors: " . $this->getErrorCount();
|
||||
$sb.= ", Time elapsed: " . $this->getElapsedTime();
|
||||
$sb.= " sec\n";
|
||||
|
||||
if ($this->out != NULL)
|
||||
{
|
||||
$this->out->write($sb);
|
||||
$this->out->write($this->inner);
|
||||
}
|
||||
}
|
||||
|
||||
function addError(PHPUnit2_Framework_Test $test, Exception $e)
|
||||
{
|
||||
parent::addError($test, $e);
|
||||
|
||||
$this->formatError("ERROR", $test, $e);
|
||||
}
|
||||
|
||||
function addFailure(PHPUnit2_Framework_Test $test, PHPUnit2_Framework_AssertionFailedError $t)
|
||||
{
|
||||
parent::addFailure($test, $t);
|
||||
|
||||
$this->formatError("FAILED", $test, $t);
|
||||
}
|
||||
|
||||
function addIncompleteTest(PHPUnit2_Framework_Test $test, Exception $e)
|
||||
{
|
||||
parent::addIncompleteTest($test, $e);
|
||||
|
||||
$this->formatError("INCOMPLETE", $test, $e);
|
||||
}
|
||||
|
||||
private function formatError($type, PHPUnit2_Framework_Test $test, Exception $e)
|
||||
{
|
||||
if ($test != null)
|
||||
{
|
||||
$this->endTest($test);
|
||||
}
|
||||
|
||||
$this->inner.= $test->getName() . " " . $type . "\n";
|
||||
$this->inner.= $e->getMessage() . "\n";
|
||||
$this->inner.= PHPUnit2_Util_Filter::getFilteredStackTrace($e) . "\n";
|
||||
}
|
||||
|
||||
function endTestRun()
|
||||
{
|
||||
parent::endTestRun();
|
||||
|
||||
if ($this->out != NULL)
|
||||
{
|
||||
$this->out->close();
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
58
lib/symfony/vendor/phing/tasks/ext/phpunit2/SummaryPHPUnit2ResultFormatter.php
vendored
Executable file
58
lib/symfony/vendor/phing/tasks/ext/phpunit2/SummaryPHPUnit2ResultFormatter.php
vendored
Executable file
@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* $Id: SummaryPHPUnit2ResultFormatter.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
*
|
||||
* 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 'PHPUnit2/Framework/Test.php';
|
||||
|
||||
require_once 'phing/tasks/ext/phpunit2/PHPUnit2ResultFormatter.php';
|
||||
|
||||
/**
|
||||
* Prints short summary output of the test to Phing's logging system.
|
||||
*
|
||||
* @author Michiel Rook <michiel.rook@gmail.com>
|
||||
* @version $Id: SummaryPHPUnit2ResultFormatter.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
* @package phing.tasks.ext.phpunit2
|
||||
* @since 2.1.0
|
||||
*/
|
||||
class SummaryPHPUnit2ResultFormatter extends PHPUnit2ResultFormatter
|
||||
{
|
||||
function endTestSuite(PHPUnit2_Framework_TestSuite $suite)
|
||||
{
|
||||
parent::endTestSuite($suite);
|
||||
|
||||
$sb = "Tests run: " . $this->getRunCount();
|
||||
$sb.= ", Failures: " . $this->getFailureCount();
|
||||
$sb.= ", Errors: " . $this->getErrorCount();
|
||||
$sb.= ", Time elapsed: " . $this->getElapsedTime();
|
||||
$sb.= " sec\n";
|
||||
|
||||
if ($this->out != NULL)
|
||||
{
|
||||
$this->out->write($sb);
|
||||
$this->out->close();
|
||||
}
|
||||
}
|
||||
|
||||
function getExtension()
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
?>
|
117
lib/symfony/vendor/phing/tasks/ext/phpunit2/XMLPHPUnit2ResultFormatter.php
vendored
Executable file
117
lib/symfony/vendor/phing/tasks/ext/phpunit2/XMLPHPUnit2ResultFormatter.php
vendored
Executable file
@ -0,0 +1,117 @@
|
||||
<?php
|
||||
/**
|
||||
* $Id: XMLPHPUnit2ResultFormatter.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
*
|
||||
* 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 'PHPUnit2/Framework/Test.php';
|
||||
require_once 'PHPUnit2/Runner/Version.php';
|
||||
|
||||
require_once 'PHPUnit2/Util/Log/XML.php';
|
||||
|
||||
require_once 'phing/tasks/ext/phpunit2/PHPUnit2ResultFormatter.php';
|
||||
|
||||
/**
|
||||
* Prints XML output of the test to a specified Writer
|
||||
*
|
||||
* @author Michiel Rook <michiel.rook@gmail.com>
|
||||
* @version $Id: XMLPHPUnit2ResultFormatter.php 3076 2006-12-18 08:52:12Z fabien $
|
||||
* @package phing.tasks.ext.phpunit2
|
||||
* @since 2.1.0
|
||||
*/
|
||||
class XMLPHPUnit2ResultFormatter extends PHPUnit2ResultFormatter
|
||||
{
|
||||
private $logger = NULL;
|
||||
|
||||
function __construct()
|
||||
{
|
||||
$this->logger = new PHPUnit2_Util_Log_XML();
|
||||
$this->logger->setWriteDocument(false);
|
||||
}
|
||||
|
||||
function getExtension()
|
||||
{
|
||||
return ".xml";
|
||||
}
|
||||
|
||||
function getPreferredOutfile()
|
||||
{
|
||||
return "testsuites";
|
||||
}
|
||||
|
||||
function startTestSuite(PHPUnit2_Framework_TestSuite $suite)
|
||||
{
|
||||
parent::startTestSuite($suite);
|
||||
|
||||
$this->logger->startTestSuite($suite);
|
||||
}
|
||||
|
||||
function endTestSuite(PHPUnit2_Framework_TestSuite $suite)
|
||||
{
|
||||
parent::endTestSuite($suite);
|
||||
|
||||
$this->logger->endTestSuite($suite);
|
||||
}
|
||||
|
||||
function startTest(PHPUnit2_Framework_Test $test)
|
||||
{
|
||||
parent::startTest($test);
|
||||
|
||||
$this->logger->startTest($test);
|
||||
}
|
||||
|
||||
function endTest(PHPUnit2_Framework_Test $test)
|
||||
{
|
||||
parent::endTest($test);
|
||||
|
||||
$this->logger->endTest($test);
|
||||
}
|
||||
|
||||
function addError(PHPUnit2_Framework_Test $test, Exception $e)
|
||||
{
|
||||
parent::addError($test, $e);
|
||||
|
||||
$this->logger->addError($test, $e);
|
||||
}
|
||||
|
||||
function addFailure(PHPUnit2_Framework_Test $test, PHPUnit2_Framework_AssertionFailedError $t)
|
||||
{
|
||||
parent::addFailure($test, $t);
|
||||
|
||||
$this->logger->addFailure($test, $t);
|
||||
}
|
||||
|
||||
function addIncompleteTest(PHPUnit2_Framework_Test $test, Exception $e)
|
||||
{
|
||||
parent::addIncompleteTest($test, $e);
|
||||
|
||||
$this->logger->addIncompleteTest($test, $e);
|
||||
}
|
||||
|
||||
function endTestRun()
|
||||
{
|
||||
parent::endTestRun();
|
||||
|
||||
if ($this->out)
|
||||
{
|
||||
$this->out->write($this->logger->getXML());
|
||||
$this->out->close();
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user