/** * Renders the summary of test passes and failures. * * @param PHPUnit_Framework_TestResult $result Result object * * @return void */ public function paintFooter($result) { ob_end_flush(); echo '</ul>'; if ($result->failureCount() + $result->errorCount() > 0) { echo '<div class="alert-box alert radius">'; } else { echo '<div class="alert-box success radius">'; } echo $result->count() - $result->skippedCount() . ' of '; echo $result->count() . ' test methods complete: '; echo count($result->passed()) . ' passes, '; echo $result->failureCount() . ' fails, '; echo $this->numAssertions . ' assertions and '; echo $result->errorCount() . ' exceptions.'; echo '</div>'; echo '<p><strong>Time:</strong> ' . __('%0.5f seconds', $result->time()) . '</p>'; echo '<p><strong>Peak Memory:</strong> ' . number_format(memory_get_peak_usage()) . ' bytes</p>'; $this->_paintLinks(); if (isset($this->params['codeCoverage']) && $this->params['codeCoverage']) { $coverage = $result->getCodeCoverage(); if (method_exists($coverage, 'getSummary')) { $report = $coverage->getSummary(); $this->paintCoverage($report); } if (method_exists($coverage, 'getData')) { $report = $coverage->getData(); $this->paintCoverage($report); } } $this->paintDocumentEnd(); }
/** * Paints the end of the test with a summary of * the passes and failures. * * @param PHPUnit_Framework_TestResult $result Result object * * @return void */ public function paintFooter($result) { ob_end_flush(); $colour = $result->failureCount() + $result->errorCount() > 0 ? "red" : "green"; echo "</ul>\n"; echo "<div style=\""; echo "padding: 8px; margin: 1em 0; background-color: {$colour}; color: white;"; echo "\">"; echo $result->count() - $result->skippedCount() . "/" . $result->count(); echo " test methods complete:\n"; echo "<strong>" . count($result->passed()) . "</strong> passes, "; echo "<strong>" . $result->failureCount() . "</strong> fails, "; echo "<strong>" . $this->numAssertions . "</strong> assertions and "; echo "<strong>" . $result->errorCount() . "</strong> exceptions."; echo "</div>\n"; echo '<div style="padding:0 0 5px;">'; echo '<p><strong>Time:</strong> ' . $result->time() . ' seconds</p>'; echo '<p><strong>Peak memory:</strong> ' . number_format(memory_get_peak_usage()) . ' bytes</p>'; echo $this->_paintLinks(); echo '</div>'; if (isset($this->params['codeCoverage']) && $this->params['codeCoverage']) { $coverage = $result->getCodeCoverage(); if (method_exists($coverage, 'getSummary')) { $report = $coverage->getSummary(); echo $this->paintCoverage($report); } if (method_exists($coverage, 'getData')) { $report = $coverage->getData(); echo $this->paintCoverage($report); } } $this->paintDocumentEnd(); }
public function testAccessTestsAreSkippedWhenNoAclIsGiven() { $suite = new PHPUnit_Framework_TestSuite(); $suite->addTestSuite('AccessNavigationTestWithNoAcl'); $suite->run($result = new PHPUnit_Framework_TestResult()); $this->assertEquals(1, $result->skippedCount()); }
/** * Paints the end of the test with a summary of * the passes and failures. * * @param PHPUnit_Framework_TestResult $result Result object * @return void */ public function paintFooter($result) { if ($result->failureCount() + $result->errorCount() == 0) { echo "\nOK\n"; } else { echo "FAILURES!!!\n"; } echo "Test cases run: " . $result->count() . "/" . ($result->count() - $result->skippedCount()) . ', Passes: ' . $this->numAssertions . ', Failures: ' . $result->failureCount() . ', Exceptions: ' . $result->errorCount() . "\n"; echo 'Time: ' . $result->time() . " seconds\n"; echo 'Peak memory: ' . number_format(memory_get_peak_usage()) . " bytes\n"; if (isset($this->params['codeCoverage']) && $this->params['codeCoverage']) { $coverage = $result->getCodeCoverageInformation(); echo $this->paintCoverage($coverage); } }
/** * @param PHPUnit_Framework_TestResult $result * @since Method available since Release 3.0.0 */ protected function printSkipped(PHPUnit_Framework_TestResult $result) { $this->printDefects($result->skipped(), $result->skippedCount(), 'skipped test'); }
/** * Prints final results when all tests ended. * * PHPUnit_TextUI_ResultPrinter compatible * * @return void */ public function printFooter(\PHPUnit_Framework_TestResult $result) { $testCount = $result->count(); $assertionCount = $this->numAssertions; $failureCount = $result->failureCount(); $errorCount = $result->errorCount(); $incompleteCount = $result->notImplementedCount(); $skipCount = $result->skippedCount(); $riskyCount = $result->riskyCount(); $resultStatus = $errorCount + $failureCount ? 'KO' : 'OK'; $resultMessage = sprintf('Results %s. ', $resultStatus) . $this->formatCounters($testCount, $assertionCount, $failureCount, $errorCount, $incompleteCount, $skipCount, $riskyCount); $context = array('operation' => __FUNCTION__, 'status' => $resultStatus, 'testCount' => $testCount, 'assertionCount' => $assertionCount, 'failureCount' => $failureCount, 'errorCount' => $errorCount, 'incompleteCount' => $incompleteCount, 'skipCount' => $skipCount, 'riskyCount' => $riskyCount); $this->logger->notice($resultMessage, $context); }
/** * Renders and output the tests statistics. * * @param PHPUnit_Framework_TestResult $testResult the test result * * @return void */ protected function renderTestStatistics(PHPUnit_Framework_TestResult $testResult) { if ($testResult->wasSuccessful()) { $testStatistics = '<h2 class="wasSuccessful">' . $this->translate('testing_success') . '</h2>'; } else { if ($testResult->errorCount() > 0) { $testStatistics = '<script type="text/javascript">/*<![CDATA[*/setProgressBarClass("hadError");/*]]>*/</script> <h2 class="hadError">' . $this->translate('testing_failure') . '</h2>'; } else { $testStatistics = '<script type="text/javascript">/*<![CDATA[*/setProgressBarClass("hadFailure");/*]]>*/</script> <h2 class="hadFailure">' . $this->translate('testing_failure') . '</h2>'; } } $testStatistics .= '<p>' . $testResult->count() . ' ' . $this->translate('tests_total') . ', ' . $this->testListener->assertionCount() . ' ' . $this->translate('assertions_total') . ', ' . $testResult->failureCount() . ' ' . $this->translate('tests_failures') . ', ' . $testResult->skippedCount() . ' ' . $this->translate('tests_skipped') . ', ' . $testResult->notImplementedCount() . ' ' . $this->translate('tests_incomplete') . ', ' . $testResult->errorCount() . ' ' . $this->translate('tests_errors') . ', <span title="' . $this->testStatistics->getTime() . ' ' . $this->translate('tests_seconds') . '">' . round($this->testStatistics->getTime(), 3) . ' ' . $this->translate('tests_seconds') . ', </span>' . t3lib_div::formatSize($this->testStatistics->getMemory()) . 'B (' . $this->testStatistics->getMemory() . ' B) ' . $this->translate('tests_leaks') . '</p>'; $this->outputService->output($testStatistics); }
public function printResult(\PHPUnit_Framework_TestResult $result) { $upLine = str_repeat($this->colors ? '▁' : '-', $this->maxColumns); $dnLine = str_repeat($this->colors ? '▔' : '-', $this->maxColumns); $arrow = $this->colors ? '❯' : '=>'; $this->printFailures(); if (!count($this->exceptions)) { $ch = $this->colors ? ' ✔' : ''; $upLine = "[32m" . $upLine . "\n[0m"; $dnLine = "[32m" . $dnLine . "\n[0m"; $str = "[32m{$ch}[0m OK {$arrow} Passed %s of %s"; $str = sprintf($str, count($result->passed()), $result->count()); } else { $ch = $this->colors ? ' ✖' : ''; $upLine = "[31m" . $upLine . "\n[0m"; $dnLine = "[31m" . $dnLine . "\n[0m"; $str = "[31m{$ch}[0m KO {$arrow} Failed %s of %s"; $str = sprintf($str, $result->failureCount() + $result->errorCount(), $result->count()); } if (!$result->allCompletlyImplemented()) { $pair = array(); if ($result->notImplementedCount() > 0) { $pair[] = $result->notImplementedCount() . ' not implemented'; } if ($result->skippedCount() > 0) { $pair[] = $result->skippedCount() . ' skipped'; } $str .= " with " . implode(' and ', $pair); } // Calculate time and peak memory usage $time = number_format($result->time(), 2); $mem = memory_get_peak_usage(); $mem = round($mem / 1024 / 1024); // Add time spent $str .= " [30;1m({$time}s {$mem}Mb)\n[0m"; // Clean up the line above and print there $this->write("[1A[2K"); $this->write($upLine); $this->write($str); $this->write($dnLine); }
public static function formatTestResult(\PHPUnit_Framework_TestResult $result, $assertions) { $tests = $result->count(); $errors = $result->errorCount(); $failures = $result->failureCount(); $skipped = $result->skippedCount(); $incomplete = $result->notImplementedCount(); $msg = self::formatResultPart($errors, 'error', 's'); $msg .= self::formatResultPart($failures, 'failure', 's'); $msg .= self::formatResultPart($skipped, 'skipped'); $msg .= self::formatResultPart($incomplete, 'incomplete'); return sprintf('%s (%d %s, %d %s%s)', $result->wasSuccessful() ? 'OK' : 'FAILED', $tests, $tests != 1 ? 'tests' : 'test', $assertions, $assertions != 1 ? 'assertions' : 'assertion', $msg); }