You are here

public function LingotekNodeTranslationTest::testCheckSourceStatusWithAnError in Lingotek Translation 4.0.x

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

Tests that all the statuses are set when using the Check Translations action.

File

tests/src/Functional/LingotekNodeTranslationTest.php, line 973

Class

LingotekNodeTranslationTest
Tests translating a node.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testCheckSourceStatusWithAnError() {
  \Drupal::state()
    ->set('lingotek.must_error_in_check_source_status', TRUE);

  // Create a node.
  $edit = [];
  $edit['title[0][value]'] = 'Llamas are cool';
  $edit['body[0][value]'] = 'Llamas are very cool';
  $edit['langcode[0][value]'] = 'en';
  $edit['lingotek_translation_management[lingotek_translation_profile]'] = 'manual';
  $this
    ->saveAndPublishNodeForm($edit);

  // Check that the translate tab is in the node.
  $this
    ->drupalGet('node/1');
  $this
    ->clickLink('Translate');

  // Upload the document.
  $this
    ->clickLink('Upload');
  $this
    ->checkForMetaRefresh();
  $this
    ->assertText('Uploaded 1 document to Lingotek.');
  $this
    ->assertIdentical('en_US', \Drupal::state()
    ->get('lingotek.uploaded_locale'));

  // I can check current status.
  $this
    ->assertLink('Check Upload Status');
  $this
    ->clickLink('Check Upload Status');
  $this->node = Node::load(1);

  /** @var \Drupal\lingotek\LingotekContentTranslationServiceInterface $translation_service */
  $translation_service = \Drupal::service('lingotek.content_translation');
  $source_status = $translation_service
    ->getSourceStatus($this->node);
  $this
    ->assertEqual(Lingotek::STATUS_IMPORTING, $source_status);
  $this
    ->assertText('The check for node status failed. Please try again.');
}