EntityRevisionConverterTest.php

Namespace

Drupal\Tests\content_moderation\Kernel

File

core/modules/content_moderation/tests/src/Kernel/EntityRevisionConverterTest.php

View source
<?php

namespace Drupal\Tests\content_moderation\Kernel;

use Drupal\KernelTests\KernelTestBase;
use Drupal\node\Entity\Node;
use Drupal\node\Entity\NodeType;
use Drupal\Tests\user\Traits\UserCreationTrait;

/**
 * @coversDefaultClass \Drupal\content_moderation\ParamConverter\EntityRevisionConverter
 * @group content_moderation
 * @group legacy
 */
class EntityRevisionConverterTest extends KernelTestBase {
  use UserCreationTrait;
  
  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'user',
    'system',
    'content_moderation',
    'node',
    'workflows',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this->setUpCurrentUser();
    $this->installEntitySchema('node');
    $this->installSchema('node', 'node_access');
  }
  
  /**
   * @covers ::convert
   * @expectedDeprecationMessage The load_pending_revision flag has been deprecated. You should use load_latest_revision instead.
   */
  public function testDeprecatedLoadPendingRevisionFlag() {
    NodeType::create([
      'type' => 'article',
    ])->save();
    $node = Node::create([
      'title' => 'test',
      'type' => 'article',
    ]);
    $node->save();
    $node->isDefaultRevision(FALSE);
    $node->setNewRevision(TRUE);
    $node->save();
    $converted = $this->container
      ->get('paramconverter.latest_revision')
      ->convert($node->id(), [
      'load_pending_revision' => TRUE,
      'type' => 'entity:node',
    ], 'node', []);
    $this->assertEquals($converted->getLoadedRevisionId(), $node->getLoadedRevisionId());
  }

}

Classes

Title Deprecated Summary
EntityRevisionConverterTest @coversDefaultClass \Drupal\content_moderation\ParamConverter\EntityRevisionConverter[[api-linebreak]] @group content_moderation @group legacy

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