public function LingotekContentTypeBulkTranslationTest::testUpdatingWithADocumentNotFoundError in Lingotek Translation 3.7.x
Same name and namespace in other branches
- 4.0.x tests/src/Functional/LingotekContentTypeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeBulkTranslationTest::testUpdatingWithADocumentNotFoundError()
- 3.8.x tests/src/Functional/LingotekContentTypeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeBulkTranslationTest::testUpdatingWithADocumentNotFoundError()
Test that we handle errors in update.
File
- tests/
src/ Functional/ LingotekContentTypeBulkTranslationTest.php, line 672
Class
- LingotekContentTypeBulkTranslationTest
- Tests translating a config entity using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testUpdatingWithADocumentNotFoundError() {
// Set upload as manual.
$this
->saveLingotekConfigTranslationSettings([
'node_type' => 'manual',
]);
$this
->goToConfigBulkManagementForm('node_type');
// Upload the document, which must succeed.
$this
->clickLink('EN');
$this
->assertText('Article uploaded successfully');
// Check upload.
$this
->clickLink('EN');
// Edit the node type.
$edit = [
'name' => 'Blogpost',
];
$this
->drupalPostForm('/admin/structure/types/manage/article', $edit, t('Save content type'));
\Drupal::state()
->set('lingotek.must_document_not_found_error_in_update', TRUE);
$this
->goToConfigBulkManagementForm('node_type');
// Update the document, which must fail.
$this
->clickLink('EN');
$nodeType = NodeType::load('article');
/** @var \Drupal\lingotek\LingotekConfigTranslationServiceInterface $translation_service */
$translation_service = \Drupal::service('lingotek.config_translation');
$source_status = $translation_service
->getSourceStatus($nodeType);
$this
->assertEqual(Lingotek::STATUS_UNTRACKED, $source_status);
$this
->assertSourceStatus('EN', Lingotek::STATUS_UNTRACKED);
$this
->assertNoLingotekRequestTranslationLink('es_MX');
$this
->assertText('Document node_type Blogpost 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('Blogpost uploaded successfully');
}