You are here

class PHPUnit_TextUI_ResultPrinter in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/TextUI/ResultPrinter.php \PHPUnit_TextUI_ResultPrinter

Prints the result of a TextUI TestRunner run.

@since Class available since Release 2.0.0

Hierarchy

Expanded class hierarchy of PHPUnit_TextUI_ResultPrinter

3 string references to 'PHPUnit_TextUI_ResultPrinter'
PHPUnit_TextUI_Command::handlePrinter in vendor/phpunit/phpunit/src/TextUI/Command.php
Handles the loading of the PHPUnit_Util_Printer implementation.
PHPUnit_TextUI_TestRunner::doRun in vendor/phpunit/phpunit/src/TextUI/TestRunner.php
Util_ConfigurationTest::testPHPUnitConfigurationIsReadCorrectly in vendor/phpunit/phpunit/tests/Util/ConfigurationTest.php
@covers PHPUnit_Util_Configuration::getPHPUnitConfiguration

File

vendor/phpunit/phpunit/src/TextUI/ResultPrinter.php, line 18

View source
class PHPUnit_TextUI_ResultPrinter extends PHPUnit_Util_Printer implements PHPUnit_Framework_TestListener {
  const EVENT_TEST_START = 0;
  const EVENT_TEST_END = 1;
  const EVENT_TESTSUITE_START = 2;
  const EVENT_TESTSUITE_END = 3;
  const COLOR_NEVER = 'never';
  const COLOR_AUTO = 'auto';
  const COLOR_ALWAYS = 'always';
  const COLOR_DEFAULT = self::COLOR_NEVER;

  /**
   * @var array
   */
  private static $ansiCodes = array(
    'bold' => 1,
    'fg-black' => 30,
    'fg-red' => 31,
    'fg-green' => 32,
    'fg-yellow' => 33,
    'fg-blue' => 34,
    'fg-magenta' => 35,
    'fg-cyan' => 36,
    'fg-white' => 37,
    'bg-black' => 40,
    'bg-red' => 41,
    'bg-green' => 42,
    'bg-yellow' => 43,
    'bg-blue' => 44,
    'bg-magenta' => 45,
    'bg-cyan' => 46,
    'bg-white' => 47,
  );

  /**
   * @var int
   */
  protected $column = 0;

  /**
   * @var int
   */
  protected $maxColumn;

  /**
   * @var bool
   */
  protected $lastTestFailed = false;

  /**
   * @var int
   */
  protected $numAssertions = 0;

  /**
   * @var int
   */
  protected $numTests = -1;

  /**
   * @var int
   */
  protected $numTestsRun = 0;

  /**
   * @var int
   */
  protected $numTestsWidth;

  /**
   * @var bool
   */
  protected $colors = false;

  /**
   * @var bool
   */
  protected $debug = false;

  /**
   * @var bool
   */
  protected $verbose = false;

  /**
   * @var int
   */
  private $numberOfColumns;

  /**
   * Constructor.
   *
   * @param  mixed                       $out
   * @param  bool                        $verbose
   * @param  string                      $colors
   * @param  bool                        $debug
   * @param  int|string                  $numberOfColumns
   * @throws PHPUnit_Framework_Exception
   * @since  Method available since Release 3.0.0
   */
  public function __construct($out = null, $verbose = false, $colors = self::COLOR_DEFAULT, $debug = false, $numberOfColumns = 80) {
    parent::__construct($out);
    if (!is_bool($verbose)) {
      throw PHPUnit_Util_InvalidArgumentHelper::factory(2, 'boolean');
    }
    $availableColors = array(
      self::COLOR_NEVER,
      self::COLOR_AUTO,
      self::COLOR_ALWAYS,
    );
    if (!in_array($colors, $availableColors)) {
      throw PHPUnit_Util_InvalidArgumentHelper::factory(3, vsprintf('value from "%s", "%s" or "%s"', $availableColors));
    }
    if (!is_bool($debug)) {
      throw PHPUnit_Util_InvalidArgumentHelper::factory(4, 'boolean');
    }
    if (!is_int($numberOfColumns) && $numberOfColumns != 'max') {
      throw PHPUnit_Util_InvalidArgumentHelper::factory(5, 'integer or "max"');
    }
    $console = new Console();
    $maxNumberOfColumns = $console
      ->getNumberOfColumns();
    if ($numberOfColumns == 'max' || $numberOfColumns > $maxNumberOfColumns) {
      $numberOfColumns = $maxNumberOfColumns;
    }
    $this->numberOfColumns = $numberOfColumns;
    $this->verbose = $verbose;
    $this->debug = $debug;
    if ($colors === self::COLOR_AUTO && $console
      ->hasColorSupport()) {
      $this->colors = true;
    }
    else {
      $this->colors = self::COLOR_ALWAYS === $colors;
    }
  }

