function InitialStateTest::testInitialState

Same name and namespace in other branches
  1. 9 core/modules/content_moderation/tests/src/Kernel/InitialStateTest.php \Drupal\Tests\content_moderation\Kernel\InitialStateTest::testInitialState()
  2. 8.9.x core/modules/content_moderation/tests/src/Kernel/InitialStateTest.php \Drupal\Tests\content_moderation\Kernel\InitialStateTest::testInitialState()
  3. 10 core/modules/content_moderation/tests/src/Kernel/InitialStateTest.php \Drupal\Tests\content_moderation\Kernel\InitialStateTest::testInitialState()

Tests the correct initial state.

File

core/modules/content_moderation/tests/src/Kernel/InitialStateTest.php, line 47

Class

InitialStateTest
Tests the correct initial states are set on install.

Namespace

Drupal\Tests\content_moderation\Kernel

Code

public function testInitialState() : void {
    $node_type = NodeType::create([
        'type' => 'example',
        'name' => 'Example',
    ]);
    $node_type->save();
    // Test with an entity type that implements EntityPublishedInterface.
    $unpublished_node = Node::create([
        'type' => 'example',
        'title' => 'Unpublished node',
        'status' => 0,
    ]);
    $unpublished_node->save();
    $published_node = Node::create([
        'type' => 'example',
        'title' => 'Published node',
        'status' => 1,
    ]);
    $published_node->save();
    // Test with an entity type that doesn't implement EntityPublishedInterface.
    $entity_test = EntityTestRev::create();
    $entity_test->save();
    \Drupal::service('module_installer')->install([
        'content_moderation',
    ], TRUE);
    $workflow = $this->createEditorialWorkflow();
    $workflow->getTypePlugin()
        ->addEntityTypeAndBundle('node', 'example');
    $workflow->getTypePlugin()
        ->addEntityTypeAndBundle('entity_test_rev', 'entity_test_rev');
    $workflow->save();
    $loaded_unpublished_node = Node::load($unpublished_node->id());
    $loaded_published_node = Node::load($published_node->id());
    $loaded_entity_test = EntityTestRev::load($entity_test->id());
    $this->assertEquals('draft', $loaded_unpublished_node->moderation_state->value);
    $this->assertEquals('published', $loaded_published_node->moderation_state->value);
    $this->assertEquals('draft', $loaded_entity_test->moderation_state->value);
    $presave_node = Node::create([
        'type' => 'example',
        'title' => 'Presave node',
    ]);
    $this->assertEquals('draft', $presave_node->moderation_state->value);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.