You are here

protected function InternalEntitiesTest::jsonapiGet in JSON:API 8

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/InternalEntitiesTest.php \Drupal\Tests\jsonapi\Functional\InternalEntitiesTest::jsonapiGet()

Performs an authenticated request and returns the decoded document.

4 calls to InternalEntitiesTest::jsonapiGet()
InternalEntitiesTest::getIndividual in tests/src/Functional/InternalEntitiesTest.php
Returns the decoded JSON API document for the for the given entity.
InternalEntitiesTest::getRelated in tests/src/Functional/InternalEntitiesTest.php
Performs an authenticated request and returns the decoded document.
InternalEntitiesTest::testEntryPoint in tests/src/Functional/InternalEntitiesTest.php
Ensures that internal resources types aren't present in the entry point.
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 188

Class

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

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function jsonapiGet($path, array $options = []) {
  $this
    ->drupalLogin($this->testUser);
  $response = $this
    ->drupalGet($path, $options, [
    'Accept' => 'application/vnd.api+json',
  ]);
  return Json::decode($response);
}