View source
<?php
namespace Drupal\Tests\lingotek\Functional\Render\Element;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\language\Entity\ContentLanguageSettings;
use Drupal\lingotek\Lingotek;
use Drupal\node\Entity\Node;
use Drupal\Tests\lingotek\Functional\LingotekTestBase;
class RenderElementTypesTest extends LingotekTestBase {
public static $modules = [
'system',
'block',
'node',
'lingotek_form_test',
];
protected function setUp() : void {
parent::setUp();
$this
->drupalPlaceBlock('local_tasks_block');
$this
->drupalPlaceBlock('page_title_block');
$this
->drupalCreateContentType([
'type' => 'article',
'name' => 'Article',
]);
ConfigurableLanguage::createFromLangcode('es')
->setThirdPartySetting('lingotek', 'locale', 'es_ES')
->save();
ConfigurableLanguage::createFromLangcode('de')
->setThirdPartySetting('lingotek', 'locale', 'de_DE')
->save();
ConfigurableLanguage::createFromLangcode('ca')
->setThirdPartySetting('lingotek', 'locale', 'ca_ES')
->save();
ContentLanguageSettings::loadByEntityTypeBundle('node', 'article')
->setLanguageAlterable(TRUE)
->save();
\Drupal::service('content_translation.manager')
->setEnabled('node', 'article', TRUE);
drupal_static_reset();
\Drupal::entityTypeManager()
->clearCachedDefinitions();
$this
->applyEntityUpdates();
$this
->rebuildContainer();
$this
->saveLingotekContentTranslationSettingsForNodeTypes([
'article',
], 'manual');
}
public function testLingotekSourceStatus() {
$basepath = \Drupal::request()
->getBasePath();
$entity = Node::create([
'id' => 1,
'title' => 'Llamas are cool',
'type' => 'article',
]);
$entity
->save();
$translation_service = \Drupal::service('lingotek.content_translation');
$translation_service
->setSourceStatus($entity, Lingotek::STATUS_UNTRACKED);
$this
->drupalGet('/lingotek_form_test/lingotek_source_status/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<span class="language-icon source-untracked" title="Upload"><a href="' . $basepath . '/admin/lingotek/entity/upload/node/1?destination=' . $basepath . '/lingotek_form_test/lingotek_source_status/node/1">EN</a></span>');
$translation_service
->setSourceStatus($entity, Lingotek::STATUS_IMPORTING);
$translation_service
->setDocumentId($entity, 'test-document-id');
$this
->drupalGet('/lingotek_form_test/lingotek_source_status/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<span class="language-icon source-importing" title="Source importing"><a href="' . $basepath . '/admin/lingotek/entity/check_upload/test-document-id?destination=' . $basepath . '/lingotek_form_test/lingotek_source_status/node/1">EN</a></span>');
$translation_service
->setSourceStatus($entity, Lingotek::STATUS_CURRENT);
$this
->drupalGet('/lingotek_form_test/lingotek_source_status/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<span class="language-icon source-current" title="Source uploaded">EN</span>');
$translation_service
->setSourceStatus($entity, Lingotek::STATUS_DISABLED);
$this
->drupalGet('/lingotek_form_test/lingotek_source_status/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<span class="language-icon source-disabled" title="Disabled, cannot request translation">EN</span>');
$translation_service
->setSourceStatus($entity, Lingotek::STATUS_EDITED);
$this
->drupalGet('/lingotek_form_test/lingotek_source_status/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<span class="language-icon source-edited" title="Re-upload (content has changed since last upload)"><a href="' . $basepath . '/admin/lingotek/entity/update/test-document-id?destination=' . $basepath . '/lingotek_form_test/lingotek_source_status/node/1">EN</a></span>');
$translation_service
->setSourceStatus($entity, Lingotek::STATUS_ERROR);
$this
->drupalGet('/lingotek_form_test/lingotek_source_status/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<span class="language-icon source-error" title="Error"><a href="' . $basepath . '/admin/lingotek/entity/update/test-document-id?destination=' . $basepath . '/lingotek_form_test/lingotek_source_status/node/1">EN</a></span>');
}
public function testLingotekTargetStatuses() {
$basepath = \Drupal::request()
->getBasePath();
$entity = Node::create([
'id' => 1,
'title' => 'Llamas are cool',
'type' => 'article',
]);
$entity
->save();
$translation_service = \Drupal::service('lingotek.content_translation');
$this
->drupalGet('/lingotek_form_test/lingotek_translation_statuses/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->elementNotExists('xpath', '//div[contains(@class, "region-content")]/span[contains(@class, "language-icon")]');
$this
->assertSession()
->elementNotExists('xpath', '//div[contains(@class, "region-content")]/a[contains(@class, "language-icon")]');
$translation_service
->setTargetStatus($entity, 'es', Lingotek::STATUS_UNTRACKED);
$this
->drupalGet('/lingotek_form_test/lingotek_translation_statuses/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<span class="language-icon target-untracked" title="Spanish - Translation exists, but it is not being tracked by Lingotek">ES</span>');
$translation_service
->setDocumentId($entity, 'test-document-id');
$translation_service
->setTargetStatus($entity, 'es', Lingotek::STATUS_REQUEST);
$translation_service
->setTargetStatus($entity, 'de', Lingotek::STATUS_PENDING);
$translation_service
->setTargetStatus($entity, 'ca', Lingotek::STATUS_READY);
$this
->drupalGet('/lingotek_form_test/lingotek_translation_statuses/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<a href="' . $basepath . '/admin/lingotek/entity/download/test-document-id/ca_ES?destination=' . $basepath . '/lingotek_form_test/lingotek_translation_statuses/node/1" class="language-icon target-ready" title="Catalan - Ready for Download">CA</a><a href="' . $basepath . '/admin/lingotek/entity/check_target/test-document-id/de_DE?destination=' . $basepath . '/lingotek_form_test/lingotek_translation_statuses/node/1" class="language-icon target-pending" title="German - In-progress">DE</a><a href="' . $basepath . '/admin/lingotek/entity/add_target/test-document-id/es_ES?destination=' . $basepath . '/lingotek_form_test/lingotek_translation_statuses/node/1" class="language-icon target-request" title="Spanish - Request translation">ES</a>');
$translation_service
->setTargetStatus($entity, 'es', Lingotek::STATUS_INTERMEDIATE);
$translation_service
->setTargetStatus($entity, 'de', Lingotek::STATUS_CURRENT);
$translation_service
->setTargetStatus($entity, 'ca', Lingotek::STATUS_EDITED);
$this
->drupalGet('/lingotek_form_test/lingotek_translation_statuses/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<a href="' . $basepath . '/admin/lingotek/workbench/test-document-id/ca_ES" target="_blank" class="language-icon target-edited" title="Catalan - Not current">CA</a><a href="' . $basepath . '/admin/lingotek/workbench/test-document-id/de_DE" target="_blank" class="language-icon target-current" title="German - Current">DE</a><a href="' . $basepath . '/admin/lingotek/workbench/test-document-id/es_ES" target="_blank" class="language-icon target-intermediate" title="Spanish - In-progress (interim translation downloaded)">ES</a>');
$translation_service
->setTargetStatus($entity, 'es', Lingotek::STATUS_ERROR);
$this
->drupalGet('/lingotek_form_test/lingotek_translation_statuses/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<a href="' . $basepath . '/admin/lingotek/entity/download/test-document-id/es_ES?destination=' . $basepath . '/lingotek_form_test/lingotek_translation_statuses/node/1" class="language-icon target-error" title="Spanish - Error">ES</a>');
}
public function testLingotekTargetStatus() {
$basepath = \Drupal::request()
->getBasePath();
$entity = Node::create([
'id' => 1,
'title' => 'Llamas are cool',
'type' => 'article',
]);
$entity
->save();
$translation_service = \Drupal::service('lingotek.content_translation');
$this
->drupalGet('/lingotek_form_test/lingotek_translation_status/node/1');
$this
->assertSession()
->responseNotContains('lingotek/css/base.css');
$this
->assertSession()
->elementNotExists('xpath', '//div[contains(@class, "region-content")]/span[contains(@class, "language-icon")]');
$this
->assertSession()
->elementNotExists('xpath', '//div[contains(@class, "region-content")]/a[contains(@class, "language-icon")]');
$translation_service
->setTargetStatus($entity, 'es', Lingotek::STATUS_UNTRACKED);
$this
->drupalGet('/lingotek_form_test/lingotek_translation_status/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<span class="language-icon target-untracked" title="Spanish - Translation exists, but it is not being tracked by Lingotek">ES</span>');
$translation_service
->setDocumentId($entity, 'test-document-id');
$translation_service
->setTargetStatus($entity, 'es', Lingotek::STATUS_REQUEST);
$translation_service
->setTargetStatus($entity, 'de', Lingotek::STATUS_PENDING);
$translation_service
->setTargetStatus($entity, 'ca', Lingotek::STATUS_READY);
$this
->drupalGet('/lingotek_form_test/lingotek_translation_status/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<a href="' . $basepath . '/admin/lingotek/entity/add_target/test-document-id/es_ES?destination=' . $basepath . '/lingotek_form_test/lingotek_translation_status/node/1" class="language-icon target-request" title="Spanish - Request translation">ES</a><a href="' . $basepath . '/admin/lingotek/entity/check_target/test-document-id/de_DE?destination=' . $basepath . '/lingotek_form_test/lingotek_translation_status/node/1" class="language-icon target-pending" title="German - In-progress">DE</a><a href="' . $basepath . '/admin/lingotek/entity/download/test-document-id/ca_ES?destination=' . $basepath . '/lingotek_form_test/lingotek_translation_status/node/1" class="language-icon target-ready" title="Catalan - Ready for Download">CA</a>');
$translation_service
->setTargetStatus($entity, 'es', Lingotek::STATUS_INTERMEDIATE);
$translation_service
->setTargetStatus($entity, 'de', Lingotek::STATUS_CURRENT);
$translation_service
->setTargetStatus($entity, 'ca', Lingotek::STATUS_EDITED);
$this
->drupalGet('/lingotek_form_test/lingotek_translation_status/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<a href="' . $basepath . '/admin/lingotek/workbench/test-document-id/es_ES" target="_blank" class="language-icon target-intermediate" title="Spanish - In-progress (interim translation downloaded)">ES</a><a href="' . $basepath . '/admin/lingotek/workbench/test-document-id/de_DE" target="_blank" class="language-icon target-current" title="German - Current">DE</a><a href="' . $basepath . '/admin/lingotek/workbench/test-document-id/ca_ES" target="_blank" class="language-icon target-edited" title="Catalan - Not current">CA</a>');
$translation_service
->setTargetStatus($entity, 'es', Lingotek::STATUS_ERROR);
$this
->drupalGet('/lingotek_form_test/lingotek_translation_status/node/1');
$this
->assertSession()
->responseContains('lingotek/css/base.css');
$this
->assertSession()
->responseContains('<a href="' . $basepath . '/admin/lingotek/entity/download/test-document-id/es_ES?destination=' . $basepath . '/lingotek_form_test/lingotek_translation_status/node/1" class="language-icon target-error" title="Spanish - Error">ES</a>');
}
}