You are here

protected function PathAliasHalJsonTestBase::getNormalizedPostEntity in Drupal 9

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

Returns the normalized POST entity.

Return value

array

Overrides PathAliasResourceTestBase::getNormalizedPostEntity

See also

::testPost

File

core/modules/path_alias/tests/src/Functional/Hal/PathAliasHalJsonTestBase.php, line 36

Class

PathAliasHalJsonTestBase
Base hal_json test class for the path_alias entity type.

Namespace

Drupal\Tests\path_alias\Functional\Hal

Code

protected function getNormalizedPostEntity() {
  return parent::getNormalizedPostEntity() + [
    '_links' => [
      'type' => [
        'href' => $this->baseUrl . '/rest/type/path_alias/path_alias',
      ],
    ],
  ];
}