  /**
   * @param PHPUnit_Framework_TestResult $result
   */
  public function printResult(PHPUnit_Framework_TestResult $result) {
    $this
      ->printHeader();
    $this
      ->printErrors($result);
    $printSeparator = $result
      ->errorCount() > 0;
    if ($printSeparator && $result
      ->failureCount() > 0) {
      $this
        ->write("\n--\n\n");
    }
    $printSeparator = $printSeparator || $result
      ->failureCount() > 0;
    $this
      ->printFailures($result);
    if ($this->verbose) {
      if ($printSeparator && $result
        ->riskyCount() > 0) {
        $this
          ->write("\n--\n\n");
      }
      $printSeparator = $printSeparator || $result
        ->riskyCount() > 0;
      $this
        ->printRisky($result);
      if ($printSeparator && $result
        ->notImplementedCount() > 0) {
        $this
          ->write("\n--\n\n");
      }
      $printSeparator = $printSeparator || $result
        ->notImplementedCount() > 0;
      $this
        ->printIncompletes($result);
      if ($printSeparator && $result
        ->skippedCount() > 0) {
        $this
          ->write("\n--\n\n");
      }
      $this
        ->printSkipped($result);
    }
    $this
      ->printFooter($result);
  }

  /**
   * @param array  $defects
   * @param string $type
   */
  protected function printDefects(array $defects, $type) {
    $count = count($defects);
    if ($count == 0) {
      return;
    }
    $this
      ->write(sprintf("There %s %d %s%s:\n", $count == 1 ? 'was' : 'were', $count, $type, $count == 1 ? '' : 's'));
    $i = 1;
    foreach ($defects as $defect) {
      $this
        ->printDefect($defect, $i++);
    }
  }

  /**
   * @param PHPUnit_Framework_TestFailure $defect
   * @param int                           $count
   */
  protected function printDefect(PHPUnit_Framework_TestFailure $defect, $count) {
    $this
      ->printDefectHeader($defect, $count);
    $this
      ->printDefectTrace($defect);
  }

  /**
   * @param PHPUnit_Framework_TestFailure $defect
   * @param int                           $count
   */
  protected function printDefectHeader(PHPUnit_Framework_TestFailure $defect, $count) {
    $this
      ->write(sprintf("\n%d) %s\n", $count, $defect
      ->getTestName()));
  }

  /**
   * @param PHPUnit_Framework_TestFailure $defect
   */
  protected function printDefectTrace(PHPUnit_Framework_TestFailure $defect) {
    $e = $defect
      ->thrownException();
    $this
      ->write((string) $e);
    while ($e = $e
      ->getPrevious()) {
      $this
        ->write("\nCaused by\n" . $e);
    }
  }

  /**
   * @param PHPUnit_Framework_TestResult $result
   */
  protected function printErrors(PHPUnit_Framework_TestResult $result) {
    $this
      ->printDefects($result
      ->errors(), 'error');
  }

  /**
   * @param PHPUnit_Framework_TestResult $result
   */
  protected function printFailures(PHPUnit_Framework_TestResult $result) {
    $this
      ->printDefects($result
      ->failures(), 'failure');
  }

  /**
   * @param PHPUnit_Framework_TestResult $result
   */
  protected function printIncompletes(PHPUnit_Framework_TestResult $result) {
    $this
      ->printDefects($result
      ->notImplemented(), 'incomplete test');
  }

  /**
   * @param PHPUnit_Framework_TestResult $result
   * @since  Method available since Release 4.0.0
   */
  protected function printRisky(PHPUnit_Framework_TestResult $result) {
    $this
      ->printDefects($result
      ->risky(), 'risky test');
  }

