protected function InternalEntitiesTest::getIndividual in JSON:API 8
Same name and namespace in other branches
- 8.2 tests/src/Functional/InternalEntitiesTest.php \Drupal\Tests\jsonapi\Functional\InternalEntitiesTest::getIndividual()
Returns the decoded JSON API document for the for the given entity.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity to request.
array $options: URL options.
Return value
array The decoded response document.
3 calls to InternalEntitiesTest::getIndividual()
- InternalEntitiesTest::testIncludes in tests/
src/ Functional/ InternalEntitiesTest.php - Asserts that internal entities are not included in compound documents.
- InternalEntitiesTest::testLinks in tests/
src/ Functional/ InternalEntitiesTest.php - Asserts that links to internal relationships aren't generated.
- InternalEntitiesTest::testRoutes in tests/
src/ Functional/ InternalEntitiesTest.php - Ensures that internal resources types aren't present in the routes.
File
- tests/
src/ Functional/ InternalEntitiesTest.php, line 158
Class
- InternalEntitiesTest
- Makes assertions about the JSON API behavior for internal entities.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getIndividual(EntityInterface $entity, array $options = []) {
$entity_type_id = $entity
->getEntityTypeId();
$bundle = $entity
->bundle();
$path = "/jsonapi/{$entity_type_id}/{$bundle}/{$entity->uuid()}";
return $this
->jsonapiGet($path, $options);
}