You are here

protected function InternalEntitiesTest::getRelated in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Functional/InternalEntitiesTest.php \Drupal\Tests\jsonapi\Functional\InternalEntitiesTest::getRelated()

Performs an authenticated request and returns the decoded document.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity to request.

string $relationship: The field name of the relationship to request.

array $options: URL options.

Return value

array The decoded response document.

File

core/modules/jsonapi/tests/src/Functional/InternalEntitiesTest.php, line 176

Class

InternalEntitiesTest
Makes assertions about the JSON:API behavior for internal entities.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getRelated(EntityInterface $entity, $relationship, array $options = []) {
  $entity_type_id = $entity
    ->getEntityTypeId();
  $bundle = $entity
    ->bundle();
  $path = "/jsonapi/{$entity_type_id}/{$bundle}/{$entity->uuid()}/{$relationship}";
  return $this
    ->jsonapiGet($path, $options);
}