You are here

public function ScheduledTransitionTest::testTransitionNoFieldChanges in Scheduled Transitions 2.x

Same name and namespace in other branches
  1. 8 tests/src/Kernel/ScheduledTransitionTest.php \Drupal\Tests\scheduled_transitions\Kernel\ScheduledTransitionTest::testTransitionNoFieldChanges()

Tests no pending revisions after transition on revision w/no field changes.

After creating a revision, then publishing the entity, create a non default revision, without changing any fields. Then schedule this revision to be published. Afterwards, the entity should have no more 'pending' revisions according to Content Moderation. This pending flag ensures the 'Latest revision' tab no longer shows up in the UI.

File

tests/src/Kernel/ScheduledTransitionTest.php, line 622

Class

ScheduledTransitionTest
Tests basic functionality of scheduled_transitions fields.

Namespace

Drupal\Tests\scheduled_transitions\Kernel

Code

public function testTransitionNoFieldChanges() : void {
  $workflow = $this
    ->createEditorialWorkflow();
  $workflow
    ->getTypePlugin()
    ->addEntityTypeAndBundle('st_entity_test', 'st_entity_test');
  $workflow
    ->save();

  /** @var \Drupal\Core\Entity\TranslatableRevisionableStorageInterface $entityStorage */
  $entityStorage = \Drupal::entityTypeManager()
    ->getStorage('st_entity_test');
  $entity = TestEntity::create([
    'type' => 'st_entity_test',
  ]);
  $entity = $entityStorage
    ->createRevision($entity, FALSE);
  $entity->name = 'rev1';
  $entity->moderation_state = 'draft';
  $entity
    ->save();
  $entity = $entityStorage
    ->createRevision($entity, FALSE);
  $entity->name = 'rev2';
  $entity->moderation_state = 'published';
  $entity
    ->save();

  /** @var \Drupal\content_moderation\ModerationInformationInterface $moderationInformation */
  $moderationInformation = \Drupal::service('content_moderation.moderation_information');

  // Do not change any storage fields this time.
  $entity = $entityStorage
    ->createRevision($entity, FALSE);
  $entity->moderation_state = 'draft';
  $entity
    ->save();

  // At this point there should be a pending revision.
  $this
    ->assertTrue($moderationInformation
    ->hasPendingRevision($entity));
  $scheduledTransition = ScheduledTransition::createFrom($workflow, 'published', $entity, new \DateTime('1 year ago'), new UserSession([
    'uid' => 1,
  ]));
  $scheduledTransition
    ->save();
  $this
    ->runTransition($scheduledTransition);
  $this
    ->assertFalse($moderationInformation
    ->hasPendingRevision($entity));
}