View source
<?php
namespace Drupal\Tests\tmgmt_file\Functional;
use Drupal\Component\Utility\Html;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Tests\tmgmt\Functional\TMGMTTestBase;
use Drupal\tmgmt\Entity\Job;
use Drupal\tmgmt\Entity\Translator;
use Drupal\tmgmt\JobInterface;
use GuzzleHttp\Exception\RequestException;
class FileTranslatorTest extends TMGMTTestBase {
public static $modules = array(
'tmgmt_file',
'tmgmt',
);
function setUp() : void {
parent::setUp();
$this
->loginAsAdmin();
$this
->addLanguage('de');
}
public function testXLIFFTextProcessing() {
$translator = $this
->createTranslator([
'plugin' => 'file',
'settings' => [
'export_format' => 'xlf',
'xliff_processing' => TRUE,
'format_configuration' => [
'target' => '',
],
],
]);
$source_text = trim(file_get_contents(drupal_get_path('module', 'tmgmt') . '/tests/testing_html/sample.html'));
$reader = new \XMLReader();
$xliff_elements = array(
'bpt',
'ept',
'ph',
'x',
'#text',
'#cdata-section',
'content',
);
$job = $this
->createJob();
$job->translator = $translator
->id();
$job
->addItem('test_html_source', 'test', '1');
mkdir('public://tmgmt_file', 0555);
$job
->requestTranslation();
$content = $this
->getTransUnitsContent($job);
$reader
->XML('<content>' . $content[0]['source'] . '</content>');
while ($reader
->read()) {
if (!in_array($reader->name, $xliff_elements)) {
$this
->fail(t('The source contains unexpected element %element', array(
'%element' => $reader->name,
)));
}
}
$reader
->XML('<content>' . $content[0]['target'] . '</content>');
while ($reader
->read()) {
if (!in_array($reader->name, $xliff_elements)) {
$this
->fail(t('The target contains unexpected element %element', array(
'%element' => $reader->name,
)));
}
}
$messages = $job
->getMessages();
$message = reset($messages);
$translated_file = 'public://tmgmt_file/translated.xlf';
$this
->createTranslationFile($message->variables->{'@link'}, 'one paragraph', 'one translated paragraph', $translated_file);
$edit = array(
'files[file]' => $translated_file,
);
$this
->drupalPostForm($job
->toUrl(), $edit, t('Import'));
\Drupal::entityTypeManager()
->getStorage('tmgmt_job')
->resetCache();
\Drupal::entityTypeManager()
->getStorage('tmgmt_job_item')
->resetCache();
$job = Job::load($job
->id());
$item_data = $job
->getData(array(
1,
'dummy',
'deep_nesting',
));
$this
->assertEqual(trim($item_data[1]['#translation']['#text']), str_replace('one paragraph', 'one translated paragraph', $source_text));
$job_items = $job
->getItems();
$job_item = array_shift($job_items);
$this
->assertTrue($job_item
->isNeedsReview());
$this
->assertIntegrityCheck($job, FALSE);
$job = $this
->createJob();
$job->translator = $translator
->id();
$job
->addItem('test_html_source', 'test', '1');
$job
->requestTranslation();
$messages = $job
->getMessages();
$message = reset($messages);
$translated_file = 'public://tmgmt_file/translated.xlf';
$this
->createTranslationFile($message->variables->{'@link'}, '<x id="tjiid2-4" ctype="lb"/>', '', $translated_file);
$edit = array(
'files[file]' => $translated_file,
);
$this
->drupalPostForm($job
->toUrl(), $edit, t('Import'));
\Drupal::entityTypeManager()
->getStorage('tmgmt_job')
->resetCache();
\Drupal::entityTypeManager()
->getStorage('tmgmt_job_item')
->resetCache();
$job = Job::load($job
->id());
$this
->assertIntegrityCheck($job);
$translator
->setSetting('xliff_processing', FALSE);
$translator
->save();
$job = $this
->createJob();
$job->translator = $translator
->id();
$job
->addItem('test_html_source', 'test', '1');
$job
->requestTranslation();
$targets = $this
->getTransUnitsContent($job);
$this
->assertEqual(trim(html_entity_decode($targets['0']['source'])), $source_text);
}
function testXLIFFCDATA() {
$translator = $this
->createTranslator([
'plugin' => 'file',
'settings' => [
'export_format' => 'xlf',
'xliff_cdata' => TRUE,
],
]);
$source_text = trim(file_get_contents(drupal_get_path('module', 'tmgmt') . '/tests/testing_html/sample.html'));
$job = $this
->createJob();
$job->translator = $translator
->id();
$job
->addItem('test_html_source', 'test', '1');
$job
->requestTranslation();
$messages = $job
->getMessages();
$message = reset($messages);
$variables = $message->variables;
$download_url = $variables->{'@link'};
$this
->assertFalse((bool) strpos('< a', $download_url));
$xliff = file_get_contents($download_url);
$dom = new \DOMDocument();
$dom
->loadXML($xliff);
$this
->assertTrue($dom
->schemaValidate(drupal_get_path('module', 'tmgmt_file') . '/xliff-core-1.2-strict.xsd'));
$xml = simplexml_import_dom($dom);
$translated_text = array();
foreach ($xml->file->body
->children() as $group) {
foreach ($group
->children() as $transunit) {
if ($transunit
->getName() == 'trans-unit') {
$this
->assertEqual($transunit->target, '');
$node = dom_import_simplexml($transunit->target);
$owner = $node->ownerDocument;
$node
->appendChild($owner
->createCDATASection($xml->file['target-language'] . '_' . (string) $transunit->source));
$translated_text[(string) $group['id']][(string) $transunit['id']] = (string) $transunit->target;
}
}
}
$translated_file = 'public://tmgmt_file/translated file.xlf';
$xml
->asXML($translated_file);
$edit = array(
'files[file]' => $translated_file,
);
$this
->drupalPostForm($job
->toUrl(), $edit, t('Import'));
\Drupal::entityTypeManager()
->getStorage('tmgmt_job')
->resetCache();
\Drupal::entityTypeManager()
->getStorage('tmgmt_job_item')
->resetCache();
$job = Job::load($job
->id());
$item_data = $job
->getData(array(
1,
'dummy',
'deep_nesting',
));
$this
->assertEqual(trim($item_data[1]['#translation']['#text']), str_replace($source_text, $xml->file['target-language'] . '_' . $source_text, $source_text));
}
protected function getTransUnitsContent(JobInterface $job) {
$messages = $job
->getMessages();
$message = reset($messages);
$download_url = $message->variables->{'@link'};
$this
->assertFalse((bool) strpos('< a', $download_url));
$xml_string = file_get_contents($download_url);
$xml = simplexml_load_string($xml_string);
$xml
->registerXPathNamespace('xliff', 'urn:oasis:names:tc:xliff:document:1.2');
$reader = new \XMLReader();
$data = array();
$i = 0;
foreach ($xml
->xpath('//xliff:trans-unit') as $unit) {
$reader
->XML($unit->source
->asXML());
$reader
->read();
$data[$i]['source'] = $reader
->readInnerXML();
$reader
->XML($unit->target
->asXML());
$reader
->read();
$data[$i]['target'] = $reader
->readInnerXML();
$i++;
}
return $data;
}
function testHTML() {
$translator = Translator::load('file');
$translator
->setSetting('export_format', 'html')
->save();
$job = $this
->createJob();
$job->translator = $translator
->id();
$job
->addItem('test_source', 'test', '1');
$job
->addItem('test_source', 'test', '2');
$job
->requestTranslation();
$messages = $job
->getMessages();
$message = reset($messages);
$download_url = $message->variables->{'@link'};
$this
->assertFalse((bool) strpos('< a', $download_url));
$xml = simplexml_load_file($download_url);
$translated_text = array();
foreach ($xml->body
->children() as $group) {
for ($i = 0; $i < $group
->count(); $i++) {
$group->div[$i] = (string) $xml->head->meta[3]['content'] . '_' . (string) $group->div[$i];
$translated_text[(string) $group['id']][(string) $group->div[$i]['id']] = (string) $group->div[$i];
}
}
$translated_file = 'public://tmgmt_file/translated.html';
$xml
->asXML($translated_file);
$this
->importFile($translated_file, $translated_text, $job);
}
function testXLIFF() {
$translator = Translator::load('file');
$translator
->setSetting('export_format', 'xlf')
->setSetting('format_configuration', [
'target' => 'source',
])
->save();
\Drupal::state()
->set('tmgmt.test_source_data', array(
'dummy' => array(
'deep_nesting' => array(
'#text' => file_get_contents(drupal_get_path('module', 'tmgmt') . '/tests/testing_html/sample.html') . ' @id.',
'#label' => 'Label of deep nested item @id',
),
'#label' => 'Dummy item',
),
'another_item' => array(
'#text' => 'Text of another item @id.',
'#label' => 'Label of another item @id.',
'#max_length' => '100',
),
));
$job = $this
->createJob();
$job->translator = $translator
->id();
$first_item = $job
->addItem('test_source', 'test', '1');
$first_item_data = \Drupal::service('tmgmt.data')
->flatten($first_item
->getData());
$job
->addItem('test_source', 'test', '2');
$job
->requestTranslation();
$messages = $job
->getMessages();
$message = reset($messages);
$variables = $message->variables;
$download_url = $variables->{'@link'};
$this
->assertFalse((bool) strpos('< a', $download_url));
$xliff = file_get_contents($download_url);
$dom = new \DOMDocument();
$dom
->loadXML($xliff);
$this
->assertTrue($dom
->schemaValidate(drupal_get_path('module', 'tmgmt_file') . '/xliff-core-1.2-strict.xsd'));
$expected_notes = [
'1][dummy][deep_nesting' => 'Dummy item > Label of deep nested item @id',
'1][another_item' => 'Label of another item @id.',
'2][dummy][deep_nesting' => 'Dummy item > Label of deep nested item @id',
'2][another_item' => 'Label of another item @id.',
];
$xml = simplexml_import_dom($dom);
$translated_text = array();
foreach ($xml->file->body
->children() as $group) {
foreach ($group
->children() as $transunit) {
if ($transunit
->getName() == 'trans-unit') {
$this
->assertEqual($transunit->target, $transunit->source);
$this
->assertEqual($expected_notes[(string) $transunit['id']], (string) $transunit->note);
$transunit->target = $xml->file['target-language'] . '_' . (string) $transunit->source;
$translated_text[(string) $group['id']][(string) $transunit['id']] = (string) $transunit->target;
$attributes = $transunit
->attributes();
if ($transunit
->attributes()['id'] == '1][another_item') {
$this
->assertEquals('100', $attributes['maxwidth']);
$this
->assertEquals('char', $attributes['size-unit']);
}
if ($transunit
->attributes()['id'] == '1][dummy][deep_nesting') {
$this
->assertFalse(isset($attributes['maxwidth']));
$this
->assertFalse(isset($attributes['size-unit']));
}
}
}
}
$wrong_xml = clone $xml;
$wrong_xml->file->header->{'phase-group'}->phase['job-id'] = 500;
$wrong_file = 'public://tmgmt_file/wrong_file.xlf';
$wrong_xml
->asXML($wrong_file);
$edit = array(
'files[file]' => $wrong_file,
);
$this
->drupalPostForm($job
->toUrl(), $edit, t('Import'));
$this
->assertText(t('Failed to validate file, import aborted.'));
$wrong_xml = clone $xml;
$second_job = $this
->createJob();
$second_job->translator = $translator
->id();
$xliff_validation = array(
1 => 0,
2 => 0,
);
$second_job->settings->xliff_validation = $xliff_validation;
$second_job
->save();
$wrong_xml->file->header->{'phase-group'}->phase['job-id'] = $second_job
->id();
$wrong_file = 'public://tmgmt_file/wrong_file.xlf';
$wrong_xml
->asXML($wrong_file);
$edit = array(
'files[file]' => $wrong_file,
);
$this
->drupalPostForm($job
->toUrl(), $edit, t('Import'));
$this
->assertRaw(t('The imported file job id @file_id does not match the job id @job_id.', array(
'@file_id' => $second_job
->id(),
'@job_id' => $job
->id(),
)));
$translated_file = 'public://tmgmt_file/translated file.xlf';
$xml
->asXML($translated_file);
$edit = array(
'files[file]' => $translated_file,
);
$this
->drupalPostForm($job
->toUrl(), $edit, t('Import'));
$this
->assertText(t('The translation of @job_item to German is finished and can now be reviewed.', [
'@job_item' => $first_item
->label(),
]));
$this
->clickLink(t('Review'));
$this
->getSession()
->getPage()
->pressButton('reviewed-dummy|deep_nesting');
$xml->file->body->group[0]->{'trans-unit'}[1]->target = $xml->file->body->group[0]->{'trans-unit'}[1]->target . ' updated';
$xml
->asXML($translated_file);
$edit = array(
'files[file]' => $translated_file,
);
$this
->drupalPostForm($job
->toUrl(), $edit, t('Import'));
$this
->assertText('Review');
$this
->drupalGet($first_item
->toUrl());
$this
->assertFieldByName('dummy|deep_nesting[translation]', 'de_' . $first_item_data['dummy][deep_nesting']['#text']);
$this
->assertFieldByName('another_item[translation]', 'de_' . $first_item_data['another_item']['#text'] . ' updated');
$this
->importFile($translated_file, $translated_text, $job);
$this
->assertNoText(t('Import translated file'));
$other_job = $this
->createJob();
$other_job->translator = $translator
->id();
$other_job
->save();
$other_job
->delete();
$response = \Drupal::httpClient()
->get($download_url);
$this
->assertEqual(200, $response
->getStatusCode());
$job
->delete();
try {
$response = \Drupal::httpClient()
->get($download_url);
$this
->fail('Expected exception not thrown.');
} catch (RequestException $e) {
$this
->assertEqual(404, $e
->getResponse()
->getStatusCode());
}
}
function testPrivate() {
$translator = $this
->createTranslator([
'plugin' => 'file',
'settings' => [
'export_format' => 'xlf',
'xliff_processing' => TRUE,
'scheme' => 'private',
],
]);
$job = $this
->createJob();
$job->translator = $translator
->id();
$job
->addItem('test_source', 'test', '1');
$job
->addItem('test_source', 'test', '2');
$job
->requestTranslation();
$messages = $job
->getMessages();
$message = reset($messages);
$this
->drupalGet('admin/tmgmt/jobs');
$this
->clickLink(t('Manage'));
$this
->assertEqual(count($this
->xpath('//div[@id="tmgmt-ui-label"]')), 1);
$download_url = $message->variables->{'@link'};
$this
->assertFalse((bool) strpos('< a', $download_url));
$this
->drupalGet($download_url);
$this
->assertNotEmpty(preg_match('|system/files|', $download_url));
$this
->assertResponse(200);
$this
->drupalLogout();
$this
->drupalGet($download_url);
$this
->assertResponse(403);
}
protected function importFile($translated_file, $translated_text, JobInterface $job) {
$edit = array(
'files[file]' => $translated_file,
);
$this
->drupalPostForm($job
->toUrl(), $edit, t('Import'));
$this
->assertNoRaw('title="In progress"');
list($item1, $item2) = array_values($job
->getItems());
$this
->drupalGet($item1
->toUrl());
foreach ($translated_text[1] as $key => $value) {
$this
->assertText(Html::escape($value));
}
foreach ($translated_text[2] as $key => $value) {
$this
->assertNoText(Html::escape($value));
}
$this
->drupalPostForm(NULL, array(), t('Save as completed'));
$this
->drupalGet($item2
->toUrl());
foreach ($translated_text[1] as $key => $value) {
$this
->assertNoText(Html::escape($value));
}
foreach ($translated_text[2] as $key => $value) {
$this
->assertText(Html::escape($value));
}
$this
->drupalPostForm(NULL, array(), t('Save as completed'));
$this
->assertText(t('Finished'));
$this
->assertNoRaw('title="Needs review"');
}
protected function createTranslationFile($source_file, $search, $replace, $translated_file) {
$xml_string = file_get_contents($source_file);
preg_match('/<source xml:lang="en">(.+)<\\/source>/s', $xml_string, $matches);
$target = str_replace($search, $replace, $matches[1]);
if ($replace) {
$this
->assertTrue(strpos($target, $replace) !== FALSE, 'String replaced in translation');
}
$translated_xml_string = str_replace('<target xml:lang="de"/>', '<target xml:lang="de">' . $target . '</target>', $xml_string);
file_put_contents($translated_file, $translated_xml_string);
}
protected function assertIntegrityCheck(JobInterface $job, $expected = TRUE) {
$integrity_check_failed = FALSE;
foreach ($job
->getMessages() as $message) {
if ($message
->getMessage() == new TranslatableMarkup('Failed to validate semantic integrity of %key element. Please check also the HTML code of the element in the review process.', array(
'%key' => 'dummy][deep_nesting',
))) {
$integrity_check_failed = TRUE;
break;
}
}
if ($expected) {
$this
->assertTrue($integrity_check_failed, 'The validation of semantic integrity must fail.');
}
else {
$this
->assertFalse($integrity_check_failed, 'The validation of semantic integrity must not fail.');
}
}
}