2016-08-31 16:15:54 +00:00
|
|
|
<?php
|
|
|
|
|
2016-08-31 17:18:12 +00:00
|
|
|
namespace PhpOffice\PhpSpreadsheetTests;
|
2016-08-31 16:15:54 +00:00
|
|
|
|
2017-05-17 22:02:17 +00:00
|
|
|
use PhpOffice\PhpSpreadsheet\Helper\Sample;
|
|
|
|
use PHPUnit_Framework_TestCase;
|
|
|
|
|
|
|
|
class SampleTest extends PHPUnit_Framework_TestCase
|
2016-08-31 16:15:54 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @runInSeparateProcess
|
|
|
|
* @preserveGlobalState disabled
|
|
|
|
* @dataProvider providerSample
|
2016-12-22 14:43:37 +00:00
|
|
|
*
|
|
|
|
* @param mixed $sample
|
2016-08-31 16:15:54 +00:00
|
|
|
*/
|
|
|
|
public function testSample($sample)
|
|
|
|
{
|
2016-09-01 02:19:42 +00:00
|
|
|
// Suppress output to console
|
|
|
|
$this->setOutputCallback(function () {
|
|
|
|
});
|
|
|
|
|
2016-08-31 16:15:54 +00:00
|
|
|
require $sample;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerSample()
|
|
|
|
{
|
2017-04-01 04:54:39 +00:00
|
|
|
$skipped = [];
|
2016-09-08 16:26:46 +00:00
|
|
|
|
|
|
|
// Unfortunately some tests are too long be ran with code-coverage
|
|
|
|
// analysis on Travis, so we need to exclude them
|
|
|
|
global $argv;
|
|
|
|
if (in_array('--coverage-clover', $argv)) {
|
|
|
|
$tooLongToBeCovered = [
|
|
|
|
'06 Largescale',
|
2016-09-09 02:58:12 +00:00
|
|
|
'13 CalculationCyclicFormulae',
|
2016-09-08 16:26:46 +00:00
|
|
|
];
|
|
|
|
$skipped = array_merge($skipped, $tooLongToBeCovered);
|
|
|
|
}
|
|
|
|
|
2017-05-17 22:02:17 +00:00
|
|
|
$helper = new Sample();
|
2017-10-01 08:48:59 +00:00
|
|
|
$result = [];
|
|
|
|
foreach ($helper->getSamples() as $samples) {
|
|
|
|
foreach ($samples as $name => $sample) {
|
|
|
|
if (!in_array($name, $skipped) && preg_match('~21_Pdf_mPDF~', $sample)) {
|
|
|
|
$file = '../samples/' . $sample;
|
|
|
|
$result[] = [$file];
|
|
|
|
}
|
2016-08-31 16:15:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:48:59 +00:00
|
|
|
return $result;
|
2016-08-31 16:15:54 +00:00
|
|
|
}
|
|
|
|
}
|