You are here

class DefaultModerationStateTest in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/content_moderation/tests/src/Functional/DefaultModerationStateTest.php \Drupal\Tests\content_moderation\Functional\DefaultModerationStateTest
  2. 9 core/modules/content_moderation/tests/src/Functional/DefaultModerationStateTest.php \Drupal\Tests\content_moderation\Functional\DefaultModerationStateTest

Tests setting a custom default moderation state.

@group content_moderation

Hierarchy

Expanded class hierarchy of DefaultModerationStateTest

File

core/modules/content_moderation/tests/src/Functional/DefaultModerationStateTest.php, line 10

Namespace

Drupal\Tests\content_moderation\Functional
View source
class DefaultModerationStateTest extends ModerationStateTestBase {

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this
      ->drupalLogin($this->adminUser);
    $this
      ->createContentTypeFromUi('Moderated content', 'moderated_content', TRUE);
    $this
      ->grantUserPermissionToCreateContentOfType($this->adminUser, 'moderated_content');
  }

  /**
   * Tests a workflow with a default moderation state set.
   */
  public function testPublishedDefaultState() {

    // Set the default moderation state to be "published".
    $this
      ->drupalGet('admin/config/workflow/workflows/manage/' . $this->workflow
      ->id());
    $this
      ->submitForm([
      'type_settings[workflow_settings][default_moderation_state]' => 'published',
    ], 'Save');
    $this
      ->drupalGet('node/add/moderated_content');
    $this
      ->assertEquals('published', $this
      ->assertSession()
      ->selectExists('moderation_state[0][state]')
      ->getValue());
    $this
      ->submitForm([
      'title[0][value]' => 'moderated content',
    ], 'Save');
    $node = $this
      ->getNodeByTitle('moderated content');
    $this
      ->assertEquals('published', $node->moderation_state->value);
  }

  /**
   * Tests access to deleting the default state.
   */
  public function testDeleteDefaultStateAccess() {
    $this
      ->drupalGet('admin/config/workflow/workflows/manage/editorial/state/archived/delete');
    $this
      ->assertSession()
      ->statusCodeEquals(200);
    $this
      ->drupalGet('admin/config/workflow/workflows/manage/' . $this->workflow
      ->id());
    $this
      ->submitForm([
      'type_settings[workflow_settings][default_moderation_state]' => 'archived',
    ], 'Save');
    $this
      ->drupalGet('admin/config/workflow/workflows/manage/editorial/state/archived/delete');
    $this
      ->assertSession()
      ->statusCodeEquals(403);
  }

}

Members