You are here

DenormalizeTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/hal/src/Tests/DenormalizeTest.php

Namespace

Drupal\hal\Tests

File

core/modules/hal/src/Tests/DenormalizeTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\hal\Tests\DenormalizeTest.
 */
namespace Drupal\hal\Tests;

use Drupal\Core\Url;
use Drupal\field\Entity\FieldConfig;
use Symfony\Component\Serializer\Exception\UnexpectedValueException;

/**
 * Tests that entities can be denormalized from HAL.
 *
 * @group hal
 */
class DenormalizeTest extends NormalizerTestBase {

  /**
   * Tests that the type link relation in incoming data is handled correctly.
   */
  public function testTypeHandling() {

    // Valid type.
    $data_with_valid_type = array(
      '_links' => array(
        'type' => array(
          'href' => Url::fromUri('base:rest/type/entity_test/entity_test', array(
            'absolute' => TRUE,
          ))
            ->toString(),
        ),
      ),
    );
    $denormalized = $this->serializer
      ->denormalize($data_with_valid_type, $this->entityClass, $this->format);
    $this
      ->assertEqual(get_class($denormalized), $this->entityClass, 'Request with valid type results in creation of correct bundle.');

    // Multiple types.
    $data_with_multiple_types = array(
      '_links' => array(
        'type' => array(
          array(
            'href' => Url::fromUri('base:rest/types/foo', array(
              'absolute' => TRUE,
            ))
              ->toString(),
          ),
          array(
            'href' => Url::fromUri('base:rest/type/entity_test/entity_test', array(
              'absolute' => TRUE,
            ))
              ->toString(),
          ),
        ),
      ),
    );
    $denormalized = $this->serializer
      ->denormalize($data_with_multiple_types, $this->entityClass, $this->format);
    $this
      ->assertEqual(get_class($denormalized), $this->entityClass, 'Request with multiple types results in creation of correct bundle.');

    // Invalid type.
    $data_with_invalid_type = array(
      '_links' => array(
        'type' => array(
          'href' => Url::fromUri('base:rest/types/foo', array(
            'absolute' => TRUE,
          ))
            ->toString(),
        ),
      ),
    );
    try {
      $this->serializer
        ->denormalize($data_with_invalid_type, $this->entityClass, $this->format);
      $this
        ->fail('Exception should be thrown when type is invalid.');
    } catch (UnexpectedValueException $e) {
      $this
        ->pass('Exception thrown when type is invalid.');
    }

    // No type.
    $data_with_no_type = array(
      '_links' => array(),
    );
    try {
      $this->serializer
        ->denormalize($data_with_no_type, $this->entityClass, $this->format);
      $this
        ->fail('Exception should be thrown when no type is provided.');
    } catch (UnexpectedValueException $e) {
      $this
        ->pass('Exception thrown when no type is provided.');
    }
  }

  /**
   * Test that a field set to an empty array is different than an absent field.
   */
  public function testMarkFieldForDeletion() {

    // Add a default value for a field.
    $field = FieldConfig::loadByName('entity_test', 'entity_test', 'field_test_text');
    $field
      ->setDefaultValue(array(
      array(
        'value' => 'Llama',
      ),
    ));
    $field
      ->save();

    // Denormalize data that contains no entry for the field, and check that
    // the default value is present in the resulting entity.
    $data = array(
      '_links' => array(
        'type' => array(
          'href' => Url::fromUri('base:rest/type/entity_test/entity_test', array(
            'absolute' => TRUE,
          ))
            ->toString(),
        ),
      ),
    );
    $entity = $this->serializer
      ->denormalize($data, $this->entityClass, $this->format);
    $this
      ->assertEqual($entity->field_test_text
      ->count(), 1);
    $this
      ->assertEqual($entity->field_test_text->value, 'Llama');

    // Denormalize data that contains an empty entry for the field, and check
    // that the field is empty in the resulting entity.
    $data = array(
      '_links' => array(
        'type' => array(
          'href' => Url::fromUri('base:rest/type/entity_test/entity_test', array(
            'absolute' => TRUE,
          ))
            ->toString(),
        ),
      ),
      'field_test_text' => array(),
    );
    $entity = $this->serializer
      ->denormalize($data, get_class($entity), $this->format, [
      'target_instance' => $entity,
    ]);
    $this
      ->assertEqual($entity->field_test_text
      ->count(), 0);
  }

