LingotekTranslationStatusFormatterTest.php in Lingotek Translation 3.6.x
File
tests/src/Functional/FieldFormatters/LingotekTranslationStatusFormatterTest.php
View source
<?php
namespace Drupal\Tests\lingotek\Functional\FieldFormatters;
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 LingotekTranslationStatusFormatterTest extends LingotekTestBase {
public static $modules = [
'node',
'lingotek_visitable_metadata',
];
protected function setUp() : void {
parent::setUp();
$this
->drupalCreateContentType([
'type' => 'article',
'name' => 'Article',
]);
ConfigurableLanguage::createFromLangcode('es')
->setThirdPartySetting('lingotek', 'locale', 'es_MX')
->save();
ConfigurableLanguage::createFromLangcode('de')
->setThirdPartySetting('lingotek', 'locale', 'de_DE')
->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();
}
public function testLingotekSourceStatusFormatter() {
$assert_session = $this
->assertSession();
$basepath = \Drupal::request()
->getBasePath();
$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);
$assert_session
->addressEquals('/node/1');
$this
->drupalGet('/metadata/1');
$assert_session
->responseContains('Lingotek translation status');
$link = $this
->xpath("//a[@href='{$basepath}/admin/lingotek/entity/add_target/dummy-document-hash-id/es_MX?destination=" . $basepath . "/metadata/1' and @class='language-icon target-request' and @title='Spanish - Request translation' and text()='ES']");
$this
->assertEqual(count($link), 1, 'Link exists.');
}
public function testStatusForMissingLanguage() {
$assert_session = $this
->assertSession();
$basepath = \Drupal::request()
->getBasePath();
$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);
$assert_session
->addressEquals('/node/1');
$node = Node::load(1);
$service = \Drupal::service('lingotek.content_translation');
$service
->setTargetStatus($node, 'nb_NO', Lingotek::STATUS_READY);
$this
->drupalGet('/metadata/1');
$assert_session
->responseContains('Lingotek translation status');
$link = $this
->xpath("//a[@href='{$basepath}/admin/lingotek/entity/add_target/dummy-document-hash-id/es_MX?destination=" . $basepath . "/metadata/1' and @class='language-icon target-request' and @title='Spanish - Request translation' and text()='ES']");
$this
->assertEqual(count($link), 1, 'Link exists.');
}
}