You are here

TypedDataNormalizerTest.php in Zircon Profile 8

File

core/modules/serialization/tests/src/Unit/Normalizer/TypedDataNormalizerTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Tests\serialization\Unit\Normalizer\TypedDataNormalizerTest.
 */
namespace Drupal\Tests\serialization\Unit\Normalizer;

use Drupal\Tests\UnitTestCase;
use Drupal\serialization\Normalizer\TypedDataNormalizer;

/**
 * @coversDefaultClass \Drupal\serialization\Normalizer\TypedDataNormalizer
 * @group serialization
 */
class TypedDataNormalizerTest extends UnitTestCase {

  /**
   * The TypedDataNormalizer instance.
   *
   * @var \Drupal\serialization\Normalizer\TypedDataNormalizer
   */
  protected $normalizer;

  /**
   * The mock typed data instance.
   *
   * @var \Drupal\Core\TypedData\TypedDataInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $typedData;
  protected function setUp() {
    $this->normalizer = new TypedDataNormalizer();
    $this->typedData = $this
      ->getMock('Drupal\\Core\\TypedData\\TypedDataInterface');
  }

  /**
   * Tests the supportsNormalization() method.
   */
  public function testSupportsNormalization() {
    $this
      ->assertTrue($this->normalizer
      ->supportsNormalization($this->typedData));

    // Also test that an object not implementing TypedDataInterface fails.
    $this
      ->assertFalse($this->normalizer
      ->supportsNormalization(new \stdClass()));
  }

  /**
   * Tests the normalize() method.
   */
  public function testNormalize() {
    $this->typedData
      ->expects($this
      ->once())
      ->method('getValue')
      ->will($this
      ->returnValue('test'));
    $this
      ->assertEquals('test', $this->normalizer
      ->normalize($this->typedData));
  }

}

Classes

Namesort descending Description
TypedDataNormalizerTest @coversDefaultClass \Drupal\serialization\Normalizer\TypedDataNormalizer @group serialization