function FilterHooksTest::testFilterHooks

Same name and namespace in other branches
  1. 11.x core/modules/filter/tests/src/Functional/FilterHooksTest.php \Drupal\Tests\filter\Functional\FilterHooksTest::testFilterHooks()
  2. 10 core/modules/filter/tests/src/Functional/FilterHooksTest.php \Drupal\Tests\filter\Functional\FilterHooksTest::testFilterHooks()
  3. 9 core/modules/filter/tests/src/Functional/FilterHooksTest.php \Drupal\Tests\filter\Functional\FilterHooksTest::testFilterHooks()
  4. main core/modules/filter/tests/src/Functional/FilterHooksTest.php \Drupal\Tests\filter\Functional\FilterHooksTest::testFilterHooks()

Tests hooks on format management.

Tests that hooks run correctly on creating, editing, and deleting a text format.

File

core/modules/filter/tests/src/Functional/FilterHooksTest.php, line 33

Class

FilterHooksTest
Tests hooks for text formats insert/update/disable.

Namespace

Drupal\Tests\filter\Functional

Code

public function testFilterHooks() {
  // Create content type, with underscores.
  $type_name = 'test_' . strtolower($this->randomMachineName());
  $type = $this->drupalCreateContentType([
    'name' => $type_name,
    'type' => $type_name,
  ]);
  $node_permission = "create {$type_name} content";
  $admin_user = $this->drupalCreateUser([
    'administer filters',
    'administer nodes',
    $node_permission,
  ]);
  $this->drupalLogin($admin_user);
  // Add a text format.
  $name = $this->randomMachineName();
  $edit = [];
  $edit['format'] = mb_strtolower($this->randomMachineName());
  $edit['name'] = $name;
  $edit['roles[' . RoleInterface::ANONYMOUS_ID . ']'] = 1;
  $this->drupalPostForm('admin/config/content/formats/add', $edit, t('Save configuration'));
  $this->assertRaw(t('Added text format %format.', [
    '%format' => $name,
  ]));
  $this->assertText('hook_filter_format_insert invoked.');
  $format_id = $edit['format'];
  // Update text format.
  $edit = [];
  $edit['roles[' . RoleInterface::AUTHENTICATED_ID . ']'] = 1;
  $this->drupalPostForm('admin/config/content/formats/manage/' . $format_id, $edit, t('Save configuration'));
  $this->assertRaw(t('The text format %format has been updated.', [
    '%format' => $name,
  ]));
  $this->assertText('hook_filter_format_update invoked.');
  // Use the format created.
  $title = $this->randomMachineName(8);
  $edit = [];
  $edit['title[0][value]'] = $title;
  $edit['body[0][value]'] = $this->randomMachineName(32);
  $edit['body[0][format]'] = $format_id;
  $this->drupalPostForm("node/add/{$type->id()}", $edit, t('Save'));
  $this->assertText(t('@type @title has been created.', [
    '@type' => $type_name,
    '@title' => $title,
  ]));
  // Disable the text format.
  $this->drupalPostForm('admin/config/content/formats/manage/' . $format_id . '/disable', [], t('Disable'));
  $this->assertRaw(t('Disabled text format %format.', [
    '%format' => $name,
  ]));
  $this->assertText('hook_filter_format_disable invoked.');
}

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