function 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[[api-linebreak]] @group content_moderation
Namespace
Drupal\Tests\content_moderation\KernelCode
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());
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
