mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-04-03 21:15:26 +00:00

Co-authored-by: Yaron Shahrabani <sh.yaron@gmail.com> Co-authored-by: Victor Cleaner <victor.cleaner@gmail.com> Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com> Co-authored-by: edo-2313 <edo2313@gmail.com> Co-authored-by: Oğuz Ersen <oguzersen@protonmail.com> Co-authored-by: Jack-Benny Persson <jack-benny@cyberinfo.se> Co-authored-by: dkstiler <dkstiler@gmail.com> Co-authored-by: Nathan <bonnemainsnathan@gmail.com> Co-authored-by: dottypottylotty <muzzbuzzer@outlook.com> Co-authored-by: Adam K <uz@zu.uz> Co-authored-by: J. Lavoie <j.lavoie@net-c.ca> Co-authored-by: Kevin Papst <kpapst@gmx.net>
104 lines
3.7 KiB
PHP
104 lines
3.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Tests;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* @group integration
|
|
*/
|
|
class TranslationsTest extends TestCase
|
|
{
|
|
public function testForWrongFileExtension()
|
|
{
|
|
$files = glob(__DIR__ . '/../translations/*.*');
|
|
foreach ($files as $file) {
|
|
self::assertStringEndsWith('.xlf', $file);
|
|
}
|
|
}
|
|
|
|
public function testForEmptyStrings()
|
|
{
|
|
$files = glob(__DIR__ . '/../translations/*.xlf');
|
|
foreach ($files as $file) {
|
|
$xml = simplexml_load_file($file);
|
|
|
|
/** @var \SimpleXMLElement $body */
|
|
$body = $xml->file->body;
|
|
|
|
foreach ($body->children() as $transUnit) {
|
|
self::assertNotEmpty(
|
|
(string) $transUnit->target,
|
|
sprintf(
|
|
'Found empty translation in language "%s" and file "%s" for key "%s"',
|
|
$xml->file->attributes()['target-language'],
|
|
basename($file),
|
|
(string) $transUnit->source
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
public function testReplacerWereNotTranslated()
|
|
{
|
|
$englishFiles = glob(__DIR__ . '/../translations/*.en.xlf');
|
|
foreach ($englishFiles as $englishFile) {
|
|
$english = simplexml_load_file($englishFile);
|
|
$trans = [];
|
|
/** @var \SimpleXMLElement $body */
|
|
$body = $english->file->body;
|
|
|
|
foreach ($body->children() as $transUnit) {
|
|
preg_match_all('/%.+%/Uu', (string) $transUnit->target, $matches);
|
|
if (!empty($matches) && !empty($matches[0])) {
|
|
asort($matches[0]);
|
|
$trans[(string) $transUnit->source] = array_values($matches[0]);
|
|
}
|
|
}
|
|
|
|
if (empty($trans)) {
|
|
continue;
|
|
}
|
|
|
|
$expectedCounter = \count($trans);
|
|
$files = glob(__DIR__ . '/../translations/' . str_replace('.en.xlf', '', basename($englishFile)) . '*.xlf');
|
|
foreach ($files as $file) {
|
|
if ($englishFile === $file) {
|
|
continue;
|
|
}
|
|
|
|
$counter = 0;
|
|
$xml = simplexml_load_file($file);
|
|
$transLang = $trans;
|
|
|
|
/** @var \SimpleXMLElement $body */
|
|
$body = $xml->file->body;
|
|
|
|
foreach ($body->children() as $transUnit) {
|
|
$key = (string) $transUnit->source;
|
|
if (isset($transLang[$key])) {
|
|
// some special cases, which don't work properly - base translation should be changed
|
|
if (!\in_array($key, ['stats.percentUsed', 'stats.percentUsedLeft', 'stats.percentUsed_month', 'stats.percentUsedLeft_month'])) {
|
|
preg_match_all('/%.+%/Uu', (string) $transUnit->target, $matches);
|
|
asort($matches[0]);
|
|
self::assertEquals($transLang[$key], array_values($matches[0]), sprintf('Invalid replacer "%s" in "%s"', $key, basename($file)));
|
|
}
|
|
$counter++;
|
|
unset($transLang[$key]);
|
|
}
|
|
}
|
|
|
|
$counter += \count($transLang);
|
|
self::assertEquals($expectedCounter, $counter, sprintf('Missing replacer in "%s", did not find translation keys: %s', basename($file), implode(', ', array_keys($transLang))));
|
|
}
|
|
}
|
|
}
|
|
}
|