You are here

public function EntityStateChangeValidationTest::testInvalidState in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/content_moderation/tests/src/Kernel/EntityStateChangeValidationTest.php \Drupal\Tests\content_moderation\Kernel\EntityStateChangeValidationTest::testInvalidState()

Tests validation with an invalid state.

File

core/modules/content_moderation/tests/src/Kernel/EntityStateChangeValidationTest.php, line 120

Class

EntityStateChangeValidationTest
@coversDefaultClass \Drupal\content_moderation\Plugin\Validation\Constraint\ModerationStateConstraintValidator @group content_moderation

Namespace

Drupal\Tests\content_moderation\Kernel

Code

public function testInvalidState() {
  $node_type = NodeType::create([
    'type' => 'example',
  ]);
  $node_type
    ->save();
  $workflow = $this
    ->createEditorialWorkflow();
  $workflow
    ->getTypePlugin()
    ->addEntityTypeAndBundle('node', 'example');
  $workflow
    ->save();
  $node = Node::create([
    'type' => 'example',
    'title' => 'Test title',
  ]);
  $node->moderation_state->value = 'invalid_state';
  $violations = $node
    ->validate();
  $this
    ->assertCount(1, $violations);
  $this
    ->assertEquals('State <em class="placeholder">invalid_state</em> does not exist on <em class="placeholder">Editorial</em> workflow', $violations
    ->get(0)
    ->getMessage());
}