LingotekConfigObjectTranslationDocumentUploadHookTest.php in Lingotek Translation 3.2.x
Same filename and directory in other branches
- 8.2 tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php
- 4.0.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php
- 3.0.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php
- 3.1.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php
- 3.3.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php
- 3.4.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php
- 3.5.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php
- 3.6.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php
- 3.7.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php
- 3.8.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php
Namespace
Drupal\Tests\lingotek\FunctionalFile
tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.phpView source
<?php
namespace Drupal\Tests\lingotek\Functional;
use Drupal\language\Entity\ConfigurableLanguage;
/**
* Tests the Lingotek config translation document upload hook.
*
* @group lingotek
*/
class LingotekConfigObjectTranslationDocumentUploadHookTest extends LingotekTestBase {
/**
* {@inheritdoc}
*/
public static $modules = [
'views',
'node',
'user',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
// Add a language.
ConfigurableLanguage::createFromLangcode('es')
->setThirdPartySetting('lingotek', 'locale', 'es_MX')
->save();
// This is a hack for avoiding writing different lingotek endpoint mocks.
\Drupal::state()
->set('lingotek.uploaded_content_type', 'rss-publishing');
// Create a node.
$this
->drupalCreateContentType([
'type' => 'article',
'name' => t('Article'),
]);
$this
->drupalCreateNode([
'type' => 'article',
'promote' => 1,
]);
}
/**
* Tests that rss publishing settings can be translated.
*/
public function testRssPublishingTranslation() {
// Login as admin.
$this
->drupalLogin($this->rootUser);
$this
->drupalGet('admin/config/services/rss-publishing');
$edit = [
'feed_description' => 'Llamas feed description',
];
$this
->drupalPostForm(NULL, $edit, 'Save configuration');
$this
->goToConfigBulkManagementForm();
$this
->clickLink('EN', 2);
// Check that Llamas is replaced via hook_lingotek_config_object_document_upload().
// @see lingotek_test_lingotek_config_object_document_upload()
$data = json_decode(\Drupal::state()
->get('lingotek.uploaded_content', '[]'), TRUE);
$this
->verbose(var_export($data, TRUE));
$this
->assertEqual($data['system.rss']['channel.description'], 'Cats feed description');
}
}
Classes
Name | Description |
---|---|
LingotekConfigObjectTranslationDocumentUploadHookTest | Tests the Lingotek config translation document upload hook. |