  /**
   * Test that non-reference fields can be denormalized.
   */
  public function testBasicFieldDenormalization() {
    $data = array(
      '_links' => array(
        'type' => array(
          'href' => Url::fromUri('base:rest/type/entity_test/entity_test', array(
            'absolute' => TRUE,
          ))
            ->toString(),
        ),
      ),
      'uuid' => array(
        array(
          'value' => 'e5c9fb96-3acf-4a8d-9417-23de1b6c3311',
        ),
      ),
      'field_test_text' => array(
        array(
          'value' => $this
            ->randomMachineName(),
          'format' => 'full_html',
        ),
      ),
      'field_test_translatable_text' => array(
        array(
          'value' => $this
            ->randomMachineName(),
          'format' => 'full_html',
        ),
        array(
          'value' => $this
            ->randomMachineName(),
          'format' => 'filtered_html',
        ),
        array(
          'value' => $this
            ->randomMachineName(),
          'format' => 'filtered_html',
          'lang' => 'de',
        ),
        array(
          'value' => $this
            ->randomMachineName(),
          'format' => 'full_html',
          'lang' => 'de',
        ),
      ),
    );
    $expected_value_default = array(
      array(
        'value' => $data['field_test_translatable_text'][0]['value'],
        'format' => 'full_html',
      ),
      array(
        'value' => $data['field_test_translatable_text'][1]['value'],
        'format' => 'filtered_html',
      ),
    );
    $expected_value_de = array(
      array(
        'value' => $data['field_test_translatable_text'][2]['value'],
        'format' => 'filtered_html',
      ),
      array(
        'value' => $data['field_test_translatable_text'][3]['value'],
        'format' => 'full_html',
      ),
    );
    $denormalized = $this->serializer
      ->denormalize($data, $this->entityClass, $this->format);
    $this
      ->assertEqual($data['uuid'], $denormalized
      ->get('uuid')
      ->getValue(), 'A preset value (e.g. UUID) is overridden by incoming data.');
    $this
      ->assertEqual($data['field_test_text'], $denormalized
      ->get('field_test_text')
      ->getValue(), 'A basic text field is denormalized.');
    $this
      ->assertEqual($expected_value_default, $denormalized
      ->get('field_test_translatable_text')
      ->getValue(), 'Values in the default language are properly handled for a translatable field.');
    $this
      ->assertEqual($expected_value_de, $denormalized
      ->getTranslation('de')
      ->get('field_test_translatable_text')
      ->getValue(), 'Values in a translation language are properly handled for a translatable field.');
  }

  /**
   * Verifies that the denormalized entity is correct in the PATCH context.
   */
  public function testPatchDenormalization() {
    $data = array(
      '_links' => array(
        'type' => array(
          'href' => Url::fromUri('base:rest/type/entity_test/entity_test', array(
            'absolute' => TRUE,
          ))
            ->toString(),
        ),
      ),
      'field_test_text' => array(
        array(
          'value' => $this
            ->randomMachineName(),
          'format' => 'full_html',
        ),
      ),
    );
    $denormalized = $this->serializer
      ->denormalize($data, $this->entityClass, $this->format, array(
      'request_method' => 'patch',
    ));

    // Check that the one field got populated as expected.
    $this
      ->assertEqual($data['field_test_text'], $denormalized
      ->get('field_test_text')
      ->getValue());

    // Check the custom property that contains the list of fields to merge.
    $this
      ->assertEqual($denormalized->_restSubmittedFields, [
      'field_test_text',
    ]);
  }

}

Classes

Namesort descending Description
DenormalizeTest Tests that entities can be denormalized from HAL.