  /**
   * @param PHPUnit_Framework_TestResult $result
   * @since  Method available since Release 3.0.0
   */
  protected function printSkipped(PHPUnit_Framework_TestResult $result) {
    $this
      ->printDefects($result
      ->skipped(), 'skipped test');
  }
  protected function printHeader() {
    $this
      ->write("\n\n" . PHP_Timer::resourceUsage() . "\n\n");
  }

  /**
   * @param PHPUnit_Framework_TestResult $result
   */
  protected function printFooter(PHPUnit_Framework_TestResult $result) {
    if (count($result) === 0) {
      $this
        ->writeWithColor('fg-black, bg-yellow', 'No tests executed!');
    }
    elseif ($result
      ->wasSuccessful() && $result
      ->allHarmless() && $result
      ->allCompletelyImplemented() && $result
      ->noneSkipped()) {
      $this
        ->writeWithColor('fg-black, bg-green', sprintf('OK (%d test%s, %d assertion%s)', count($result), count($result) == 1 ? '' : 's', $this->numAssertions, $this->numAssertions == 1 ? '' : 's'));
    }
    else {
      if ($result
        ->wasSuccessful()) {
        $color = 'fg-black, bg-yellow';
        if ($this->verbose) {
          $this
            ->write("\n");
        }
        $this
          ->writeWithColor($color, 'OK, but incomplete, skipped, or risky tests!');
      }
      else {
        $color = 'fg-white, bg-red';
        $this
          ->write("\n");
        $this
          ->writeWithColor($color, 'FAILURES!');
      }
      $this
        ->writeCountString(count($result), 'Tests', $color, true);
      $this
        ->writeCountString($this->numAssertions, 'Assertions', $color, true);
      $this
        ->writeCountString($result
        ->errorCount(), 'Errors', $color);
      $this
        ->writeCountString($result
        ->failureCount(), 'Failures', $color);
      $this
        ->writeCountString($result
        ->skippedCount(), 'Skipped', $color);
      $this
        ->writeCountString($result
        ->notImplementedCount(), 'Incomplete', $color);
      $this
        ->writeCountString($result
        ->riskyCount(), 'Risky', $color);
      $this
        ->writeWithColor($color, '.', true);
    }
  }

  /**
   */
  public function printWaitPrompt() {
    $this
      ->write("\n<RETURN> to continue\n");
  }

