You are here

protected function NodeHalJsonAnonTest::getExpectedNormalizedEntity in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/tests/src/Functional/Hal/NodeHalJsonAnonTest.php \Drupal\Tests\node\Functional\Hal\NodeHalJsonAnonTest::getExpectedNormalizedEntity()

Returns the expected normalization of the entity.

Return value

array

Overrides NodeResourceTestBase::getExpectedNormalizedEntity

See also

::createEntity()

File

core/modules/node/tests/src/Functional/Hal/NodeHalJsonAnonTest.php, line 54

Class

NodeHalJsonAnonTest
@group hal

Namespace

Drupal\Tests\node\Functional\Hal

Code

protected function getExpectedNormalizedEntity() {
  $default_normalization = parent::getExpectedNormalizedEntity();
  $normalization = $this
    ->applyHalFieldNormalization($default_normalization);
  $author = User::load($this->entity
    ->getOwnerId());
  return $normalization + [
    '_links' => [
      'self' => [
        'href' => $this->baseUrl . '/llama?_format=hal_json',
      ],
      'type' => [
        'href' => $this->baseUrl . '/rest/type/node/camelids',
      ],
      $this->baseUrl . '/rest/relation/node/camelids/revision_uid' => [
        [
          'href' => $this->baseUrl . '/user/' . $author
            ->id() . '?_format=hal_json',
        ],
      ],
      $this->baseUrl . '/rest/relation/node/camelids/uid' => [
        [
          'href' => $this->baseUrl . '/user/' . $author
            ->id() . '?_format=hal_json',
          'lang' => 'en',
        ],
      ],
    ],
    '_embedded' => [
      $this->baseUrl . '/rest/relation/node/camelids/revision_uid' => [
        [
          '_links' => [
            'self' => [
              'href' => $this->baseUrl . '/user/' . $author
                ->id() . '?_format=hal_json',
            ],
            'type' => [
              'href' => $this->baseUrl . '/rest/type/user/user',
            ],
          ],
          'uuid' => [
            [
              'value' => $author
                ->uuid(),
            ],
          ],
        ],
      ],
      $this->baseUrl . '/rest/relation/node/camelids/uid' => [
        [
          '_links' => [
            'self' => [
              'href' => $this->baseUrl . '/user/' . $author
                ->id() . '?_format=hal_json',
            ],
            'type' => [
              'href' => $this->baseUrl . '/rest/type/user/user',
            ],
          ],
          'uuid' => [
            [
              'value' => $author
                ->uuid(),
            ],
          ],
          'lang' => 'en',
        ],
      ],
    ],
  ];
}