function NodeTest::testGetIndividual

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/NodeTest.php \Drupal\Tests\jsonapi\Functional\NodeTest::testGetIndividual()
  2. 8.9.x core/modules/jsonapi/tests/src/Functional/NodeTest.php \Drupal\Tests\jsonapi\Functional\NodeTest::testGetIndividual()
  3. 11.x core/modules/jsonapi/tests/src/Functional/NodeTest.php \Drupal\Tests\jsonapi\Functional\NodeTest::testGetIndividual()

Tests GETting an individual resource, plus edge cases to ensure good DX.

Overrides ResourceTestBase::testGetIndividual

File

core/modules/jsonapi/tests/src/Functional/NodeTest.php, line 322

Class

NodeTest
JSON:API integration test for the "Node" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

public function testGetIndividual() : void {
  // Cacheable normalizations are written after the response is flushed to
  // the client. We use WaitTerminateTestTrait to wait for Drupal to perform
  // its termination work before continuing.
  $this->setWaitForTerminate();
  parent::testGetIndividual();
  $this->assertCacheableNormalizations();
  // Unpublish node.
  $this->entity
    ->setUnpublished()
    ->save();
  // @todo Remove line below in favor of commented line in https://www.drupal.org/project/drupal/issues/2878463.
  $url = Url::fromRoute(sprintf('jsonapi.%s.individual', static::$resourceTypeName), [
    'entity' => $this->entity
      ->uuid(),
  ]);
  // $url = $this->entity->toUrl('jsonapi');
  $request_options = $this->getAuthenticationRequestOptions();
  // 403 when accessing own unpublished node.
  $response = $this->request('GET', $url, $request_options);
  $this->assertResourceErrorResponse(403, 'The current user is not allowed to GET the selected resource.', $url, $response, '/data', [
    '4xx-response',
    'http_response',
    'node:1',
  ], [
    'url.query_args',
    'url.site',
    'user.permissions',
  ], FALSE, 'MISS');
  // 200 after granting permission.
  $this->grantPermissionsToTestedRole([
    'view own unpublished content',
  ]);
  $response = $this->request('GET', $url, $request_options);
  // The response varies by 'user', causing the 'user.permissions' cache
  // context to be optimized away.
  $expected_cache_contexts = Cache::mergeContexts($this->getExpectedCacheContexts(), [
    'user',
  ]);
  $expected_cache_contexts = array_diff($expected_cache_contexts, [
    'user.permissions',
  ]);
  $this->assertResourceResponse(200, FALSE, $response, $this->getExpectedCacheTags(), $expected_cache_contexts, FALSE, 'UNCACHEABLE');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.