You are here

abstract class FilterFormatResourceTestBase in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/filter/tests/src/Functional/Rest/FilterFormatResourceTestBase.php \Drupal\Tests\filter\Functional\Rest\FilterFormatResourceTestBase
  2. 9 core/modules/filter/tests/src/Functional/Rest/FilterFormatResourceTestBase.php \Drupal\Tests\filter\Functional\Rest\FilterFormatResourceTestBase

Hierarchy

Expanded class hierarchy of FilterFormatResourceTestBase

File

core/modules/filter/tests/src/Functional/Rest/FilterFormatResourceTestBase.php, line 8

Namespace

Drupal\Tests\filter\Functional\Rest
View source
abstract class FilterFormatResourceTestBase extends ConfigEntityResourceTestBase {

  /**
   * {@inheritdoc}
   */
  protected static $modules = [];

  /**
   * {@inheritdoc}
   */
  protected static $entityTypeId = 'filter_format';

  /**
   * @var \Drupal\filter\FilterFormatInterface
   */
  protected $entity;

  /**
   * {@inheritdoc}
   */
  protected function setUpAuthorization($method) {
    $this
      ->grantPermissionsToTestedRole([
      'administer filters',
    ]);
  }

  /**
   * {@inheritdoc}
   */
  protected function createEntity() {
    $pablo_format = FilterFormat::create([
      'name' => 'Pablo Picasso',
      'format' => 'pablo',
      'langcode' => 'es',
      'filters' => [
        'filter_html' => [
          'status' => TRUE,
          'settings' => [
            'allowed_html' => '<p> <a> <b> <lo>',
          ],
        ],
      ],
    ]);
    $pablo_format
      ->save();
    return $pablo_format;
  }

  /**
   * {@inheritdoc}
   */
  protected function getExpectedNormalizedEntity() {
    return [
      'dependencies' => [],
      'filters' => [
        'filter_html' => [
          'id' => 'filter_html',
          'provider' => 'filter',
          'status' => TRUE,
          'weight' => -10,
          'settings' => [
            'allowed_html' => '<p> <a> <b> <lo>',
            'filter_html_help' => TRUE,
            'filter_html_nofollow' => FALSE,
          ],
        ],
      ],
      'format' => 'pablo',
      'langcode' => 'es',
      'name' => 'Pablo Picasso',
      'status' => TRUE,
      'uuid' => $this->entity
        ->uuid(),
      'weight' => 0,
    ];
  }

  /**
   * {@inheritdoc}
   */
  protected function getNormalizedPostEntity() {

    // @todo Update in https://www.drupal.org/node/2300677.
    return [];
  }

}

Members