聚合来自PHPUnit的多个执行的代码覆盖

时间:2012-04-16 01:34:56

标签: php unit-testing phpunit code-coverage

我一直在使用PHPUnit一段时间了,现在看起来我可能需要将我的测试分解为可以作为phpunit的单独执行运行的组。主要原因是我的大多数测试需要在单独的进程中运行,而有些实际上不能在单独的进程中运行,因为记录了here的问题。我想要做的是编写一个bash脚本,触发几个phpunit的执行,每个执行配置为使用不同的设置运行不同的测试。

所以我的问题是:有没有办法聚合多个phpunit执行的代码覆盖率结果?我可以直接通过PHPUnit本身或使用其他工具吗?是否有可能使用PHPUnit的测试套件概念从phpunit的一次运行中获得我正在寻找的东西?

1 个答案:

答案 0 :(得分:22)

使用PHPUnit的“--coverage-php”选项让它将coverage数据写为序列化的PHP_CodeCoverage对象,然后使用PHP_CodeCoverage::merge组合它们,如下所示:

<?php
/**
 * Deserializes PHP_CodeCoverage objects from the files passed on the command line,
 * combines them into a single coverage object and creates an HTML report of the
 * combined coverage.
 */

if ($argc <= 2) {
  die("Usage: php generate-coverage-report.php cov-file1 cov-file2 ...");
}

// Init the Composer autoloader
require realpath(dirname(__FILE__)) . '/../vendor/autoload.php';

foreach (array_slice($argv, 1) as $filename) {
  // See PHP_CodeCoverage_Report_PHP::process
  // @var PHP_CodeCoverage
  $cov = unserialize(file_get_contents($filename));
  if (isset($codeCoverage)) {
    $codeCoverage->filter()->addFilesToWhitelist($cov->filter()->getWhitelist());
    $codeCoverage->merge($cov);
  } else {
    $codeCoverage = $cov;
  }
}

print "\nGenerating code coverage report in HTML format ...";

// Based on PHPUnit_TextUI_TestRunner::doRun
$writer = new PHP_CodeCoverage_Report_HTML(
  'UTF-8',
  false, // 'reportHighlight'
  35, // 'reportLowUpperBound'
  70, // 'reportHighLowerBound'
  sprintf(
    ' and <a href="http://phpunit.de/">PHPUnit %s</a>',
    PHPUnit_Runner_Version::id()
      )
  );

$writer->process($codeCoverage, 'coverage');

print " done\n";
print "See coverage/index.html\n";

您也可以使用名为phpcov的工具合并文件,如下所述:https://github.com/sebastianbergmann/phpunit/pull/685