You are here

public function FilterAdminTest::testFilterAdmin in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/filter/tests/src/Functional/FilterAdminTest.php \Drupal\Tests\filter\Functional\FilterAdminTest::testFilterAdmin()
  2. 10 core/modules/filter/tests/src/Functional/FilterAdminTest.php \Drupal\Tests\filter\Functional\FilterAdminTest::testFilterAdmin()

Tests filter administration functionality.

File

core/modules/filter/tests/src/Functional/FilterAdminTest.php, line 195

Class

FilterAdminTest
Thoroughly test the administrative interface of the filter module.

Namespace

Drupal\Tests\filter\Functional

Code

public function testFilterAdmin() {
  $first_filter = 'filter_autop';
  $second_filter = 'filter_url';
  $basic = 'basic_html';
  $restricted = 'restricted_html';
  $full = 'full_html';
  $plain = 'plain_text';

  // Check that the fallback format exists and cannot be disabled.
  $this
    ->assertTrue($plain == filter_fallback_format(), 'The fallback format is set to plain text.');
  $this
    ->drupalGet('admin/config/content/formats');
  $this
    ->assertNoRaw('admin/config/content/formats/manage/' . $plain . '/disable', 'Disable link for the fallback format not found.');
  $this
    ->drupalGet('admin/config/content/formats/manage/' . $plain . '/disable');
  $this
    ->assertSession()
    ->statusCodeEquals(403);

  // Verify access permissions to Full HTML format.
  $full_format = FilterFormat::load($full);
  $this
    ->assertTrue($full_format
    ->access('use', $this->adminUser), 'Admin user may use Full HTML.');
  $this
    ->assertFalse($full_format
    ->access('use', $this->webUser), 'Web user may not use Full HTML.');

  // Add an additional tag and extra spaces and returns.
  $edit = [];
  $edit['filters[filter_html][settings][allowed_html]'] = "<a>   <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>\r\n<quote>";
  $this
    ->drupalPostForm('admin/config/content/formats/manage/' . $restricted, $edit, t('Save configuration'));
  $this
    ->assertUrl('admin/config/content/formats/manage/' . $restricted);
  $this
    ->drupalGet('admin/config/content/formats/manage/' . $restricted);
  $this
    ->assertFieldByName('filters[filter_html][settings][allowed_html]', "<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <quote>", 'Allowed HTML tag added.');
  $elements = $this
    ->xpath('//select[@name=:first]/following::select[@name=:second]', [
    ':first' => 'filters[' . $first_filter . '][weight]',
    ':second' => 'filters[' . $second_filter . '][weight]',
  ]);
  $this
    ->assertNotEmpty($elements, 'Order confirmed in admin interface.');

  // Reorder filters.
  $edit = [];
  $edit['filters[' . $second_filter . '][weight]'] = 1;
  $edit['filters[' . $first_filter . '][weight]'] = 2;
  $this
    ->drupalPostForm(NULL, $edit, t('Save configuration'));
  $this
    ->assertUrl('admin/config/content/formats/manage/' . $restricted);
  $this
    ->drupalGet('admin/config/content/formats/manage/' . $restricted);
  $this
    ->assertFieldByName('filters[' . $second_filter . '][weight]', 1, 'Order saved successfully.');
  $this
    ->assertFieldByName('filters[' . $first_filter . '][weight]', 2, 'Order saved successfully.');
  $elements = $this
    ->xpath('//select[@name=:first]/following::select[@name=:second]', [
    ':first' => 'filters[' . $second_filter . '][weight]',
    ':second' => 'filters[' . $first_filter . '][weight]',
  ]);
  $this
    ->assertNotEmpty($elements, 'Reorder confirmed in admin interface.');
  $filter_format = FilterFormat::load($restricted);
  foreach ($filter_format
    ->filters() as $filter_name => $filter) {
    if ($filter_name == $second_filter || $filter_name == $first_filter) {
      $filters[] = $filter_name;
    }
  }

  // Ensure that the second filter is now before the first filter.
  $this
    ->assertEqual($filter_format
    ->filters($second_filter)->weight + 1, $filter_format
    ->filters($first_filter)->weight, 'Order confirmed in configuration.');

  // Add format.
  $edit = [];
  $edit['format'] = mb_strtolower($this
    ->randomMachineName());
  $edit['name'] = $this
    ->randomMachineName();
  $edit['roles[' . RoleInterface::AUTHENTICATED_ID . ']'] = 1;
  $edit['filters[' . $second_filter . '][status]'] = TRUE;
  $edit['filters[' . $first_filter . '][status]'] = TRUE;
  $this
    ->drupalPostForm('admin/config/content/formats/add', $edit, t('Save configuration'));
  $this
    ->assertUrl('admin/config/content/formats');
  $this
    ->assertRaw(t('Added text format %format.', [
    '%format' => $edit['name'],
  ]), 'New filter created.');
  filter_formats_reset();
  $format = FilterFormat::load($edit['format']);
  $this
    ->assertNotNull($format, 'Format found in database.');
  $this
    ->drupalGet('admin/config/content/formats/manage/' . $format
    ->id());
  $this
    ->assertSession()
    ->checkboxChecked('roles[' . RoleInterface::AUTHENTICATED_ID . ']');
  $this
    ->assertSession()
    ->checkboxChecked('filters[' . $second_filter . '][status]');
  $this
    ->assertSession()
    ->checkboxChecked('filters[' . $first_filter . '][status]');

  // Disable new filter.
  $this
    ->drupalPostForm('admin/config/content/formats/manage/' . $format
    ->id() . '/disable', [], t('Disable'));
  $this
    ->assertUrl('admin/config/content/formats');
  $this
    ->assertRaw(t('Disabled text format %format.', [
    '%format' => $edit['name'],
  ]), 'Format successfully disabled.');

  // Allow authenticated users on full HTML.
  $format = FilterFormat::load($full);
  $edit = [];
  $edit['roles[' . RoleInterface::ANONYMOUS_ID . ']'] = 0;
  $edit['roles[' . RoleInterface::AUTHENTICATED_ID . ']'] = 1;
  $this
    ->drupalPostForm('admin/config/content/formats/manage/' . $full, $edit, t('Save configuration'));
  $this
    ->assertUrl('admin/config/content/formats/manage/' . $full);
  $this
    ->assertRaw(t('The text format %format has been updated.', [
    '%format' => $format
      ->label(),
  ]), 'Full HTML format successfully updated.');

  // Switch user.
  $this
    ->drupalLogin($this->webUser);
  $this
    ->drupalGet('node/add/page');
  $this
    ->assertRaw('<option value="' . $full . '">Full HTML</option>', 'Full HTML filter accessible.');

  // Use basic HTML and see if it removes tags that are not allowed.
  $body = '<em>' . $this
    ->randomMachineName() . '</em>';
  $extra_text = 'text';
  $text = $body . '<random>' . $extra_text . '</random>';
  $edit = [];
  $edit['title[0][value]'] = $this
    ->randomMachineName();
  $edit['body[0][value]'] = $text;
  $edit['body[0][format]'] = $basic;
  $this
    ->drupalPostForm('node/add/page', $edit, t('Save'));
  $this
    ->assertText(t('Basic page @title has been created.', [
    '@title' => $edit['title[0][value]'],
  ]), 'Filtered node created.');

  // Verify that the creation message contains a link to a node.
  $view_link = $this
    ->xpath('//div[contains(@class, "messages")]//a[contains(@href, :href)]', [
    ':href' => 'node/',
  ]);
  $this
    ->assertNotEmpty($view_link, 'The message area contains a link to a node');
  $node = $this
    ->drupalGetNodeByTitle($edit['title[0][value]']);
  $this
    ->assertNotEmpty($node, 'Node found in database.');
  $this
    ->drupalGet('node/' . $node
    ->id());
  $this
    ->assertRaw($body . $extra_text, 'Filter removed invalid tag.');

  // Use plain text and see if it escapes all tags, whether allowed or not.
  // In order to test plain text, we have to enable the hidden variable for
  // "show_fallback_format", which displays plain text in the format list.
  $this
    ->config('filter.settings')
    ->set('always_show_fallback_choice', TRUE)
    ->save();
  $edit = [];
  $edit['body[0][format]'] = $plain;
  $this
    ->drupalPostForm('node/' . $node
    ->id() . '/edit', $edit, t('Save'));
  $this
    ->drupalGet('node/' . $node
    ->id());
  $this
    ->assertEscaped($text);
  $this
    ->config('filter.settings')
    ->set('always_show_fallback_choice', FALSE)
    ->save();

  // Switch user.
  $this
    ->drupalLogin($this->adminUser);

  // Clean up.
  // Allowed tags.
  $edit = [];
  $edit['filters[filter_html][settings][allowed_html]'] = '<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>';
  $this
    ->drupalPostForm('admin/config/content/formats/manage/' . $basic, $edit, t('Save configuration'));
  $this
    ->assertUrl('admin/config/content/formats/manage/' . $basic);
  $this
    ->drupalGet('admin/config/content/formats/manage/' . $basic);
  $this
    ->assertFieldByName('filters[filter_html][settings][allowed_html]', $edit['filters[filter_html][settings][allowed_html]'], 'Changes reverted.');

  // Full HTML.
  $edit = [];
  $edit['roles[' . RoleInterface::AUTHENTICATED_ID . ']'] = FALSE;
  $this
    ->drupalPostForm('admin/config/content/formats/manage/' . $full, $edit, t('Save configuration'));
  $this
    ->assertUrl('admin/config/content/formats/manage/' . $full);
  $this
    ->assertRaw(t('The text format %format has been updated.', [
    '%format' => $format
      ->label(),
  ]), 'Full HTML format successfully reverted.');
  $this
    ->drupalGet('admin/config/content/formats/manage/' . $full);
  $this
    ->assertFieldByName('roles[' . RoleInterface::AUTHENTICATED_ID . ']', $edit['roles[' . RoleInterface::AUTHENTICATED_ID . ']'], 'Changes reverted.');

  // Filter order.
  $edit = [];
  $edit['filters[' . $second_filter . '][weight]'] = 2;
  $edit['filters[' . $first_filter . '][weight]'] = 1;
  $this
    ->drupalPostForm('admin/config/content/formats/manage/' . $basic, $edit, t('Save configuration'));
  $this
    ->assertUrl('admin/config/content/formats/manage/' . $basic);
  $this
    ->drupalGet('admin/config/content/formats/manage/' . $basic);
  $this
    ->assertFieldByName('filters[' . $second_filter . '][weight]', $edit['filters[' . $second_filter . '][weight]'], 'Changes reverted.');
  $this
    ->assertFieldByName('filters[' . $first_filter . '][weight]', $edit['filters[' . $first_filter . '][weight]'], 'Changes reverted.');
}