NullNormalizerTest.php
Namespace
Drupal\Tests\serialization\Unit\NormalizerFile
-
core/
modules/ serialization/ tests/ src/ Unit/ Normalizer/ NullNormalizerTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\serialization\Unit\Normalizer;
use Drupal\Core\TypedData\TypedDataInterface;
use Drupal\serialization\Normalizer\NullNormalizer;
use Drupal\Tests\serialization\Traits\JsonSchemaTestTrait;
use Drupal\Tests\UnitTestCase;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;
/**
* Tests Drupal\serialization\Normalizer\NullNormalizer.
*/
class NullNormalizerTest extends UnitTestCase {
use JsonSchemaTestTrait;
/**
* The NullNormalizer instance.
*
* @var \Drupal\serialization\Normalizer\NullNormalizer
*/
protected $normalizer;
/**
* The interface to use in testing.
*
* @var string
*/
protected $interface = 'Drupal\\Core\\TypedData\\TypedDataInterface';
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->normalizer = new NullNormalizer($this->interface);
}
/**
* Tests supports normalization.
*
* @legacy-covers ::__construct
* @legacy-covers ::supportsNormalization
*/
public function testSupportsNormalization() : void {
$mock = $this->createMock('Drupal\\Core\\TypedData\\TypedDataInterface');
$this->assertTrue($this->normalizer
->supportsNormalization($mock));
// Also test that an object not implementing TypedDataInterface fails.
$this->assertFalse($this->normalizer
->supportsNormalization(new \stdClass()));
}
/**
* Tests normalize.
*
* @legacy-covers ::normalize
*/
public function testNormalize() : void {
$mock = $this->createMock('Drupal\\Core\\TypedData\\TypedDataInterface');
$this->assertNull($this->normalizer
->normalize($mock));
}
/**
* {@inheritdoc}
*/
public static function jsonSchemaDataProvider() : array {
return [
'null' => [
TypedDataInterface::class,
],
];
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
NullNormalizerTest | Tests Drupal\serialization\Normalizer\NullNormalizer. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.