public function ModerationStateTransitionsTest::testTransitionAdministration in Workbench Moderation 8.2
Tests administration of moderation state transition entity.
File
- src/
Tests/ ModerationStateTransitionsTest.php, line 39
Class
- ModerationStateTransitionsTest
- Tests moderation state transition config entity.
Namespace
Drupal\workbench_moderation\TestsCode
public function testTransitionAdministration() {
$this
->drupalLogin($this->adminUser);
$this
->drupalGet('admin/structure/workbench-moderation');
$this
->clickLink('Moderation state transitions');
$this
->assertLink('Add Moderation state transition');
$this
->assertText('Request Review');
// Edit the Draft » Needs review.
$this
->drupalGet('admin/structure/workbench-moderation/transitions/draft_needs_review');
$this
->assertFieldByName('label', 'Request Review');
$this
->assertFieldByName('stateFrom', 'draft');
$this
->assertFieldByName('stateTo', 'needs_review');
$this
->drupalPostForm(NULL, [
'label' => 'Draft to Needs review',
], t('Save'));
$this
->assertText('Saved the Draft to Needs review Moderation state transition.');
$this
->drupalGet('admin/structure/workbench-moderation/transitions/draft_needs_review');
$this
->assertFieldByName('label', 'Draft to Needs review');
// Now set it back.
$this
->drupalPostForm(NULL, [
'label' => 'Request Review',
], t('Save'));
$this
->assertText('Saved the Request Review Moderation state transition.');
// Add a new state.
$this
->drupalGet('admin/structure/workbench-moderation/states/add');
$this
->drupalPostForm(NULL, [
'label' => 'Expired',
'id' => 'expired',
], t('Save'));
$this
->assertText('Created the Expired Moderation state.');
// Add a new transition.
$this
->drupalGet('admin/structure/workbench-moderation/transitions');
$this
->clickLink(t('Add Moderation state transition'));
$this
->drupalPostForm(NULL, [
'label' => 'Published » Expired',
'id' => 'published_expired',
'stateFrom' => 'published',
'stateTo' => 'expired',
], t('Save'));
$this
->assertText('Created the Published » Expired Moderation state transition.');
// Delete the new transition.
$this
->drupalGet('admin/structure/workbench-moderation/transitions/published_expired');
$this
->clickLink('Delete');
$this
->assertText('Are you sure you want to delete Published » Expired?');
$this
->drupalPostForm(NULL, [], t('Delete'));
$this
->assertText('Moderation transition Published » Expired deleted');
}