public function RenderElementTypesTest::testLingotekTargetStatus in Lingotek Translation 3.3.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/Render/Element/RenderElementTypesTest.php \Drupal\Tests\lingotek\Functional\Render\Element\RenderElementTypesTest::testLingotekTargetStatus()
- 4.0.x tests/src/Functional/Render/Element/RenderElementTypesTest.php \Drupal\Tests\lingotek\Functional\Render\Element\RenderElementTypesTest::testLingotekTargetStatus()
- 3.0.x tests/src/Functional/Render/Element/RenderElementTypesTest.php \Drupal\Tests\lingotek\Functional\Render\Element\RenderElementTypesTest::testLingotekTargetStatus()
- 3.1.x tests/src/Functional/Render/Element/RenderElementTypesTest.php \Drupal\Tests\lingotek\Functional\Render\Element\RenderElementTypesTest::testLingotekTargetStatus()
- 3.2.x tests/src/Functional/Render/Element/RenderElementTypesTest.php \Drupal\Tests\lingotek\Functional\Render\Element\RenderElementTypesTest::testLingotekTargetStatus()
- 3.4.x tests/src/Functional/Render/Element/RenderElementTypesTest.php \Drupal\Tests\lingotek\Functional\Render\Element\RenderElementTypesTest::testLingotekTargetStatus()
- 3.5.x tests/src/Functional/Render/Element/RenderElementTypesTest.php \Drupal\Tests\lingotek\Functional\Render\Element\RenderElementTypesTest::testLingotekTargetStatus()
- 3.6.x tests/src/Functional/Render/Element/RenderElementTypesTest.php \Drupal\Tests\lingotek\Functional\Render\Element\RenderElementTypesTest::testLingotekTargetStatus()
- 3.7.x tests/src/Functional/Render/Element/RenderElementTypesTest.php \Drupal\Tests\lingotek\Functional\Render\Element\RenderElementTypesTest::testLingotekTargetStatus()
- 3.8.x tests/src/Functional/Render/Element/RenderElementTypesTest.php \Drupal\Tests\lingotek\Functional\Render\Element\RenderElementTypesTest::testLingotekTargetStatus()
Tests #type 'lingotek_source_status'.
File
- tests/
src/ Functional/ Render/ Element/ RenderElementTypesTest.php, line 152
Class
- RenderElementTypesTest
- Tests the markup of lingotek render element types passed to \Drupal::service('renderer')->render().
Namespace
Drupal\Tests\lingotek\Functional\Render\ElementCode
public function testLingotekTargetStatus() {
$basepath = \Drupal::request()
->getBasePath();
/** @var \Drupal\node\NodeInterface $entity */
$entity = Node::create([
'id' => 1,
'title' => 'Llamas are cool',
'type' => 'article',
]);
$entity
->save();
/** @var \Drupal\lingotek\LingotekContentTranslationServiceInterface $translation_service */
$translation_service = \Drupal::service('lingotek.content_translation');
$this
->drupalGet('/lingotek_form_test/lingotek_translation_status/node/1');
$this
->assertSession()
->responseNotContains('lingotek/css/base.css');
// Assert there are no language icons as there's nothing to display yet.
$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>');
}