You are here

public function LingotekWorkbenchModerationTest::testUpdateEntityWithManualProfileButNotInUploadState in Lingotek Translation 3.1.x

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testUpdateEntityWithManualProfileButNotInUploadState()
  2. 4.0.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testUpdateEntityWithManualProfileButNotInUploadState()
  3. 3.2.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testUpdateEntityWithManualProfileButNotInUploadState()
  4. 3.3.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testUpdateEntityWithManualProfileButNotInUploadState()
  5. 3.4.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testUpdateEntityWithManualProfileButNotInUploadState()
  6. 3.5.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testUpdateEntityWithManualProfileButNotInUploadState()
  7. 3.6.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testUpdateEntityWithManualProfileButNotInUploadState()
  8. 3.7.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testUpdateEntityWithManualProfileButNotInUploadState()
  9. 3.8.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testUpdateEntityWithManualProfileButNotInUploadState()

Entity update with manual profile not in upload state does not upload.

File

tests/src/Functional/LingotekWorkbenchModerationTest.php, line 167

Class

LingotekWorkbenchModerationTest
Tests setting up the integration with workbench moderation.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testUpdateEntityWithManualProfileButNotInUploadState() {
  $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
    ->drupalPostForm('/node/add/article', $edit, t('Save and Create New Draft'));
  $this
    ->assertText('Article Llamas are cool has been created.');
  $this
    ->drupalPostForm('/node/1/edit', $edit, t('Save and Request Review (this translation)'));
  $this
    ->assertText('Article Llamas are cool has been updated.');
  $this
    ->assertNoText('Llamas are cool was updated and sent to Lingotek successfully.');
}