You are here

protected function EntityTestLabelResourceTestBase::getExpectedNormalizedEntity in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelResourceTestBase.php \Drupal\Tests\entity_test\Functional\Rest\EntityTestLabelResourceTestBase::getExpectedNormalizedEntity()
  2. 10 core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelResourceTestBase.php \Drupal\Tests\entity_test\Functional\Rest\EntityTestLabelResourceTestBase::getExpectedNormalizedEntity()

Returns the expected normalization of the entity.

Return value

array

Overrides EntityResourceTestBase::getExpectedNormalizedEntity

See also

::createEntity()

1 call to EntityTestLabelResourceTestBase::getExpectedNormalizedEntity()
EntityTestLabelHalJsonAnonTest::getExpectedNormalizedEntity in core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestLabelHalJsonAnonTest.php
Returns the expected normalization of the entity.
1 method overrides EntityTestLabelResourceTestBase::getExpectedNormalizedEntity()
EntityTestLabelHalJsonAnonTest::getExpectedNormalizedEntity in core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestLabelHalJsonAnonTest.php
Returns the expected normalization of the entity.

File

core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelResourceTestBase.php, line 73

Class

EntityTestLabelResourceTestBase

Namespace

Drupal\Tests\entity_test\Functional\Rest

Code

protected function getExpectedNormalizedEntity() {
  $author = User::load(0);
  $normalization = [
    'uuid' => [
      [
        'value' => $this->entity
          ->uuid(),
      ],
    ],
    'id' => [
      [
        'value' => (int) $this->entity
          ->id(),
      ],
    ],
    'langcode' => [
      [
        'value' => 'en',
      ],
    ],
    'type' => [
      [
        'value' => 'entity_test_label',
      ],
    ],
    'name' => [
      [
        'value' => 'label_llama',
      ],
    ],
    'created' => [
      $this
        ->formatExpectedTimestampItemValues((int) $this->entity
        ->get('created')->value),
    ],
    'user_id' => [
      [
        'target_id' => (int) $author
          ->id(),
        'target_type' => 'user',
        'target_uuid' => $author
          ->uuid(),
        'url' => $author
          ->toUrl()
          ->toString(),
      ],
    ],
  ];
  return $normalization;
}