Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FilesTest.php « Translation « Unit « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a7f1621387afab5c75d0586afd5a6929a359d26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

namespace Piwik\Tests\Unit\Translation\Loader;

use Piwik\Translation\Loader\JsonFileLoader;
use Piwik\Translation\Translator;

/**
 * @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->assertNotEmpty($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);
    }
}