FilterFormatUpdateFilterSortingTest.php

Same filename and directory in other branches
  1. 11.x core/modules/filter/tests/src/Functional/FilterFormatUpdateFilterSortingTest.php

Namespace

Drupal\Tests\filter\Functional

File

core/modules/filter/tests/src/Functional/FilterFormatUpdateFilterSortingTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\filter\Functional;

use Drupal\FunctionalTests\Update\UpdatePathTestBase;

/**
 * Tests the upgrade path for filter formats.
 *
 * @see views_post_update_fix_revision_id_part()
 *
 * @group Update
 * @group legacy
 */
class FilterFormatUpdateFilterSortingTest extends UpdatePathTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected function setDatabaseDumpFiles() {
    $this->databaseDumpFiles = [
      __DIR__ . '/../../../../system/tests/fixtures/update/drupal-9.4.0.bare.standard.php.gz',
    ];
  }
  
  /**
   * Tests filter_post_update_sort_filters().
   */
  public function testFilterPostUpdateSortFilters() : void {
    $format_config = $this->config('filter.format.plain_text');
    $this->assertSame([
      'filter_html_escape',
      'filter_url',
      'filter_autop',
    ], array_keys($format_config->get('filters')));
    $this->runUpdates();
    $format_config = $this->config('filter.format.plain_text');
    $this->assertSame([
      'filter_autop',
      'filter_html_escape',
      'filter_url',
    ], array_keys($format_config->get('filters')));
  }

}

Classes

Title Deprecated Summary
FilterFormatUpdateFilterSortingTest Tests the upgrade path for filter formats.

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