View source
<?php
namespace Drupal\Tests\workbench_moderation\Functional;
class ModerationStateTransitionsTest extends ModerationStateTestBase {
public function testAccess() {
$paths = [
'admin/structure/workbench-moderation/transitions',
'admin/structure/workbench-moderation/transitions/add',
'admin/structure/workbench-moderation/transitions/draft_needs_review',
'admin/structure/workbench-moderation/transitions/draft_needs_review/delete',
];
foreach ($paths as $path) {
$this
->drupalGet($path);
$this
->assertSession()
->statusCodeEquals(403);
}
$this
->drupalLogin($this->adminUser);
foreach ($paths as $path) {
$this
->drupalGet($path);
$this
->assertSession()
->statusCodeEquals(200);
}
}
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
->assertSession()
->pageTextContains('Request 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
->assertSession()
->pageTextContains('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');
$this
->drupalPostForm(NULL, [
'label' => 'Request Review',
], t('Save'));
$this
->assertSession()
->pageTextContains('Saved the Request Review Moderation state transition.');
$this
->drupalGet('admin/structure/workbench-moderation/states/add');
$this
->drupalPostForm(NULL, [
'label' => 'Expired',
'id' => 'expired',
], t('Save'));
$this
->assertSession()
->pageTextContains('Created the Expired Moderation state.');
$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
->assertSession()
->pageTextContains('Created the Published » Expired Moderation state transition.');
$this
->drupalGet('admin/structure/workbench-moderation/transitions/published_expired');
$this
->clickLink('Delete');
$this
->assertSession()
->pageTextContains('Are you sure you want to delete Published » Expired?');
$this
->drupalPostForm(NULL, [], t('Delete'));
$this
->assertSession()
->pageTextContains('Moderation transition Published » Expired deleted');
}
}