public function LingotekContentTypeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload in Lingotek Translation 8.2
Same name and namespace in other branches
- 4.0.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.0.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.1.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.2.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.3.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.4.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.5.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.6.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.7.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.8.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
Test that we handle errors in update.
File
- tests/
src/ Functional/ LingotekContentTypeTranslationTest.php, line 575
Class
- LingotekContentTypeTranslationTest
- Tests translating a content type.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testUpdatingWithADocumentArchivedErrorViaAutomaticUpload() {
// Check that the translate tab is in the node type.
$this
->drupalGet('/admin/config/regional/config-translation');
$this
->drupalGet('/admin/config/regional/config-translation/node_type');
$this
->clickLink(t('Translate'));
// Upload the document, which must succeed.
$this
->clickLink('Upload');
$this
->checkForMetaRefresh();
$this
->assertText('Article uploaded successfully');
// Check that the upload succeeded.
$this
->clickLink('Check upload status');
$this
->assertText('Article status checked successfully');
\Drupal::state()
->set('lingotek.must_document_archived_error_in_update', TRUE);
// Edit the content type.
$edit['name'] = 'Blogpost';
$this
->drupalPostForm('/admin/structure/types/manage/article', $edit, t('Save content type'));
$this
->assertText('The content type Blogpost has been updated.');
$this
->assertText('Document node_type Blogpost has been archived. Please upload again.');
// The node type has been marked with the error status.
$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, 'The node type has been marked as error.');
// I can still re-try the upload.
\Drupal::state()
->set('lingotek.must_document_archived_error_in_update', FALSE);
$this
->clickLink(t('Translate'));
$this
->clickLink('Upload');
$this
->checkForMetaRefresh();
$this
->assertText('Blogpost uploaded successfully');
}