You are here

public function LingotekContentTypeTranslationTest::testUpdatingWithADocumentNotFoundErrorViaAutomaticUpload in Lingotek Translation 3.7.x

Same name and namespace in other branches
  1. 4.0.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testUpdatingWithADocumentNotFoundErrorViaAutomaticUpload()
  2. 3.8.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testUpdatingWithADocumentNotFoundErrorViaAutomaticUpload()

Test that we handle errors in upload.

File

tests/src/Functional/LingotekContentTypeTranslationTest.php, line 414

Class

LingotekContentTypeTranslationTest
Tests translating a content type.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testUpdatingWithADocumentNotFoundErrorViaAutomaticUpload() {

  // 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_not_found_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.');
  $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
    ->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(t('Translate'));
  $this
    ->clickLink('Upload');
  $this
    ->checkForMetaRefresh();
  $this
    ->assertText('Blogpost uploaded successfully');
}