View source
<?php
namespace Drupal\Tests\tmgmt_locale\Kernel;
use Drupal\Core\File\FileSystemInterface;
use Drupal\locale\Gettext;
use Drupal\Tests\tmgmt\Kernel\TMGMTKernelTestBase;
class LocaleSourceTest extends TMGMTKernelTestBase {
public static $modules = array(
'tmgmt_locale',
);
function setUp() : void {
parent::setUp();
$this->langcode = 'de';
$this->context = 'default';
\Drupal::service('router.builder')
->rebuild();
$this
->installSchema('locale', array(
'locales_source',
'locales_target',
));
$file = new \stdClass();
$file->uri = \Drupal::service('file_system')
->realpath(drupal_get_path('module', 'tmgmt_locale') . '/tests/test.xx.po');
$file->langcode = $this->langcode;
Gettext::fileToDatabase($file, array());
$this
->addLanguage('es');
}
function testSingularTerm() {
$locale_object = \Drupal::database()
->query('SELECT * FROM {locales_source} WHERE source = :source LIMIT 1', array(
':source' => 'Hello World',
))
->fetchObject();
$source_text = $locale_object->source;
$job = $this
->createJob();
$job->translator = $this->default_translator
->id();
$job->settings = array();
$job
->save();
$item1 = $job
->addItem('locale', 'default', $locale_object->lid);
$this
->assertEqual($item1
->getItemId(), $locale_object->lid, 'Locale Strings object correctly saved');
$this
->assertEqual('Locale', $item1
->getSourceType());
$this
->assertEqual('Hello World', $item1
->getSourceLabel());
$job
->requestTranslation();
foreach ($job
->getItems() as $item) {
$item
->acceptTranslation();
$this
->assertTrue($item
->isAccepted());
$this
->assertJobItemLangCodes($item, 'en', array(
'en',
'de',
));
}
$expected_translation = $job
->getTargetLangcode() . '(' . $job
->getRemoteTargetLanguage() . '): ' . $source_text;
$this
->assertTranslation($locale_object->lid, 'de', $expected_translation);
$target_langcode = 'es';
$job = $this
->createJob('de', $target_langcode);
$job->translator = $this->default_translator
->id();
$job->settings = array();
$job
->save();
$item1 = $job
->addItem('locale', 'default', $locale_object->lid);
$this
->assertEqual('Locale', $item1
->getSourceType());
$this
->assertEqual($expected_translation, $item1
->getSourceLabel());
$job
->requestTranslation();
foreach ($job
->getItems() as $item) {
$item
->acceptTranslation();
$this
->assertTrue($item
->isAccepted());
$this
->assertJobItemLangCodes($item, 'en', array(
'en',
'de',
'es',
));
}
$this
->assertTranslation($locale_object->lid, $target_langcode, $job
->getTargetLangcode() . ': ' . $expected_translation);
}
function testRequestDataForSpecificLanguage() {
$this
->addLanguage('cs');
$locale_object = \Drupal::database()
->query('SELECT * FROM {locales_source} WHERE source = :source LIMIT 1', array(
':source' => 'Hello World',
))
->fetchObject();
$plugin = $this->container
->get('plugin.manager.tmgmt.source')
->createInstance('locale');
$reflection_plugin = new \ReflectionClass('\\Drupal\\tmgmt_locale\\Plugin\\tmgmt\\Source\\LocaleSource');
$updateTranslation = $reflection_plugin
->getMethod('updateTranslation');
$updateTranslation
->setAccessible(TRUE);
$updateTranslation
->invoke($plugin, $locale_object->lid, 'de', 'de translation');
$job = $this
->createJob('de', 'cs');
$job
->save();
$job
->addItem('locale', 'default', $locale_object->lid);
$data = $job
->getData();
$this
->assertEqual($data[1]['singular']['#text'], 'de translation');
$job = $this
->createJob('es', 'cs');
$job
->save();
try {
$job
->addItem('locale', 'default', $locale_object->lid);
$this
->fail('The job item should not be added as there is no translation for language "es"');
} catch (\Exception $e) {
$languages = \Drupal::languageManager()
->getLanguages();
$this
->assertEqual(t('Unable to load %language translation for the locale %id', array(
'%language' => $languages['es']
->getName(),
'%id' => $locale_object->lid,
)), $e
->getMessage());
}
}
function testEscaping() {
$lid = \Drupal::database()
->insert('locales_source')
->fields(array(
'source' => '@place-holders need %to be !esc_aped.',
'context' => '',
))
->execute();
$job = $this
->createJob('en', 'de');
$job->translator = $this->default_translator
->id();
$job->settings = array();
$job
->save();
$item = $job
->addItem('locale', 'default', $lid);
$data = $item
->getData();
$expected_escape = array(
0 => array(
'string' => '@place-holders',
),
20 => array(
'string' => '%to',
),
27 => array(
'string' => '!esc_aped',
),
);
$this
->assertEqual($data['singular']['#escape'], $expected_escape);
$lid = \Drupal::database()
->insert('locales_source')
->fields(array(
'source' => '@ % ! example',
'context' => '',
))
->execute();
$item = $job
->addItem('locale', 'default', $lid);
$data = $item
->getData();
$this
->assertTrue(empty($data[$lid]['#escape']));
}
function testInexistantSource() {
$locale_object = new \stdClass();
$locale_object->lid = 0;
$job = $this
->createJob();
$job->translator = $this->default_translator
->id();
$job->settings = array();
$job
->save();
try {
$job
->addItem('locale', 'default', $locale_object->lid);
$this
->fail('Job item add with an inexistant locale.');
} catch (\Exception $e) {
$this
->pass('Exception thrown when trying to translate non-existing locale string');
}
$lid = \Drupal::database()
->insert('locales_source')
->fields(array(
'source' => 'No translation',
'context' => '',
))
->execute();
$job = $this
->createJob('de', 'fr');
$job->translator = $this->default_translator
->id();
$job->settings = array();
$job
->save();
try {
$job
->addItem('locale', 'default', $lid);
$this
->fail('Job item add with an non-existing locale did not fail.');
} catch (\Exception $e) {
$this
->pass('Job item add with an non-existing locale did fail.');
}
}
public function assertTranslation($lid, $target_langcode, $expected_translation) {
$actual_translation = \Drupal::database()
->query('SELECT * FROM {locales_target} WHERE lid = :lid AND language = :language', array(
':lid' => $lid,
':language' => $target_langcode,
))
->fetch();
$this
->assertEqual($actual_translation->translation, $expected_translation);
$this
->assertEqual($actual_translation->customized, LOCALE_CUSTOMIZED);
}
}