View source
<?php
namespace Drupal\serialization\Tests;
use Drupal\Component\Utility\SafeMarkup;
class EntitySerializationTest extends NormalizerTestBase {
public static $modules = array(
'serialization',
'system',
'field',
'entity_test',
'text',
'filter',
'user',
'entity_serialization_test',
);
protected $values;
protected $entity;
protected $user;
protected $serializer;
protected $entityClass = 'Drupal\\entity_test\\Entity\\EntityTest';
protected function setUp() {
parent::setUp();
$this
->installSchema('system', array(
'sequences',
));
$this->user = \Drupal::entityManager()
->getStorage('user')
->create([
'name' => 'serialization_test_user',
'mail' => 'foo@example.com',
'pass' => '123456',
]);
$this->user
->save();
$this->values = array(
'name' => $this
->randomMachineName(),
'user_id' => $this->user
->id(),
'field_test_text' => array(
'value' => $this
->randomMachineName(),
'format' => 'full_html',
),
);
$this->entity = entity_create('entity_test_mulrev', $this->values);
$this->entity
->save();
$this->serializer = $this->container
->get('serializer');
$this
->installConfig(array(
'field',
));
}
public function testNormalize() {
$expected = array(
'id' => array(
array(
'value' => 1,
),
),
'uuid' => array(
array(
'value' => $this->entity
->uuid(),
),
),
'langcode' => array(
array(
'value' => 'en',
),
),
'name' => array(
array(
'value' => $this->values['name'],
),
),
'type' => array(
array(
'value' => 'entity_test_mulrev',
),
),
'created' => array(
array(
'value' => $this->entity->created->value,
),
),
'user_id' => array(
array(
'target_id' => $this->user
->id(),
'url' => $this->user
->url(),
),
),
'revision_id' => array(
array(
'value' => 1,
),
),
'default_langcode' => array(
array(
'value' => TRUE,
),
),
'field_test_text' => array(
array(
'value' => $this->values['field_test_text']['value'],
'format' => $this->values['field_test_text']['format'],
),
),
);
$normalized = $this->serializer
->normalize($this->entity);
foreach (array_keys($expected) as $fieldName) {
$this
->assertEqual($expected[$fieldName], $normalized[$fieldName], "ComplexDataNormalizer produces expected array for {$fieldName}.");
}
$this
->assertEqual(array_diff_key($normalized, $expected), array(), 'No unexpected data is added to the normalized array.');
}
public function testUserNormalize() {
$normalized = $this->serializer
->normalize($this->user);
$this
->assertFalse(array_key_exists('pass', $normalized), '"pass" key does not exist in normalized user');
$this
->assertFalse(array_key_exists('mail', $normalized), '"mail" key does not exist in normalized user');
$normalized = $this->serializer
->normalize($this->user, NULL, [
'account' => $this->user,
]);
$this
->assertIdentical($normalized['pass'], [
NULL,
], '"pass" value is normalized to [NULL]');
}
public function testSerialize() {
$normalized = $this->serializer
->normalize($this->entity, 'json');
$expected = json_encode($normalized);
$actual = $this->serializer
->serialize($this->entity, 'json');
$this
->assertIdentical($actual, $expected, 'Entity serializes to JSON when "json" is requested.');
$actual = $this->serializer
->serialize($normalized, 'json');
$this
->assertIdentical($actual, $expected, 'A normalized array serializes to JSON when "json" is requested');
$actual = $this->serializer
->serialize($this->entity, 'ajax');
$this
->assertIdentical($actual, $expected, 'Entity serializes to JSON when "ajax" is requested.');
$actual = $this->serializer
->serialize($normalized, 'ajax');
$this
->assertIdentical($actual, $expected, 'A normalized array serializes to JSON when "ajax" is requested');
$expected = array(
'id' => '<id><value>' . $this->entity
->id() . '</value></id>',
'uuid' => '<uuid><value>' . $this->entity
->uuid() . '</value></uuid>',
'langcode' => '<langcode><value>en</value></langcode>',
'name' => '<name><value>' . $this->values['name'] . '</value></name>',
'type' => '<type><value>entity_test_mulrev</value></type>',
'created' => '<created><value>' . $this->entity->created->value . '</value></created>',
'user_id' => '<user_id><target_id>' . $this->user
->id() . '</target_id><url>' . $this->user
->url() . '</url></user_id>',
'revision_id' => '<revision_id><value>' . $this->entity
->getRevisionId() . '</value></revision_id>',
'default_langcode' => '<default_langcode><value>1</value></default_langcode>',
'field_test_text' => '<field_test_text><value>' . $this->values['field_test_text']['value'] . '</value><format>' . $this->values['field_test_text']['format'] . '</format></field_test_text>',
);
$expected = array_merge($normalized, $expected);
array_unshift($expected, '<?xml version="1.0"?>' . PHP_EOL . '<response>');
$expected[] = '</response>' . PHP_EOL;
$expected = implode('', $expected);
$actual = $this->serializer
->serialize($this->entity, 'xml');
$this
->assertIdentical($actual, $expected);
$actual = $this->serializer
->serialize($normalized, 'xml');
$this
->assertIdentical($actual, $expected);
}
public function testDenormalize() {
$normalized = $this->serializer
->normalize($this->entity);
foreach (array(
'json',
'xml',
) as $type) {
$denormalized = $this->serializer
->denormalize($normalized, $this->entityClass, $type, array(
'entity_type' => 'entity_test_mulrev',
));
$this
->assertTrue($denormalized instanceof $this->entityClass, SafeMarkup::format('Denormalized entity is an instance of @class', array(
'@class' => $this->entityClass,
)));
$this
->assertIdentical($denormalized
->getEntityTypeId(), $this->entity
->getEntityTypeId(), 'Expected entity type found.');
$this
->assertIdentical($denormalized
->bundle(), $this->entity
->bundle(), 'Expected entity bundle found.');
$this
->assertIdentical($denormalized
->uuid(), $this->entity
->uuid(), 'Expected entity UUID found.');
}
}
}