You are here

protected function FileHalJsonAnonTest::getExpectedNormalizedEntity in Drupal 9

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

Returns the expected normalization of the entity.

Return value

array

Overrides FileResourceTestBase::getExpectedNormalizedEntity

See also

::createEntity()

File

core/modules/file/tests/src/Functional/Hal/FileHalJsonAnonTest.php, line 40

Class

FileHalJsonAnonTest
@group hal

Namespace

Drupal\Tests\file\Functional\Hal

Code

protected function getExpectedNormalizedEntity() {
  $default_normalization = parent::getExpectedNormalizedEntity();
  $normalization = $this
    ->applyHalFieldNormalization($default_normalization);
  $url = $this->entity
    ->createFileUrl(FALSE);
  if ($this
    ->config('hal.settings')
    ->get('bc_file_uri_as_url_normalizer')) {
    $normalization['uri'][0]['value'] = $url;
  }
  $uid = $this->author
    ->id();
  return $normalization + [
    '_embedded' => [
      $this->baseUrl . '/rest/relation/file/file/uid' => [
        [
          '_links' => [
            'self' => [
              'href' => $this->baseUrl . "/user/{$uid}?_format=hal_json",
            ],
            'type' => [
              'href' => $this->baseUrl . '/rest/type/user/user',
            ],
          ],
          'uuid' => [
            [
              'value' => $this->author
                ->uuid(),
            ],
          ],
        ],
      ],
    ],
    '_links' => [
      'self' => [
        'href' => $url,
      ],
      'type' => [
        'href' => $this->baseUrl . '/rest/type/file/file',
      ],
      $this->baseUrl . '/rest/relation/file/file/uid' => [
        [
          'href' => $this->baseUrl . "/user/{$uid}?_format=hal_json",
        ],
      ],
    ],
  ];
}