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

2022-08-30 17:51:16

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

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


答案 1

使用 “” 选项将 PHPUnit 设置为将覆盖率数据作为序列化对象写入,然后使用 组合它们,如下所示:--coverage-phpPHP_CodeCoveragePHP_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";

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


答案 2

推荐