public function LingotekFieldBodyBulkTranslationTest::testUpdatingWithADocumentNotFoundError in Lingotek Translation 3.8.x
Same name and namespace in other branches
- 4.0.x tests/src/Functional/LingotekFieldBodyBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyBulkTranslationTest::testUpdatingWithADocumentNotFoundError()
- 3.7.x tests/src/Functional/LingotekFieldBodyBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyBulkTranslationTest::testUpdatingWithADocumentNotFoundError()
Test that we handle errors in update.
File
- tests/
src/ Functional/ LingotekFieldBodyBulkTranslationTest.php, line 622
Class
- LingotekFieldBodyBulkTranslationTest
- Tests translating a field using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testUpdatingWithADocumentNotFoundError() {
// Set upload as manual.
$this
->saveLingotekConfigTranslationSettings([
'node_fields' => 'manual',
]);
$this
->goToConfigBulkManagementForm('node_fields');
// Upload the document, which must succeed.
$this
->clickLink('EN');
$this
->assertText('Body uploaded successfully');
// Check upload.
$this
->clickLink('EN');
// Edit the field.
$edit = [
'label' => 'Contents',
];
$this
->drupalPostForm('/admin/structure/types/manage/article/fields/node.article.body', $edit, t('Save settings'));
$this
->assertText('Saved Contents configuration.');
\Drupal::state()
->set('lingotek.must_document_not_found_error_in_update', TRUE);
$this
->goToConfigBulkManagementForm('node_fields');
// Update the document, which must fail.
$this
->clickLink('EN');
$fieldConfig = FieldConfig::load('node.article.body');
/** @var \Drupal\lingotek\LingotekConfigTranslationServiceInterface $translation_service */
$translation_service = \Drupal::service('lingotek.config_translation');
$source_status = $translation_service
->getSourceStatus($fieldConfig);
$this
->assertEqual(Lingotek::STATUS_UNTRACKED, $source_status);
$this
->assertSourceStatus('EN', Lingotek::STATUS_UNTRACKED);
$this
->assertNoLingotekRequestTranslationLink('es_MX');
$this
->assertText('Document field_config Contents was not found. Please upload again.');
// I can still re-try the upload.
\Drupal::state()
->set('lingotek.must_document_not_found_error_in_update', FALSE);
$this
->clickLink('EN');
$this
->assertText('Contents uploaded successfully');
}