class PHPUnit_Util_Log_JUnit

A TestListener that generates a logfile of the test execution in XML markup.

The XML markup used is the same as the one that is used by the JUnit Ant task.

@package PHPUnit @subpackage Util_Log @author Sebastian Bergmann <sebastian@phpunit.de> @copyright 2001-2013 Sebastian Bergmann <sebastian@phpunit.de> @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License @link http://www.phpunit.de/ @since Class available since Release 2.1.0

Hierarchy

Expanded class hierarchy of PHPUnit_Util_Log_JUnit

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Util/Log/JUnit.php, line 59

View source
class PHPUnit_Util_Log_JUnit extends PHPUnit_Util_Printer implements PHPUnit_Framework_TestListener {

  /**
   * @var    DOMDocument
   */
  protected $document;

  /**
   * @var    DOMElement
   */
  protected $root;

  /**
   * @var    boolean
   */
  protected $logIncompleteSkipped = FALSE;

  /**
   * @var    boolean
   */
  protected $writeDocument = TRUE;

  /**
   * @var    DOMElement[]
   */
  protected $testSuites = array();

  /**
   * @var    integer[]
   */
  protected $testSuiteTests = array(
    0,
  );

  /**
   * @var    integer[]
   */
  protected $testSuiteAssertions = array(
    0,
  );

  /**
   * @var    integer[]
   */
  protected $testSuiteErrors = array(
    0,
  );

  /**
   * @var    integer[]
   */
  protected $testSuiteFailures = array(
    0,
  );

  /**
   * @var    integer[]
   */
  protected $testSuiteTimes = array(
    0,
  );

  /**
   * @var    integer
   */
  protected $testSuiteLevel = 0;

  /**
   * @var    DOMElement
   */
  protected $currentTestCase = NULL;

  /**
   * @var    boolean
   */
  protected $attachCurrentTestCase = TRUE;

  /**
   * Constructor.
   *
   * @param  mixed   $out
   * @param  boolean $logIncompleteSkipped
   */
  public function __construct($out = NULL, $logIncompleteSkipped = FALSE) {
    $this->document = new DOMDocument('1.0', 'UTF-8');
    $this->document->formatOutput = TRUE;
    $this->root = $this->document
      ->createElement('testsuites');
    $this->document
      ->appendChild($this->root);
    parent::__construct($out);
    $this->logIncompleteSkipped = $logIncompleteSkipped;
  }

  /**
   * Flush buffer and close output.
   *
   */
  public function flush() {
    if ($this->writeDocument === TRUE) {
      $this
        ->write($this
        ->getXML());
    }
    parent::flush();
  }

