You are here

public function BlockContentRedirectTest::testRedirectDestination in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/block_content/tests/src/Functional/Views/BlockContentRedirectTest.php \Drupal\Tests\block_content\Functional\Views\BlockContentRedirectTest::testRedirectDestination()
  2. 10 core/modules/block_content/tests/src/Functional/Views/BlockContentRedirectTest.php \Drupal\Tests\block_content\Functional\Views\BlockContentRedirectTest::testRedirectDestination()

Tests the redirect destination when editing block content.

File

core/modules/block_content/tests/src/Functional/Views/BlockContentRedirectTest.php, line 34

Class

BlockContentRedirectTest
Tests the redirect destination on block content on entity operations.

Namespace

Drupal\Tests\block_content\Functional\Views

Code

public function testRedirectDestination() {
  $this
    ->drupalLogin($this
    ->drupalCreateUser([
    'administer blocks',
  ]));
  $this
    ->drupalGet('admin/structure/block/block-content');

  // Create a custom block.
  $this
    ->clickLink('custom block');
  $edit = [];
  $edit['info[0][value]'] = 'Test redirect destination';
  $edit['body[0][value]'] = $this
    ->randomMachineName(16);
  $this
    ->drupalPostForm(NULL, $edit, 'Save');

  // Check the block content is present in the view redirect destination.
  $this
    ->drupalGet('admin/content/redirect_destination');
  $this
    ->assertText('Test redirect destination');

  // Edit the created block and save.
  $this
    ->clickLink('Edit');
  $this
    ->drupalPostForm(NULL, [], 'Save');
  $this
    ->assertUrl('admin/content/redirect_destination');
}