View source
<?php
namespace Drupal\Tests\lingotek\Functional\Form;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\language\Entity\ContentLanguageSettings;
use Drupal\lingotek\Entity\LingotekContentMetadata;
use Drupal\lingotek\Lingotek;
use Drupal\Tests\lingotek\Functional\LingotekTestBase;
use Drupal\node\Entity\Node;
class LingotekMetadataEditFormTest extends LingotekTestBase {
public static $modules = [
'block',
'node',
];
protected function setUp() : void {
parent::setUp();
$this
->drupalPlaceBlock('page_title_block', [
'region' => 'content',
'weight' => -5,
]);
$this
->drupalPlaceBlock('local_tasks_block', [
'region' => 'content',
'weight' => -10,
]);
$this
->drupalCreateContentType([
'type' => 'article',
'name' => 'Article',
]);
$this
->drupalCreateContentType([
'type' => 'page',
'name' => 'Page',
]);
ConfigurableLanguage::createFromLangcode('es')
->setThirdPartySetting('lingotek', 'locale', 'es_MX')
->save();
ContentLanguageSettings::loadByEntityTypeBundle('node', 'article')
->setLanguageAlterable(TRUE)
->save();
\Drupal::service('content_translation.manager')
->setEnabled('node', 'article', TRUE);
ContentLanguageSettings::loadByEntityTypeBundle('node', 'page')
->setLanguageAlterable(TRUE)
->save();
\Drupal::service('content_translation.manager')
->setEnabled('node', 'page', TRUE);
drupal_static_reset();
\Drupal::entityTypeManager()
->clearCachedDefinitions();
$this
->applyEntityUpdates();
$this
->rebuildContainer();
$this
->saveLingotekContentTranslationSettingsForNodeTypes();
}
public function testMetadataLocalTaskNotAvailable() {
$assert_session = $this
->assertSession();
$edit = [];
$edit['title[0][value]'] = 'Llamas are cool';
$edit['body[0][value]'] = 'Llamas are very cool';
$edit['langcode[0][value]'] = 'en';
$edit['lingotek_translation_management[lingotek_translation_profile]'] = 'automatic';
$this
->saveAndPublishNodeForm($edit);
$this
->assertUrl('/node/1', [], 'Node has been created.');
$assert_session
->linkNotExists(t('Lingotek Metadata'));
}
public function testMetadataLocalTaskAvailable() {
$assert_session = $this
->assertSession();
$this
->drupalPostForm('admin/lingotek/settings', [], 'Enable debug operations');
$edit = [];
$edit['title[0][value]'] = 'Llamas are cool';
$edit['body[0][value]'] = 'Llamas are very cool';
$edit['langcode[0][value]'] = 'en';
$edit['lingotek_translation_management[lingotek_translation_profile]'] = 'automatic';
$this
->saveAndPublishNodeForm($edit);
$this
->assertUrl('/node/1', [], 'Node has been created.');
$this
->drupalGet('/node/1');
$assert_session
->linkExists(t('Lingotek Metadata'));
}
public function testMetadataEditForm() {
$this
->drupalPostForm('admin/lingotek/settings', [], 'Enable debug operations');
$edit = [];
$edit['title[0][value]'] = 'Llamas are cool';
$edit['body[0][value]'] = 'Llamas are very cool';
$edit['langcode[0][value]'] = 'en';
$edit['lingotek_translation_management[lingotek_translation_profile]'] = 'automatic';
$this
->saveAndPublishNodeForm($edit);
$this
->drupalGet('/node/1');
$this
->clickLink(t('Lingotek Metadata'));
$this
->assertUrl('/node/1/metadata', [], 'Metadata local task enables the metadata form.');
$this
->assertFieldById('edit-lingotek-document-id', 'dummy-document-hash-id');
$this
->assertOptionSelected('edit-lingotek-source-status', Lingotek::STATUS_IMPORTING);
$this
->assertOptionSelected('edit-en', Lingotek::STATUS_IMPORTING);
$this
->assertOptionSelected('edit-es', Lingotek::STATUS_REQUEST);
$this
->assertFieldById('edit-lingotek-job-id', '');
$this
->assertFieldByName('verbatim_area[verbatim]', <<<JSON
{
"id": [
{
"value": "1"
}
],
"content_entity_type_id": [
{
"value": "node"
}
],
"content_entity_id": [
{
"value": "1"
}
],
"document_id": [
{
"value": "dummy-document-hash-id"
}
],
"hash": [],
"profile": [
{
"target_id": "automatic"
}
],
"translation_source": [
{
"value": "en"
}
],
"translation_status": [
{
"value": "IMPORTING",
"language": "en"
},
{
"value": "REQUEST",
"language": "es"
}
],
"job_id": []
}
JSON
);
$this
->assertFieldByName('lingotek_translation_management[lingotek_translation_profile]', 'automatic');
$edit = [
'lingotek_document_id' => 'another-id',
'lingotek_source_status' => Lingotek::STATUS_UNTRACKED,
'en' => Lingotek::STATUS_UNTRACKED,
'es' => Lingotek::STATUS_READY,
'lingotek_job_id' => 'a new edited job id',
'lingotek_translation_management[lingotek_translation_profile]' => 'manual',
];
$this
->drupalPostForm(NULL, $edit, 'Save metadata');
$this
->assertFieldById('edit-lingotek-document-id', 'another-id');
$this
->assertOptionSelected('edit-lingotek-source-status', Lingotek::STATUS_UNTRACKED);
$this
->assertOptionSelected('edit-en', Lingotek::STATUS_UNTRACKED);
$this
->assertOptionSelected('edit-es', Lingotek::STATUS_READY);
$this
->assertFieldById('edit-lingotek-job-id', 'a new edited job id');
$this
->assertFieldByName('verbatim_area[verbatim]', <<<JSON
{
"id": [
{
"value": "1"
}
],
"content_entity_type_id": [
{
"value": "node"
}
],
"content_entity_id": [
{
"value": "1"
}
],
"document_id": [
{
"value": "another-id"
}
],
"hash": [],
"profile": [
{
"target_id": "manual"
}
],
"translation_source": [
{
"value": "en"
}
],
"translation_status": [
{
"value": "UNTRACKED",
"language": "en"
},
{
"value": "READY",
"language": "es"
}
],
"job_id": [
{
"value": "a new edited job id"
}
]
}
JSON
);
$this
->assertFieldByName('lingotek_translation_management[lingotek_translation_profile]', 'manual');
$configuration_service = \Drupal::service('lingotek.configuration');
$content_translation_service = \Drupal::service('lingotek.content_translation');
$node = Node::load(1);
$this
->assertIdentical('another-id', $content_translation_service
->getDocumentId($node));
$this
->assertIdentical('manual', $configuration_service
->getEntityProfile($node, FALSE)
->id());
$this
->assertIdentical(Lingotek::STATUS_UNTRACKED, $content_translation_service
->getSourceStatus($node));
$this
->assertIdentical(Lingotek::STATUS_UNTRACKED, $content_translation_service
->getTargetStatus($node, 'en'));
$this
->assertIdentical(Lingotek::STATUS_READY, $content_translation_service
->getTargetStatus($node, 'es'));
$metadata = LingotekContentMetadata::load(1);
$this
->assertIdentical('a new edited job id', $metadata
->getJobId(), 'Lingotek metadata job id was saved correctly.');
}
public function testMetadataEditFormWithoutEnablingBundle() {
$assert_session = $this
->assertSession();
$this
->drupalPostForm('admin/lingotek/settings', [], 'Enable debug operations');
$edit = [];
$edit['title[0][value]'] = 'Llamas are cool';
$edit['body[0][value]'] = 'Llamas are very cool';
$edit['langcode[0][value]'] = 'en';
$this
->saveAndPublishNodeForm($edit, 'page');
$this
->drupalGet('/node/1');
$this
->clickLink(t('Lingotek Metadata'));
$this
->assertUrl('/node/1/metadata', [], 'Metadata local task enables the metadata form.');
$this
->assertFieldById('edit-lingotek-document-id', '');
$this
->assertOptionSelected('edit-lingotek-source-status', Lingotek::STATUS_UNTRACKED);
$this
->assertOptionSelected('edit-en', Lingotek::STATUS_UNTRACKED);
$this
->assertOptionSelected('edit-es', Lingotek::STATUS_UNTRACKED);
$this
->assertFieldById('edit-lingotek-job-id', '');
$this
->assertFieldByName('verbatim_area[verbatim]', 'NULL');
$edit = [
'lingotek_document_id' => 'another-id',
'lingotek_source_status' => Lingotek::STATUS_UNTRACKED,
'en' => Lingotek::STATUS_UNTRACKED,
'es' => Lingotek::STATUS_READY,
'lingotek_job_id' => 'a new edited job id',
];
$this
->drupalPostForm(NULL, $edit, 'Save metadata');
$assert_session
->pageTextNotContains('Metadata saved successfully');
$assert_session
->pageTextContains('This entity cannot be managed in Lingotek. Please check your configuration.');
}
public function testMetadataEditFormWithoutExistingMetadata() {
$assert_session = $this
->assertSession();
$this
->drupalPostForm('admin/lingotek/settings', [], 'Enable debug operations');
$edit = [];
$edit['title[0][value]'] = 'Llamas are cool';
$edit['body[0][value]'] = 'Llamas are very cool';
$edit['langcode[0][value]'] = 'en';
$this
->saveAndPublishNodeForm($edit, 'page');
$this
->saveLingotekContentTranslationSettingsForNodeTypes([
'page',
]);
$this
->drupalGet('/node/1');
$this
->clickLink(t('Lingotek Metadata'));
$this
->assertUrl('/node/1/metadata', [], 'Metadata local task enables the metadata form.');
$this
->assertFieldById('edit-lingotek-document-id', '');
$this
->assertOptionSelected('edit-lingotek-source-status', Lingotek::STATUS_UNTRACKED);
$this
->assertOptionSelected('edit-en', Lingotek::STATUS_UNTRACKED);
$this
->assertOptionSelected('edit-es', Lingotek::STATUS_UNTRACKED);
$this
->assertFieldById('edit-lingotek-job-id', '');
$this
->assertFieldByName('verbatim_area[verbatim]', 'NULL');
$edit = [
'lingotek_document_id' => 'another-id',
'lingotek_source_status' => Lingotek::STATUS_UNTRACKED,
'en' => Lingotek::STATUS_UNTRACKED,
'es' => Lingotek::STATUS_READY,
'lingotek_job_id' => 'a new edited job id',
];
$this
->drupalPostForm(NULL, $edit, 'Save metadata');
$assert_session
->pageTextContains('Metadata saved successfully');
$this
->assertFieldById('edit-lingotek-document-id', 'another-id');
$this
->assertOptionSelected('edit-lingotek-source-status', Lingotek::STATUS_UNTRACKED);
$this
->assertOptionSelected('edit-en', Lingotek::STATUS_UNTRACKED);
$this
->assertOptionSelected('edit-es', Lingotek::STATUS_READY);
$this
->assertFieldById('edit-lingotek-job-id', 'a new edited job id');
$this
->assertFieldByName('verbatim_area[verbatim]', <<<JSON
{
"id": [
{
"value": "1"
}
],
"content_entity_type_id": [
{
"value": "node"
}
],
"content_entity_id": [
{
"value": "1"
}
],
"document_id": [
{
"value": "another-id"
}
],
"hash": [],
"profile": [
{
"target_id": "automatic"
}
],
"translation_source": [
{
"value": "en"
}
],
"translation_status": [
{
"value": "UNTRACKED",
"language": "en"
},
{
"value": "READY",
"language": "es"
}
],
"job_id": [
{
"value": "a new edited job id"
}
]
}
JSON
);
$content_translation_service = \Drupal::service('lingotek.content_translation');
$node = Node::load(1);
$this
->assertIdentical('another-id', $content_translation_service
->getDocumentId($node));
$this
->assertIdentical(Lingotek::STATUS_UNTRACKED, $content_translation_service
->getSourceStatus($node));
$this
->assertIdentical(Lingotek::STATUS_UNTRACKED, $content_translation_service
->getTargetStatus($node, 'en'));
$this
->assertIdentical(Lingotek::STATUS_READY, $content_translation_service
->getTargetStatus($node, 'es'));
$metadata = LingotekContentMetadata::load(1);
$this
->assertIdentical('a new edited job id', $metadata
->getJobId(), 'Lingotek metadata job id was saved correctly.');
}
}