BlockContentListViewsTest.php

Same filename and directory in other branches
  1. 9 core/modules/block_content/tests/src/Functional/BlockContentListViewsTest.php
  2. 8.9.x core/modules/block_content/tests/src/Functional/BlockContentListViewsTest.php
  3. 10 core/modules/block_content/tests/src/Functional/BlockContentListViewsTest.php

Namespace

Drupal\Tests\block_content\Functional

File

core/modules/block_content/tests/src/Functional/BlockContentListViewsTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\block_content\Functional;

use Drupal\block_content\Entity\BlockContent;

/**
 * Tests the Views-powered listing of content blocks.
 *
 * @group block_content
 * @see \Drupal\block\BlockContentListBuilder
 * @see \Drupal\block_content\Tests\BlockContentListTest
 */
class BlockContentListViewsTest extends BlockContentTestBase {
  
  /**
   * A user with 'access block library' permission.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $baseUser1;
  
  /**
   * A user with access to create and edit custom basic blocks.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $baseUser2;
  
  /**
   * Permissions to grant admin user.
   *
   * @var array
   */
  protected $permissions = [
    'administer blocks',
    'access block library',
    'create basic block content',
    'edit any basic block content',
    'delete any basic block content',
    'translate configuration',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'block',
    'block_content',
    'config_translation',
    'views',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->baseUser1 = $this->drupalCreateUser([
      'access block library',
    ]);
    $this->baseUser2 = $this->drupalCreateUser([
      'access block library',
      'create basic block content',
      'edit any basic block content',
      'delete any basic block content',
    ]);
  }
  
  /**
   * Tests the content block listing page.
   */
  public function testListing() : void {
    // Test with an admin user.
    $this->drupalLogin($this->adminUser);
    $this->drupalGet('admin/content/block');
    // Test for the page title.
    $this->assertSession()
      ->titleEquals('Content blocks | Drupal');
    // Test for the exposed filters.
    $this->assertSession()
      ->fieldExists('info');
    $this->assertSession()
      ->fieldExists('type');
    // Test for the table.
    $this->assertSession()
      ->elementExists('xpath', '//div[@class="layout-content"]//table');
    // Test the table header, four cells should be present.
    $this->assertSession()
      ->elementsCount('xpath', '//div[@class="layout-content"]//table/thead/tr/th', 4);
    // Test the contents of each th cell.
    $this->assertSession()
      ->elementTextEquals('xpath', '//div[@class="layout-content"]//table/thead/tr/th[1]', 'Block description');
    $this->assertSession()
      ->elementTextEquals('xpath', '//div[@class="layout-content"]//table/thead/tr/th[2]', 'Block type');
    $this->assertSession()
      ->elementTextEquals('xpath', '//div[@class="layout-content"]//table/thead/tr/th[3]', 'Updated Sort ascending');
    $this->assertSession()
      ->elementTextEquals('xpath', '//div[@class="layout-content"]//table/thead/tr/th[4]', 'Operations');
    $label = 'Antelope';
    $new_label = 'Albatross';
    // Add a new entity using the operations link.
    $this->clickLink('Add content block');
    $this->assertSession()
      ->statusCodeEquals(200);
    $edit = [];
    $edit['info[0][value]'] = $label;
    $edit['body[0][value]'] = $this->randomMachineName(16);
    $this->submitForm($edit, 'Save');
    // Confirm that once the user returns to the listing, the text of the label
    // (versus elsewhere on the page).
    $this->assertSession()
      ->elementTextContains('xpath', '//td/a', $label);
    // Check the number of table row cells.
    $this->assertSession()
      ->elementsCount('xpath', '//div[@class="layout-content"]//table/tbody/tr/td', 4);
    // Check the contents of each row cell. The first cell contains the label,
    // the second contains the machine name, and the third contains the
    // operations list.
    $this->assertSession()
      ->elementTextEquals('xpath', '//div[@class="layout-content"]//table/tbody/tr/td/a', $label);
    // Edit the entity using the operations link.
    $blocks = $this->container
      ->get('entity_type.manager')
      ->getStorage('block_content')
      ->loadByProperties([
      'info' => $label,
    ]);
    $block = reset($blocks);
    if (!empty($block)) {
      $this->assertSession()
        ->linkByHrefExists('admin/content/block/' . $block->id());
      $this->clickLink('Edit');
      $this->assertSession()
        ->statusCodeEquals(200);
      $this->assertSession()
        ->titleEquals("Edit content block {$label} | Drupal");
      $edit = [
        'info[0][value]' => $new_label,
      ];
      $this->submitForm($edit, 'Save');
    }
    else {
      $this->fail('Did not find Albatross block in the database.');
    }
    // Confirm that once the user returns to the listing, the text of the label
    // (versus elsewhere on the page).
    $this->assertSession()
      ->elementTextContains('xpath', '//td/a', $new_label);
    // Delete the added entity using the operations link.
    $this->assertSession()
      ->linkByHrefExists('admin/content/block/' . $block->id() . '/delete');
    $this->clickLink('Delete');
    $this->assertSession()
      ->statusCodeEquals(200);
    $this->assertSession()
      ->titleEquals("Are you sure you want to delete the content block {$new_label}? | Drupal");
    $this->submitForm([], 'Delete');
    // Verify that the text of the label and machine name does not appear in
    // the list (though it may appear elsewhere on the page).
    $this->assertSession()
      ->elementTextNotContains('xpath', '//td', $new_label);
    // Confirm that the empty text is displayed.
    $this->assertSession()
      ->pageTextContains('There are no content blocks available.');
    $this->assertSession()
      ->linkExists('content block');
    $block_content = BlockContent::create([
      'info' => 'Non-reusable block',
      'type' => 'basic',
      'reusable' => FALSE,
    ]);
    $block_content->save();
    $this->drupalGet('admin/content/block');
    // Confirm that the empty text is displayed.
    $this->assertSession()
      ->pageTextContains('There are no content blocks available.');
    // Confirm the non-reusable block is not on the page.
    $this->assertSession()
      ->pageTextNotContains('Non-reusable block');
    $this->drupalLogout();
    // Create test block for other user tests.
    $test_block = $this->createBlockContent($label);
    // Test as a user with view only permissions.
    $this->drupalLogin($this->baseUser1);
    $this->drupalGet('admin/content/block');
    $this->assertSession()
      ->statusCodeEquals(200);
    $this->assertSession()
      ->linkNotExists('Add content block');
    $matches = $this->xpath('//td[1]');
    $actual = $matches[0]->getText();
    $this->assertEquals($label, $actual, 'Label found for test block.');
    $this->assertSession()
      ->linkNotExists('Edit');
    $this->assertSession()
      ->linkNotExists('Delete');
    $this->assertSession()
      ->linkByHrefNotExists('admin/content/block/' . $test_block->id() . '/delete');
    $this->drupalLogout();
    // Test as a user with permission to create/edit/delete basic blocks.
    $this->drupalLogin($this->baseUser2);
    $this->drupalGet('admin/content/block');
    $this->assertSession()
      ->statusCodeEquals(200);
    $this->assertSession()
      ->linkExists('Add content block');
    $matches = $this->xpath('//td/a');
    $actual = $matches[0]->getText();
    $this->assertEquals($label, $actual, 'Label found for test block.');
    $this->assertSession()
      ->linkByHrefExists('admin/content/block/' . $test_block->id());
    $this->assertSession()
      ->linkByHrefExists('admin/content/block/' . $test_block->id() . '/delete');
  }

}

Classes

Title Deprecated Summary
BlockContentListViewsTest Tests the Views-powered listing of content blocks.

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