class PrimitiveDataNormalizerTest

Same name and namespace in other branches
  1. 8.9.x core/modules/serialization/tests/src/Unit/Normalizer/PrimitiveDataNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\PrimitiveDataNormalizerTest
  2. 10 core/modules/serialization/tests/src/Unit/Normalizer/PrimitiveDataNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\PrimitiveDataNormalizerTest
  3. 11.x core/modules/serialization/tests/src/Unit/Normalizer/PrimitiveDataNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\PrimitiveDataNormalizerTest

@coversDefaultClass \Drupal\serialization\Normalizer\PrimitiveDataNormalizer @group serialization

Hierarchy

Expanded class hierarchy of PrimitiveDataNormalizerTest

File

core/modules/serialization/tests/src/Unit/Normalizer/PrimitiveDataNormalizerTest.php, line 16

Namespace

Drupal\Tests\serialization\Unit\Normalizer
View source
class PrimitiveDataNormalizerTest extends UnitTestCase {
    
    /**
     * The TypedDataNormalizer instance.
     *
     * @var \Drupal\serialization\Normalizer\TypedDataNormalizer
     */
    protected $normalizer;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        $this->normalizer = new PrimitiveDataNormalizer();
    }
    
    /**
     * @covers ::supportsNormalization
     * @dataProvider dataProviderPrimitiveData
     */
    public function testSupportsNormalization($primitive_data, $expected) {
        $this->assertTrue($this->normalizer
            ->supportsNormalization($primitive_data));
    }
    
    /**
     * @covers ::supportsNormalization
     */
    public function testSupportsNormalizationFail() {
        // Test that an object not implementing PrimitiveInterface fails.
        $this->assertFalse($this->normalizer
            ->supportsNormalization(new \stdClass()));
    }
    
    /**
     * @covers ::normalize
     * @dataProvider dataProviderPrimitiveData
     */
    public function testNormalize($primitive_data, $expected) {
        $this->assertSame($expected, $this->normalizer
            ->normalize($primitive_data));
    }
    
    /**
     * Data provider for testNormalize().
     */
    public function dataProviderPrimitiveData() {
        $data = [];
        $definition = DataDefinition::createFromDataType('string');
        $string = new StringData($definition, 'string');
        $string->setValue('test');
        $data['string'] = [
            $string,
            'test',
        ];
        $definition = DataDefinition::createFromDataType('string');
        $string = new StringData($definition, 'string');
        $string->setValue(NULL);
        $data['string-null'] = [
            $string,
            NULL,
        ];
        $definition = DataDefinition::createFromDataType('integer');
        $integer = new IntegerData($definition, 'integer');
        $integer->setValue(5);
        $data['integer'] = [
            $integer,
            5,
        ];
        $definition = DataDefinition::createFromDataType('integer');
        $integer = new IntegerData($definition, 'integer');
        $integer->setValue(NULL);
        $data['integer-null'] = [
            $integer,
            NULL,
        ];
        $definition = DataDefinition::createFromDataType('boolean');
        $boolean = new BooleanData($definition, 'boolean');
        $boolean->setValue(TRUE);
        $data['boolean'] = [
            $boolean,
            TRUE,
        ];
        $definition = DataDefinition::createFromDataType('boolean');
        $boolean = new BooleanData($definition, 'boolean');
        $boolean->setValue(NULL);
        $data['boolean-null'] = [
            $boolean,
            NULL,
        ];
        return $data;
    }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title Overrides
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
PrimitiveDataNormalizerTest::$normalizer protected property The TypedDataNormalizer instance.
PrimitiveDataNormalizerTest::dataProviderPrimitiveData public function Data provider for testNormalize().
PrimitiveDataNormalizerTest::setUp protected function Overrides UnitTestCase::setUp
PrimitiveDataNormalizerTest::testNormalize public function @covers ::normalize
@dataProvider dataProviderPrimitiveData
PrimitiveDataNormalizerTest::testSupportsNormalization public function @covers ::supportsNormalization
@dataProvider dataProviderPrimitiveData
PrimitiveDataNormalizerTest::testSupportsNormalizationFail public function @covers ::supportsNormalization
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals Deprecated protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUpBeforeClass public static function

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