mirror of
				https://github.com/gtbu/Typesetter-5.3-p8.git
				synced 2025-11-04 06:48:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
require dirname(__DIR__) . '/vendor/autoload.php';
 | 
						|
 | 
						|
if( class_exists('\SebastianBergmann\CodeCoverage\CodeCoverage') ){
 | 
						|
 | 
						|
	$include_dir	= dirname(__DIR__).'/include';
 | 
						|
	$cov_obj		= new \SebastianBergmann\CodeCoverage\CodeCoverage();
 | 
						|
	$cov_obj->filter()->addDirectoryToWhitelist($include_dir);
 | 
						|
	$cov_obj->filter()->removeDirectoryFromWhitelist($include_dir.'/thirdparty');
 | 
						|
 | 
						|
 | 
						|
	$cov_dir		= dirname(__DIR__).'/x_coverage';
 | 
						|
	$files			= scandir($cov_dir);
 | 
						|
	$file_count		= 0;
 | 
						|
 | 
						|
	foreach($files as $file){
 | 
						|
 | 
						|
		if( $file === '.' || $file === '..' ){
 | 
						|
			continue;
 | 
						|
		}
 | 
						|
 | 
						|
		if( strpos($file,'request-') !== 0 ){
 | 
						|
			echo "\n - invalid coverage file: ".$file;
 | 
						|
			continue;
 | 
						|
		}
 | 
						|
 | 
						|
		echo "\n - coverage file: ".$file;
 | 
						|
 | 
						|
		$file	= $cov_dir.'/'.$file;
 | 
						|
		$data	= json_decode( file_get_contents($file),true );
 | 
						|
		$cov_obj->append($data, $file );
 | 
						|
		$file_count++;
 | 
						|
	}
 | 
						|
 | 
						|
	echo "\n - ".$file_count.' coverage files combined in '.$cov_dir;
 | 
						|
	echo "\n";
 | 
						|
 | 
						|
	$cov_file	= $cov_dir.'/requests.clover';
 | 
						|
	$writer		= new \SebastianBergmann\CodeCoverage\Report\Clover;
 | 
						|
	$writer->process($cov_obj, $cov_file);
 | 
						|
}
 |