  /**
   * An error occurred.
   *
   * @param PHPUnit_Framework_Test $test
   * @param Exception              $e
   * @param float                  $time
   */
  public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) {
    $this
      ->writeProgressWithColor('fg-red, bold', 'E');
    $this->lastTestFailed = true;
  }

  /**
   * 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) {
    $this
      ->writeProgressWithColor('bg-red, fg-white', 'F');
    $this->lastTestFailed = true;
  }

  /**
   * Incomplete test.
   *
   * @param PHPUnit_Framework_Test $test
   * @param Exception              $e
   * @param float                  $time
   */
  public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
    $this
      ->writeProgressWithColor('fg-yellow, bold', 'I');
    $this->lastTestFailed = true;
  }

  /**
   * Risky test.
   *
   * @param PHPUnit_Framework_Test $test
   * @param Exception              $e
   * @param float                  $time
   * @since  Method available since Release 4.0.0
   */
  public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
    $this
      ->writeProgressWithColor('fg-yellow, bold', 'R');
    $this->lastTestFailed = true;
  }

  /**
   * 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) {
    $this
      ->writeProgressWithColor('fg-cyan, bold', 'S');
    $this->lastTestFailed = true;
  }

  /**
   * A testsuite started.
   *
   * @param PHPUnit_Framework_TestSuite $suite
   * @since  Method available since Release 2.2.0
   */
  public function startTestSuite(PHPUnit_Framework_TestSuite $suite) {
    if ($this->numTests == -1) {
      $this->numTests = count($suite);
      $this->numTestsWidth = strlen((string) $this->numTests);
      $this->maxColumn = $this->numberOfColumns - strlen('  /  (XXX%)') - 2 * $this->numTestsWidth;
    }
  }

  /**
   * A testsuite ended.
   *
   * @param PHPUnit_Framework_TestSuite $suite
   * @since  Method available since Release 2.2.0
   */
  public function endTestSuite(PHPUnit_Framework_TestSuite $suite) {
  }

  /**
   * A test started.
   *
   * @param PHPUnit_Framework_Test $test
   */
  public function startTest(PHPUnit_Framework_Test $test) {
    if ($this->debug) {
      $this
        ->write(sprintf("\nStarting test '%s'.\n", PHPUnit_Util_Test::describe($test)));
    }
  }

  /**
   * A test ended.
   *
   * @param PHPUnit_Framework_Test $test
   * @param float                  $time
   */
  public function endTest(PHPUnit_Framework_Test $test, $time) {
    if (!$this->lastTestFailed) {
      $this
        ->writeProgress('.');
    }
    if ($test instanceof PHPUnit_Framework_TestCase) {
      $this->numAssertions += $test
        ->getNumAssertions();
    }
    elseif ($test instanceof PHPUnit_Extensions_PhptTestCase) {
      $this->numAssertions++;
    }
    $this->lastTestFailed = false;
    if ($test instanceof PHPUnit_Framework_TestCase) {
      if (!$test
        ->hasExpectationOnOutput()) {
        $this
          ->write($test
          ->getActualOutput());
      }
    }
  }

  /**
   * @param string $progress
   */
  protected function writeProgress($progress) {
    $this
      ->write($progress);
    $this->column++;
    $this->numTestsRun++;
    if ($this->column == $this->maxColumn) {
      $this
        ->write(sprintf(' %' . $this->numTestsWidth . 'd / %' . $this->numTestsWidth . 'd (%3s%%)', $this->numTestsRun, $this->numTests, floor($this->numTestsRun / $this->numTests * 100)));
      $this
        ->writeNewLine();
    }
  }
  protected function writeNewLine() {
    $this->column = 0;
    $this
      ->write("\n");
  }

  /**
   * Formats a buffer with a specified ANSI color sequence if colors are
   * enabled.
   *
   * @param  string $color
   * @param  string $buffer
   * @return string
   * @since  Method available since Release 4.0.0
   */
  protected function formatWithColor($color, $buffer) {
    if (!$this->colors) {
      return $buffer;
    }
    $codes = array_map('trim', explode(',', $color));
    $lines = explode("\n", $buffer);
    $padding = max(array_map('strlen', $lines));
    $styles = array();
    foreach ($codes as $code) {
      $styles[] = self::$ansiCodes[$code];
    }
    $style = sprintf("\33[%sm", implode(';', $styles));
    $styledLines = array();
    foreach ($lines as $line) {
      $styledLines[] = $style . str_pad($line, $padding) . "\33[0m";
    }
    return implode("\n", $styledLines);
  }

  /**
   * Writes a buffer out with a color sequence if colors are enabled.
   *
   * @param string $color
   * @param string $buffer
   * @param bool   $lf
   * @since  Method available since Release 4.0.0
   */
  protected function writeWithColor($color, $buffer, $lf = true) {
    $this
      ->write($this
      ->formatWithColor($color, $buffer));
    if ($lf) {
      $this
        ->write("\n");
    }
  }

  /**
   * Writes progress with a color sequence if colors are enabled.
   *
   * @param string $color
   * @param string $buffer
   * @since  Method available since Release 4.0.0
   */
  protected function writeProgressWithColor($color, $buffer) {
    $buffer = $this
      ->formatWithColor($color, $buffer);
    $this
      ->writeProgress($buffer);
  }

  /**
   * @param int    $count
   * @param string $name
   * @param string $color
   * @param bool   $always
   * @since  Method available since Release 4.6.5
   */
  private function writeCountString($count, $name, $color, $always = false) {
    static $first = true;
    if ($always || $count > 0) {
      $this
        ->writeWithColor($color, sprintf('%s%s: %d', !$first ? ', ' : '', $name, $count), false);
      $first = false;
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PHPUnit_TextUI_ResultPrinter::$ansiCodes private static property
PHPUnit_TextUI_ResultPrinter::$colors protected property
PHPUnit_TextUI_ResultPrinter::$column protected property
PHPUnit_TextUI_ResultPrinter::$debug protected property
PHPUnit_TextUI_ResultPrinter::$lastTestFailed protected property
PHPUnit_TextUI_ResultPrinter::$maxColumn protected property
PHPUnit_TextUI_ResultPrinter::$numAssertions protected property
PHPUnit_TextUI_ResultPrinter::$numberOfColumns private property
PHPUnit_TextUI_ResultPrinter::$numTests protected property
PHPUnit_TextUI_ResultPrinter::$numTestsRun protected property
PHPUnit_TextUI_ResultPrinter::$numTestsWidth protected property
PHPUnit_TextUI_ResultPrinter::$verbose protected property
PHPUnit_TextUI_ResultPrinter::addError public function An error occurred. Overrides PHPUnit_Framework_TestListener::addError
PHPUnit_TextUI_ResultPrinter::addFailure public function A failure occurred. Overrides PHPUnit_Framework_TestListener::addFailure
PHPUnit_TextUI_ResultPrinter::addIncompleteTest public function Incomplete test. Overrides PHPUnit_Framework_TestListener::addIncompleteTest
PHPUnit_TextUI_ResultPrinter::addRiskyTest public function Risky test. Overrides PHPUnit_Framework_TestListener::addRiskyTest
PHPUnit_TextUI_ResultPrinter::addSkippedTest public function Skipped test. Overrides PHPUnit_Framework_TestListener::addSkippedTest
PHPUnit_TextUI_ResultPrinter::COLOR_ALWAYS constant
PHPUnit_TextUI_ResultPrinter::COLOR_AUTO constant
PHPUnit_TextUI_ResultPrinter::COLOR_DEFAULT constant
PHPUnit_TextUI_ResultPrinter::COLOR_NEVER constant
PHPUnit_TextUI_ResultPrinter::endTest public function A test ended. Overrides PHPUnit_Framework_TestListener::endTest
PHPUnit_TextUI_ResultPrinter::endTestSuite public function A testsuite ended. Overrides PHPUnit_Framework_TestListener::endTestSuite
PHPUnit_TextUI_ResultPrinter::EVENT_TESTSUITE_END constant
PHPUnit_TextUI_ResultPrinter::EVENT_TESTSUITE_START constant
PHPUnit_TextUI_ResultPrinter::EVENT_TEST_END constant
PHPUnit_TextUI_ResultPrinter::EVENT_TEST_START constant
PHPUnit_TextUI_ResultPrinter::formatWithColor protected function Formats a buffer with a specified ANSI color sequence if colors are enabled.
PHPUnit_TextUI_ResultPrinter::printDefect protected function
PHPUnit_TextUI_ResultPrinter::printDefectHeader protected function
PHPUnit_TextUI_ResultPrinter::printDefects protected function
PHPUnit_TextUI_ResultPrinter::printDefectTrace protected function
PHPUnit_TextUI_ResultPrinter::printErrors protected function
PHPUnit_TextUI_ResultPrinter::printFailures protected function
PHPUnit_TextUI_ResultPrinter::printFooter protected function
PHPUnit_TextUI_ResultPrinter::printHeader protected function
PHPUnit_TextUI_ResultPrinter::printIncompletes protected function
PHPUnit_TextUI_ResultPrinter::printResult public function
PHPUnit_TextUI_ResultPrinter::printRisky protected function @since Method available since Release 4.0.0
PHPUnit_TextUI_ResultPrinter::printSkipped protected function @since Method available since Release 3.0.0
PHPUnit_TextUI_ResultPrinter::printWaitPrompt public function
PHPUnit_TextUI_ResultPrinter::startTest public function A test started. Overrides PHPUnit_Framework_TestListener::startTest
PHPUnit_TextUI_ResultPrinter::startTestSuite public function A testsuite started. Overrides PHPUnit_Framework_TestListener::startTestSuite
PHPUnit_TextUI_ResultPrinter::writeCountString private function @since Method available since Release 4.6.5
PHPUnit_TextUI_ResultPrinter::writeNewLine protected function
PHPUnit_TextUI_ResultPrinter::writeProgress protected function
PHPUnit_TextUI_ResultPrinter::writeProgressWithColor protected function Writes progress with a color sequence if colors are enabled.
PHPUnit_TextUI_ResultPrinter::writeWithColor protected function Writes a buffer out with a color sequence if colors are enabled.
PHPUnit_TextUI_ResultPrinter::__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::flush public function Flush buffer, optionally tidy up HTML, and close output if it's not to a php stream 2
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 1