  /**
   * An error occurred.
   *
   * @param  PHPUnit_Framework_Test $test
   * @param  Exception              $e
   * @param  float                  $time
   */
  public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) {
    if ($this->currentTestCase !== NULL) {
      if ($test instanceof PHPUnit_Framework_SelfDescribing) {
        $buffer = $test
          ->toString() . "\n";
      }
      else {
        $buffer = '';
      }
      $buffer .= PHPUnit_Framework_TestFailure::exceptionToString($e) . "\n" . PHPUnit_Util_Filter::getFilteredStacktrace($e);
      $error = $this->document
        ->createElement('error', PHPUnit_Util_XML::prepareString($buffer));
      $error
        ->setAttribute('type', get_class($e));
      $this->currentTestCase
        ->appendChild($error);
      $this->testSuiteErrors[$this->testSuiteLevel]++;
    }
  }

  /**
   * A failure occurred.
   *
   * @param  PHPUnit_Framework_Test                 $test
   * @param  PHPUnit_Framework_AssertionFailedError $e
   * @param  float                                  $time
   */
  public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) {
    if ($this->currentTestCase !== NULL) {
      if (!$test instanceof PHPUnit_Framework_Warning) {
        if ($test instanceof PHPUnit_Framework_SelfDescribing) {
          $buffer = $test
            ->toString() . "\n";
        }
        else {
          $buffer = '';
        }
        $buffer .= PHPUnit_Framework_TestFailure::exceptionToString($e) . "\n" . PHPUnit_Util_Filter::getFilteredStacktrace($e);
        $failure = $this->document
          ->createElement('failure', PHPUnit_Util_XML::prepareString($buffer));
        $failure
          ->setAttribute('type', get_class($e));
        $this->currentTestCase
          ->appendChild($failure);
        $this->testSuiteFailures[$this->testSuiteLevel]++;
      }
    }
  }

  /**
   * Incomplete test.
   *
   * @param  PHPUnit_Framework_Test $test
   * @param  Exception              $e
   * @param  float                  $time
   */
  public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
    if ($this->logIncompleteSkipped && $this->currentTestCase !== NULL) {
      $error = $this->document
        ->createElement('error', PHPUnit_Util_XML::prepareString("Incomplete Test\n" . PHPUnit_Util_Filter::getFilteredStacktrace($e)));
      $error
        ->setAttribute('type', get_class($e));
      $this->currentTestCase
        ->appendChild($error);
      $this->testSuiteErrors[$this->testSuiteLevel]++;
    }
    else {
      $this->attachCurrentTestCase = FALSE;
    }
  }

  /**
   * Skipped test.
   *
   * @param  PHPUnit_Framework_Test $test
   * @param  Exception              $e
   * @param  float                  $time
   * @since  Method available since Release 3.0.0
   */
  public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
    if ($this->logIncompleteSkipped && $this->currentTestCase !== NULL) {
      $error = $this->document
        ->createElement('error', PHPUnit_Util_XML::prepareString("Skipped Test\n" . PHPUnit_Util_Filter::getFilteredStacktrace($e)));
      $error
        ->setAttribute('type', get_class($e));
      $this->currentTestCase
        ->appendChild($error);
      $this->testSuiteErrors[$this->testSuiteLevel]++;
    }
    else {
      $this->attachCurrentTestCase = FALSE;
    }
  }

  /**
   * A testsuite started.
   *
   * @param  PHPUnit_Framework_TestSuite $suite
   * @since  Method available since Release 2.2.0
   */
  public function startTestSuite(PHPUnit_Framework_TestSuite $suite) {
    $testSuite = $this->document
      ->createElement('testsuite');
    $testSuite
      ->setAttribute('name', $suite
      ->getName());
    if (class_exists($suite
      ->getName(), FALSE)) {
      try {
        $class = new ReflectionClass($suite
          ->getName());
        $testSuite
          ->setAttribute('file', $class
          ->getFileName());
        $packageInformation = PHPUnit_Util_Class::getPackageInformation($suite
          ->getName(), $class
          ->getDocComment());
        if (!empty($packageInformation['namespace'])) {
          $testSuite
            ->setAttribute('namespace', $packageInformation['namespace']);
        }
        if (!empty($packageInformation['fullPackage'])) {
          $testSuite
            ->setAttribute('fullPackage', $packageInformation['fullPackage']);
        }
        if (!empty($packageInformation['category'])) {
          $testSuite
            ->setAttribute('category', $packageInformation['category']);
        }
        if (!empty($packageInformation['package'])) {
          $testSuite
            ->setAttribute('package', $packageInformation['package']);
        }
        if (!empty($packageInformation['subpackage'])) {
          $testSuite
            ->setAttribute('subpackage', $packageInformation['subpackage']);
        }
      } catch (ReflectionException $e) {
      }
    }
    if ($this->testSuiteLevel > 0) {
      $this->testSuites[$this->testSuiteLevel]
        ->appendChild($testSuite);
    }
    else {
      $this->root
        ->appendChild($testSuite);
    }
    $this->testSuiteLevel++;
    $this->testSuites[$this->testSuiteLevel] = $testSuite;
    $this->testSuiteTests[$this->testSuiteLevel] = 0;
    $this->testSuiteAssertions[$this->testSuiteLevel] = 0;
    $this->testSuiteErrors[$this->testSuiteLevel] = 0;
    $this->testSuiteFailures[$this->testSuiteLevel] = 0;
    $this->testSuiteTimes[$this->testSuiteLevel] = 0;
  }

  /**
   * A testsuite ended.
   *
   * @param  PHPUnit_Framework_TestSuite $suite
   * @since  Method available since Release 2.2.0
   */
  public function endTestSuite(PHPUnit_Framework_TestSuite $suite) {
    $this->testSuites[$this->testSuiteLevel]
      ->setAttribute('tests', $this->testSuiteTests[$this->testSuiteLevel]);
    $this->testSuites[$this->testSuiteLevel]
      ->setAttribute('assertions', $this->testSuiteAssertions[$this->testSuiteLevel]);
    $this->testSuites[$this->testSuiteLevel]
      ->setAttribute('failures', $this->testSuiteFailures[$this->testSuiteLevel]);
    $this->testSuites[$this->testSuiteLevel]
      ->setAttribute('errors', $this->testSuiteErrors[$this->testSuiteLevel]);
    $this->testSuites[$this->testSuiteLevel]
      ->setAttribute('time', sprintf('%F', $this->testSuiteTimes[$this->testSuiteLevel]));
    if ($this->testSuiteLevel > 1) {
      $this->testSuiteTests[$this->testSuiteLevel - 1] += $this->testSuiteTests[$this->testSuiteLevel];
      $this->testSuiteAssertions[$this->testSuiteLevel - 1] += $this->testSuiteAssertions[$this->testSuiteLevel];
      $this->testSuiteErrors[$this->testSuiteLevel - 1] += $this->testSuiteErrors[$this->testSuiteLevel];
      $this->testSuiteFailures[$this->testSuiteLevel - 1] += $this->testSuiteFailures[$this->testSuiteLevel];
      $this->testSuiteTimes[$this->testSuiteLevel - 1] += $this->testSuiteTimes[$this->testSuiteLevel];
    }
    $this->testSuiteLevel--;
  }

  /**
   * A test started.
   *
   * @param  PHPUnit_Framework_Test $test
   */
  public function startTest(PHPUnit_Framework_Test $test) {
    if (!$test instanceof PHPUnit_Framework_Warning) {
      $testCase = $this->document
        ->createElement('testcase');
      $testCase
        ->setAttribute('name', $test
        ->getName());
      if ($test instanceof PHPUnit_Framework_TestCase) {
        $class = new ReflectionClass($test);
        $methodName = $test
          ->getName();
        if ($class
          ->hasMethod($methodName)) {
          $method = $class
            ->getMethod($test
            ->getName());
          $testCase
            ->setAttribute('class', $class
            ->getName());
          $testCase
            ->setAttribute('file', $class
            ->getFileName());
          $testCase
            ->setAttribute('line', $method
            ->getStartLine());
        }
      }
      $this->currentTestCase = $testCase;
    }
  }

  /**
   * A test ended.
   *
   * @param  PHPUnit_Framework_Test $test
   * @param  float                  $time
   */
  public function endTest(PHPUnit_Framework_Test $test, $time) {
    if (!$test instanceof PHPUnit_Framework_Warning) {
      if ($this->attachCurrentTestCase) {
        if ($test instanceof PHPUnit_Framework_TestCase) {
          $numAssertions = $test
            ->getNumAssertions();
          $this->testSuiteAssertions[$this->testSuiteLevel] += $numAssertions;
          $this->currentTestCase
            ->setAttribute('assertions', $numAssertions);
        }
        $this->currentTestCase
          ->setAttribute('time', sprintf('%F', $time));
        $this->testSuites[$this->testSuiteLevel]
          ->appendChild($this->currentTestCase);
        $this->testSuiteTests[$this->testSuiteLevel]++;
        $this->testSuiteTimes[$this->testSuiteLevel] += $time;
      }
    }
    $this->attachCurrentTestCase = TRUE;
    $this->currentTestCase = NULL;
  }

  /**
   * Returns the XML as a string.
   *
   * @return string
   * @since  Method available since Release 2.2.0
   */
  public function getXML() {
    return $this->document
      ->saveXML();
  }

  /**
   * Enables or disables the writing of the document
   * in flush().
   *
   * This is a "hack" needed for the integration of
   * PHPUnit with Phing.
   *
   * @return string
   * @since  Method available since Release 2.2.0
   */
  public function setWriteDocument($flag) {
    if (is_bool($flag)) {
      $this->writeDocument = $flag;
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PHPUnit_Util_Log_JUnit::$attachCurrentTestCase protected property
PHPUnit_Util_Log_JUnit::$currentTestCase protected property
PHPUnit_Util_Log_JUnit::$document protected property
PHPUnit_Util_Log_JUnit::$logIncompleteSkipped protected property
PHPUnit_Util_Log_JUnit::$root protected property
PHPUnit_Util_Log_JUnit::$testSuiteAssertions protected property
PHPUnit_Util_Log_JUnit::$testSuiteErrors protected property
PHPUnit_Util_Log_JUnit::$testSuiteFailures protected property
PHPUnit_Util_Log_JUnit::$testSuiteLevel protected property
PHPUnit_Util_Log_JUnit::$testSuites protected property
PHPUnit_Util_Log_JUnit::$testSuiteTests protected property
PHPUnit_Util_Log_JUnit::$testSuiteTimes protected property
PHPUnit_Util_Log_JUnit::$writeDocument protected property
PHPUnit_Util_Log_JUnit::addError public function An error occurred. Overrides PHPUnit_Framework_TestListener::addError
PHPUnit_Util_Log_JUnit::addFailure public function A failure occurred. Overrides PHPUnit_Framework_TestListener::addFailure
PHPUnit_Util_Log_JUnit::addIncompleteTest public function Incomplete test. Overrides PHPUnit_Framework_TestListener::addIncompleteTest
PHPUnit_Util_Log_JUnit::addSkippedTest public function Skipped test. Overrides PHPUnit_Framework_TestListener::addSkippedTest
PHPUnit_Util_Log_JUnit::endTest public function A test ended. Overrides PHPUnit_Framework_TestListener::endTest
PHPUnit_Util_Log_JUnit::endTestSuite public function A testsuite ended. Overrides PHPUnit_Framework_TestListener::endTestSuite
PHPUnit_Util_Log_JUnit::flush public function Flush buffer and close output. Overrides PHPUnit_Util_Printer::flush
PHPUnit_Util_Log_JUnit::getXML public function Returns the XML as a string.
PHPUnit_Util_Log_JUnit::setWriteDocument public function Enables or disables the writing of the document in flush().
PHPUnit_Util_Log_JUnit::startTest public function A test started. Overrides PHPUnit_Framework_TestListener::startTest
PHPUnit_Util_Log_JUnit::startTestSuite public function A testsuite started. Overrides PHPUnit_Framework_TestListener::startTestSuite
PHPUnit_Util_Log_JUnit::__construct public function Constructor. Overrides PHPUnit_Util_Printer::__construct
PHPUnit_Util_Printer::$autoFlush protected property If TRUE, flush output after every write.
PHPUnit_Util_Printer::$out protected property
PHPUnit_Util_Printer::$outTarget protected property
PHPUnit_Util_Printer::$printsHTML protected property 1
PHPUnit_Util_Printer::getAutoFlush public function Check auto-flush mode.
PHPUnit_Util_Printer::incrementalFlush public function Performs a safe, incremental flush.
PHPUnit_Util_Printer::setAutoFlush public function Set auto-flushing mode.
PHPUnit_Util_Printer::write public function 2