You are here

public function BlockContentTypeTest::testBlockContentTypeEditing in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/block_content/tests/src/Functional/BlockContentTypeTest.php \Drupal\Tests\block_content\Functional\BlockContentTypeTest::testBlockContentTypeEditing()

Tests editing a block type using the UI.

File

core/modules/block_content/tests/src/Functional/BlockContentTypeTest.php, line 101

Class

BlockContentTypeTest
Ensures that custom block type functions work correctly.

Namespace

Drupal\Tests\block_content\Functional

Code

public function testBlockContentTypeEditing() {
  $this
    ->drupalPlaceBlock('system_breadcrumb_block');

  // Now create an initial block-type.
  $this
    ->createBlockContentType('basic', TRUE);
  $this
    ->drupalLogin($this->adminUser);

  // We need two block types to prevent /block/add redirecting.
  $this
    ->createBlockContentType('other');
  $field_definitions = \Drupal::service('entity_field.manager')
    ->getFieldDefinitions('block_content', 'other');
  $this
    ->assertFalse(isset($field_definitions['body']), 'Body field was not created when using the API to create block content types.');

  // Verify that title and body fields are displayed.
  $this
    ->drupalGet('block/add/basic');
  $this
    ->assertRaw('Block description', 'Block info field was found.');
  $this
    ->assertNotEmpty($this
    ->cssSelect('#edit-body-0-value'), 'Body field was found.');

  // Change the block type name.
  $edit = [
    'label' => 'Bar',
  ];
  $this
    ->drupalGet('admin/structure/block/block-content/manage/basic');
  $this
    ->assertTitle('Edit basic custom block type | Drupal');
  $this
    ->drupalPostForm(NULL, $edit, t('Save'));
  $front_page_path = Url::fromRoute('<front>')
    ->toString();
  $this
    ->assertBreadcrumb('admin/structure/block/block-content/manage/basic/fields', [
    $front_page_path => 'Home',
    'admin/structure/block' => 'Block layout',
    'admin/structure/block/block-content' => 'Custom block library',
    'admin/structure/block/block-content/manage/basic' => 'Edit Bar',
  ]);
  \Drupal::service('entity_field.manager')
    ->clearCachedFieldDefinitions();
  $this
    ->drupalGet('block/add');
  $this
    ->assertRaw('Bar', 'New name was displayed.');
  $this
    ->clickLink('Bar');
  $this
    ->assertUrl(Url::fromRoute('block_content.add_form', [
    'block_content_type' => 'basic',
  ], [
    'absolute' => TRUE,
  ])
    ->toString(), [], 'Original machine name was used in URL.');

  // Remove the body field.
  $this
    ->drupalPostForm('admin/structure/block/block-content/manage/basic/fields/block_content.basic.body/delete', [], t('Delete'));

  // Resave the settings for this type.
  $this
    ->drupalPostForm('admin/structure/block/block-content/manage/basic', [], t('Save'));

  // Check that the body field doesn't exist.
  $this
    ->drupalGet('block/add/basic');
  $this
    ->assertEmpty($this
    ->cssSelect('#edit-body-0-value'), 'Body field was not found.');
}