mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-13 23:11:07 -05:00
40 lines
842 B
PHP
40 lines
842 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
require_once dirname(__DIR__, 3) . '/cli/i18n/I18nFile.php';
|
|
|
|
final class I18nFileTest extends \PHPUnit\Framework\TestCase {
|
|
public function test(): void {
|
|
$before = $this->computeFilesHash();
|
|
|
|
$file = new I18nFile();
|
|
$data = $file->load();
|
|
$file->dump($data);
|
|
|
|
$after = $this->computeFilesHash();
|
|
|
|
self::assertSame($before, $after);
|
|
}
|
|
|
|
/** @return array<string,string|false> */
|
|
private function computeFilesHash(): array {
|
|
$hashes = [];
|
|
|
|
$dirs = new DirectoryIterator(I18N_PATH);
|
|
foreach ($dirs as $dir) {
|
|
if ($dir->isDot()) {
|
|
continue;
|
|
}
|
|
$files = new DirectoryIterator($dir->getPathname());
|
|
foreach ($files as $file) {
|
|
if (!$file->isFile()) {
|
|
continue;
|
|
}
|
|
|
|
$hashes[$file->getPathname()] = sha1_file($file->getPathname());
|
|
}
|
|
}
|
|
|
|
return $hashes;
|
|
}
|
|
}
|