public function LingotekContentModerationTest::testDownloadFromUploadStateTriggersATransition in Lingotek Translation 3.1.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekContentModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentModerationTest::testDownloadFromUploadStateTriggersATransition()
- 4.0.x tests/src/Functional/LingotekContentModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentModerationTest::testDownloadFromUploadStateTriggersATransition()
- 3.0.x tests/src/Functional/LingotekContentModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentModerationTest::testDownloadFromUploadStateTriggersATransition()
- 3.2.x tests/src/Functional/LingotekContentModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentModerationTest::testDownloadFromUploadStateTriggersATransition()
- 3.3.x tests/src/Functional/LingotekContentModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentModerationTest::testDownloadFromUploadStateTriggersATransition()
- 3.4.x tests/src/Functional/LingotekContentModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentModerationTest::testDownloadFromUploadStateTriggersATransition()
- 3.5.x tests/src/Functional/LingotekContentModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentModerationTest::testDownloadFromUploadStateTriggersATransition()
- 3.6.x tests/src/Functional/LingotekContentModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentModerationTest::testDownloadFromUploadStateTriggersATransition()
- 3.7.x tests/src/Functional/LingotekContentModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentModerationTest::testDownloadFromUploadStateTriggersATransition()
- 3.8.x tests/src/Functional/LingotekContentModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentModerationTest::testDownloadFromUploadStateTriggersATransition()
File
- tests/
src/ Functional/ LingotekContentModerationTest.php, line 312
Class
- LingotekContentModerationTest
- Tests setting up the integration with content moderation.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testDownloadFromUploadStateTriggersATransition() {
$this
->configureNeedsReviewAsUploadState();
$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]'] = 'automatic';
$this
->saveAsNewDraftNodeForm($edit, 'article');
// The status is draft.
$value = $this
->xpath('//div[@id="edit-current"]/text()');
$value = trim($value[1]
->getText());
$this
->assertEqual($value, 'Draft', 'Workbench current status is draft');
// Moderate to Needs review, so it's uploaded.
$edit = [
'new_state' => 'needs_review',
];
$this
->drupalPostForm(NULL, $edit, 'Apply');
// The status is needs review.
$value = $this
->xpath('//div[@id="edit-current"]/text()');
$value = trim($value[1]
->getText());
$this
->assertEqual($value, 'Needs Review', 'Workbench current status is Needs Review');
$this
->goToContentBulkManagementForm();
// Request translation.
$this
->clickLink('ES');
// Check translation.
$this
->clickLink('ES');
// Download translation.
$this
->clickLink('ES');
// Let's see the current status is modified.
$this
->clickLink('Llamas are cool');
$this
->assertNoFieldByName('new_state', 'The transition to a new content moderation status happened (so no moderation form is shown).');
}