NormalizerTestBase.php

Same filename and directory in other branches
  1. 9 core/modules/serialization/tests/src/Kernel/NormalizerTestBase.php
  2. 9 core/modules/hal/tests/src/Kernel/NormalizerTestBase.php
  3. 8.9.x core/modules/serialization/src/Tests/NormalizerTestBase.php
  4. 8.9.x core/modules/serialization/tests/src/Kernel/NormalizerTestBase.php
  5. 8.9.x core/modules/hal/tests/src/Kernel/NormalizerTestBase.php
  6. 10 core/modules/serialization/tests/src/Kernel/NormalizerTestBase.php

Namespace

Drupal\Tests\serialization\Kernel

File

core/modules/serialization/tests/src/Kernel/NormalizerTestBase.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\serialization\Kernel;

use Drupal\KernelTests\KernelTestBase;
use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;

/**
 * Helper base class to set up some test fields for serialization testing.
 */
abstract class NormalizerTestBase extends KernelTestBase {
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    protected static $modules = [
        'serialization',
        'system',
        'field',
        'entity_test',
        'text',
        'filter',
        'user',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->installEntitySchema('entity_test_mulrev');
        $this->installEntitySchema('user');
        $this->installConfig([
            'field',
        ]);
        \Drupal::moduleHandler()->invoke('rest', 'install');
        // Auto-create a field for testing.
        FieldStorageConfig::create([
            'entity_type' => 'entity_test_mulrev',
            'field_name' => 'field_test_text',
            'type' => 'text',
            'cardinality' => 1,
            'translatable' => FALSE,
        ])->save();
        FieldConfig::create([
            'entity_type' => 'entity_test_mulrev',
            'field_name' => 'field_test_text',
            'bundle' => 'entity_test_mulrev',
            'label' => 'Test text-field',
            'widget' => [
                'type' => 'text_textfield',
                'weight' => 0,
            ],
        ])->save();
    }

}

Classes

Title Deprecated Summary
NormalizerTestBase Helper base class to set up some test fields for serialization testing.

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