You are here

BlockContentRevisionsTest.php in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 core/modules/block_content/src/Tests/BlockContentRevisionsTest.php

File

core/modules/block_content/src/Tests/BlockContentRevisionsTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\block_content\Tests\BlockContentRevisionsTest.
 */
namespace Drupal\block_content\Tests;

use Drupal\block_content\Entity\BlockContent;

/**
 * Create a block with revisions.
 *
 * @group block_content
 */
class BlockContentRevisionsTest extends BlockContentTestBase {

  /**
   * Stores blocks created during the test.
   * @var array
   */
  protected $blocks;

  /**
   * Stores log messages used during the test.
   * @var array
   */
  protected $revisionLogs;

  /**
   * Sets the test up.
   */
  protected function setUp() {
    parent::setUp();

    // Create initial block.
    $block = $this
      ->createBlockContent('initial');
    $blocks = array();
    $logs = array();

    // Get original block.
    $blocks[] = $block
      ->getRevisionId();
    $logs[] = '';

    // Create three revisions.
    $revision_count = 3;
    for ($i = 0; $i < $revision_count; $i++) {
      $block
        ->setNewRevision(TRUE);
      $block
        ->setRevisionLog($this
        ->randomMachineName(32));
      $logs[] = $block
        ->getRevisionLog();
      $block
        ->save();
      $blocks[] = $block
        ->getRevisionId();
    }
    $this->blocks = $blocks;
    $this->revisionLogs = $logs;
  }

  /**
   * Checks block revision related operations.
   */
  public function testRevisions() {
    $blocks = $this->blocks;
    $logs = $this->revisionLogs;
    foreach ($blocks as $delta => $revision_id) {

      // Confirm the correct revision text appears.
      $loaded = entity_revision_load('block_content', $revision_id);

      // Verify revision log is the same.
      $this
        ->assertEqual($loaded
        ->getRevisionLog(), $logs[$delta], format_string('Correct log message found for revision @revision', array(
        '@revision' => $loaded
          ->getRevisionId(),
      )));
    }

    // Confirm that this is the default revision.
    $this
      ->assertTrue($loaded
      ->isDefaultRevision(), 'Third block revision is the default one.');

    // Make a new revision and set it to not be default.
    // This will create a new revision that is not "front facing".
    // Save this as a non-default revision.
    $loaded
      ->setNewRevision();
    $loaded
      ->isDefaultRevision(FALSE);
    $loaded->body = $this
      ->randomMachineName(8);
    $loaded
      ->save();
    $this
      ->drupalGet('block/' . $loaded
      ->id());
    $this
      ->assertNoText($loaded->body->value, 'Revision body text is not present on default version of block.');

    // Verify that the non-default revision id is greater than the default
    // revision id.
    $default_revision = BlockContent::load($loaded
      ->id());
    $this
      ->assertTrue($loaded
      ->getRevisionId() > $default_revision
      ->getRevisionId(), 'Revision id is greater than default revision id.');
  }

}

Classes

Namesort descending Description
BlockContentRevisionsTest Create a block with revisions.