class PrimitiveDataNormalizerTest

Same name and namespace in other branches
  1. 9 core/modules/serialization/tests/src/Unit/Normalizer/PrimitiveDataNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\PrimitiveDataNormalizerTest
  2. 8.9.x 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 18

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 {
    parent::setUp();
    $this->normalizer = new PrimitiveDataNormalizer();
  }
  
  /**
   * @covers ::supportsNormalization
   * @dataProvider dataProviderPrimitiveData
   */
  public function testSupportsNormalization($primitive_data, $expected) : void {
    $this->assertTrue($this->normalizer
      ->supportsNormalization($primitive_data));
  }
  
  /**
   * @covers ::supportsNormalization
   */
  public function testSupportsNormalizationFail() : void {
    // 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) : void {
    $this->assertSame($expected, $this->normalizer
      ->normalize($primitive_data));
  }
  
  /**
   * Data provider for testNormalize().
   */
  public static 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 static function Data provider for testNormalize().
PrimitiveDataNormalizerTest::setUp protected function Overrides UnitTestCase::setUp
PrimitiveDataNormalizerTest::testNormalize public function @covers ::normalize[[api-linebreak]]
@dataProvider dataProviderPrimitiveData
PrimitiveDataNormalizerTest::testSupportsNormalization public function @covers ::supportsNormalization[[api-linebreak]]
@dataProvider dataProviderPrimitiveData
PrimitiveDataNormalizerTest::testSupportsNormalizationFail public function @covers ::supportsNormalization[[api-linebreak]]
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers.
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate Deprecated public function Callback for random string validation.
UnitTestCase::$root protected property The app root. 1
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::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::setUpBeforeClass public static function
UnitTestCase::__get public function

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