You are here

protected function EntityTestHalJsonAnonTest::getExpectedNormalizedEntity in Drupal 8

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

Returns the expected normalization of the entity.

Return value

array

Overrides EntityTestResourceTestBase::getExpectedNormalizedEntity

See also

::createEntity()

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

File

core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonAnonTest.php, line 43

Class

EntityTestHalJsonAnonTest
@group hal

Namespace

Drupal\Tests\entity_test\Functional\Hal

Code

protected function getExpectedNormalizedEntity() {
  $default_normalization = parent::getExpectedNormalizedEntity();
  $normalization = $this
    ->applyHalFieldNormalization($default_normalization);
  $author = User::load(0);
  return $normalization + [
    '_links' => [
      'self' => [
        'href' => $this->baseUrl . '/entity_test/1?_format=hal_json',
      ],
      'type' => [
        'href' => $this->baseUrl . '/rest/type/entity_test/entity_test',
      ],
      $this->baseUrl . '/rest/relation/entity_test/entity_test/user_id' => [
        [
          'href' => $this->baseUrl . '/user/0?_format=hal_json',
          'lang' => 'en',
        ],
      ],
    ],
    '_embedded' => [
      $this->baseUrl . '/rest/relation/entity_test/entity_test/user_id' => [
        [
          '_links' => [
            'self' => [
              'href' => $this->baseUrl . '/user/0?_format=hal_json',
            ],
            'type' => [
              'href' => $this->baseUrl . '/rest/type/user/user',
            ],
          ],
          'uuid' => [
            [
              'value' => $author
                ->uuid(),
            ],
          ],
          'lang' => 'en',
        ],
      ],
    ],
  ];
}