public function LingotekWorkbenchModerationTest::testDownloadFromNotUploadStateDoesntTriggerATransition in Lingotek Translation 3.5.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testDownloadFromNotUploadStateDoesntTriggerATransition()
- 4.0.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testDownloadFromNotUploadStateDoesntTriggerATransition()
- 3.1.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testDownloadFromNotUploadStateDoesntTriggerATransition()
- 3.2.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testDownloadFromNotUploadStateDoesntTriggerATransition()
- 3.3.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testDownloadFromNotUploadStateDoesntTriggerATransition()
- 3.4.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testDownloadFromNotUploadStateDoesntTriggerATransition()
- 3.6.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testDownloadFromNotUploadStateDoesntTriggerATransition()
- 3.7.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testDownloadFromNotUploadStateDoesntTriggerATransition()
- 3.8.x tests/src/Functional/LingotekWorkbenchModerationTest.php \Drupal\Tests\lingotek\Functional\LingotekWorkbenchModerationTest::testDownloadFromNotUploadStateDoesntTriggerATransition()
Download from different state doesn't trigger a transition.
File
- tests/
src/ Functional/ LingotekWorkbenchModerationTest.php, line 406
Class
- LingotekWorkbenchModerationTest
- Tests setting up the integration with workbench moderation.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testDownloadFromNotUploadStateDoesntTriggerATransition() {
$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
->drupalPostForm('/node/add/article', $edit, t('Save and Create New Draft'));
// 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');
// Moderate back to draft, so the transition won't happen on download.
$edit = [
'new_state' => 'draft',
];
$this
->drupalPostForm(NULL, $edit, 'Apply');
$this
->goToContentBulkManagementForm();
// Request translation.
$this
->clickLink('ES');
// Check translation.
$this
->clickLink('ES');
// Download translation.
$this
->clickLink('ES');
// Let's see the current status is unmodified.
$this
->clickLink('Llamas are cool');
$value = $this
->xpath('//div[@id="edit-current"]/text()');
$value = trim($value[1]
->getText());
$this
->assertEqual($value, 'Draft', 'The transition to a new workbench status didn\'t happen because the source wasn\'t the expected.');
}