public function LingotekContactMessageBodyTranslationTest::testFieldTranslation in Lingotek Translation 3.2.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekContactMessageBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContactMessageBodyTranslationTest::testFieldTranslation()
- 4.0.x tests/src/Functional/LingotekContactMessageBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContactMessageBodyTranslationTest::testFieldTranslation()
- 3.0.x tests/src/Functional/LingotekContactMessageBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContactMessageBodyTranslationTest::testFieldTranslation()
- 3.1.x tests/src/Functional/LingotekContactMessageBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContactMessageBodyTranslationTest::testFieldTranslation()
- 3.3.x tests/src/Functional/LingotekContactMessageBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContactMessageBodyTranslationTest::testFieldTranslation()
- 3.4.x tests/src/Functional/LingotekContactMessageBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContactMessageBodyTranslationTest::testFieldTranslation()
- 3.5.x tests/src/Functional/LingotekContactMessageBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContactMessageBodyTranslationTest::testFieldTranslation()
- 3.6.x tests/src/Functional/LingotekContactMessageBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContactMessageBodyTranslationTest::testFieldTranslation()
- 3.7.x tests/src/Functional/LingotekContactMessageBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContactMessageBodyTranslationTest::testFieldTranslation()
- 3.8.x tests/src/Functional/LingotekContactMessageBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContactMessageBodyTranslationTest::testFieldTranslation()
Tests that a node can be translated.
File
- tests/
src/ Functional/ LingotekContactMessageBodyTranslationTest.php, line 66
Class
- LingotekContactMessageBodyTranslationTest
- Tests translating a field in a contact message.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testFieldTranslation() {
$assert_session = $this
->assertSession();
// Login as admin.
$this
->drupalLogin($this->rootUser);
$this
->drupalGet('/admin/config/regional/config-translation');
$this
->drupalGet('/admin/config/regional/config-translation/contact_message_fields');
$this
->clickLink(t('Translate'));
$this
->clickLink(t('Upload'));
$this
->assertText(t('field_test uploaded successfully'));
// Check that only the translatable fields have been uploaded.
$data = json_decode(\Drupal::state()
->get('lingotek.uploaded_content', '[]'), TRUE);
$this
->assertTrue(array_key_exists('label', $data['field.field.contact_message.contact_message.field_test']));
// Cannot use isset, the key exists but we are not providing values, so NULL.
$this
->assertTrue(array_key_exists('description', $data['field.field.contact_message.contact_message.field_test']));
// Check that the profile used was the right one.
$used_profile = \Drupal::state()
->get('lingotek.used_profile');
$this
->assertIdentical('automatic', $used_profile, 'The automatic profile was used.');
$this
->clickLink(t('Check upload status'));
$this
->assertText('field_test status checked successfully');
$this
->clickLink(t('Request translation'));
$this
->assertText(t('Translation to es_MX requested successfully'));
$this
->assertIdentical('es_MX', \Drupal::state()
->get('lingotek.added_target_locale'));
$this
->clickLink(t('Check Download'));
$this
->assertText(t('Translation to es_MX status checked successfully'));
$this
->clickLink('Download');
$this
->assertText(t('Translation to es_MX downloaded successfully'));
// Check that the edit link is there.
$basepath = \Drupal::request()
->getBasePath();
$assert_session
->linkByHrefExists($basepath . '/admin/structure/contact/manage/contact_message/fields/contact_message.contact_message.field_test/translate/es/edit');
}