You are here

FilterHooksTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/filter/src/Tests/FilterHooksTest.php

File

core/modules/filter/src/Tests/FilterHooksTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\filter\Tests\FilterHooksTest.
 */
namespace Drupal\filter\Tests;

use Drupal\Component\Utility\Unicode;
use Drupal\simpletest\WebTestBase;
use Drupal\user\RoleInterface;

/**
 * Tests hooks for text formats insert/update/disable.
 *
 * @group filter
 */
class FilterHooksTest extends WebTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'node',
    'filter_test',
  );

  /**
   * Tests hooks on format management.
   *
   * Tests that hooks run correctly on creating, editing, and deleting a text
   * format.
   */
  function testFilterHooks() {

    // Create content type, with underscores.
    $type_name = 'test_' . strtolower($this
      ->randomMachineName());
    $type = $this
      ->drupalCreateContentType(array(
      'name' => $type_name,
      'type' => $type_name,
    ));
    $node_permission = "create {$type_name} content";
    $admin_user = $this
      ->drupalCreateUser(array(
      'administer filters',
      'administer nodes',
      $node_permission,
    ));
    $this
      ->drupalLogin($admin_user);

    // Add a text format.
    $name = $this
      ->randomMachineName();
    $edit = array();
    $edit['format'] = Unicode::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.', array(
      '%format' => $name,
    )));
    $this
      ->assertText('hook_filter_format_insert invoked.');
    $format_id = $edit['format'];

    // Update text format.
    $edit = array();
    $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.', array(
      '%format' => $name,
    )));
    $this
      ->assertText('hook_filter_format_update invoked.');

    // Use the format created.
    $title = $this
      ->randomMachineName(8);
    $edit = array();
    $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 and publish'));
    $this
      ->assertText(t('@type @title has been created.', array(
      '@type' => $type_name,
      '@title' => $title,
    )));

    // Disable the text format.
    $this
      ->drupalPostForm('admin/config/content/formats/manage/' . $format_id . '/disable', array(), t('Disable'));
    $this
      ->assertRaw(t('Disabled text format %format.', array(
      '%format' => $name,
    )));
    $this
      ->assertText('hook_filter_format_disable invoked.');
  }

}

Classes

Namesort descending Description
FilterHooksTest Tests hooks for text formats insert/update/disable.