mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Tests\Wallabag\Tools;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Symfony\Component\Finder\Finder;
|
|
use Wallabag\Tools\Utils;
|
|
|
|
class UtilsTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider examples
|
|
*/
|
|
public function testCorrectWordsCountForDifferentLanguages($filename, $text, $expectedCount)
|
|
{
|
|
static::assertSame((float) $expectedCount, Utils::getReadingTime($text), 'Reading time for: ' . $filename);
|
|
}
|
|
|
|
public function examples()
|
|
{
|
|
$examples = [];
|
|
$finder = (new Finder())->in(__DIR__ . '/samples');
|
|
foreach ($finder->getIterator() as $file) {
|
|
preg_match('/-----CONTENT-----\s*(.*?)\s*-----READING_TIME-----\s*(.*)/sx', $file->getContents(), $match);
|
|
|
|
if (3 !== \count($match)) {
|
|
throw new \Exception('Sample file "' . $file->getRelativePathname() . '" as wrong definition, see README.');
|
|
}
|
|
|
|
$examples[] = [
|
|
$file->getRelativePathname(),
|
|
$match[1], // content
|
|
$match[2], // reading time
|
|
];
|
|
}
|
|
|
|
return $examples;
|
|
}
|
|
}
|