قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-25 00:17:37 +00:00

* [Coding Style] Enable rule PSR12.Files.FileHeader * Apply CS * Replace Piwik with Matomo in file headers * Unify file headers (position, no. of lines, https links) * Rebuild dist files * Apply CS * Fix system test that relies on line numbers in a file that had the file header updated --------- Co-authored-by: Stefan Giehl <stefan@matomo.org>
39 خطوط
1.1 KiB
PHP
39 خطوط
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*/
|
|
|
|
namespace Piwik\Tests\Unit\Translation\Loader;
|
|
|
|
/**
|
|
* @group Translation
|
|
* @group langfiles
|
|
*/
|
|
class FilesTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @dataProvider getTranslationFiles
|
|
*/
|
|
public function testForValidJsonFiles($file)
|
|
{
|
|
$json = json_decode(file_get_contents($file), true);
|
|
|
|
$this->assertIsArray($json, "translation file $file seems to be corrupted or empty");
|
|
}
|
|
|
|
public function getTranslationFiles()
|
|
{
|
|
$filesBase = glob(PIWIK_DOCUMENT_ROOT . DIRECTORY_SEPARATOR . 'lang' . DIRECTORY_SEPARATOR . '*.json');
|
|
$filesPlugins = glob(PIWIK_DOCUMENT_ROOT . DIRECTORY_SEPARATOR . 'plugins' . DIRECTORY_SEPARATOR . '*' . DIRECTORY_SEPARATOR . 'lang' . DIRECTORY_SEPARATOR . '*.json');
|
|
|
|
$allFiles = array_merge($filesBase, $filesPlugins);
|
|
return array_map(function ($val) {
|
|
return [$val];
|
|
}, $allFiles);
|
|
}
|
|
}
|