You are here

JsonApiDocumentTopLevelNormalizerTest.php in JSON:API 8

File

tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php
View source
<?php

namespace Drupal\Tests\jsonapi\Kernel\Normalizer;

use Drupal\Component\Serialization\Json;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Field\FieldStorageDefinitionInterface;
use Drupal\file\Entity\File;
use Drupal\jsonapi\LinkManager\LinkManager;
use Drupal\jsonapi\Resource\JsonApiDocumentTopLevel;
use Drupal\node\Entity\Node;
use Drupal\node\Entity\NodeType;
use Drupal\taxonomy\Entity\Term;
use Drupal\taxonomy\Entity\Vocabulary;
use Drupal\Tests\image\Kernel\ImageFieldCreationTrait;
use Drupal\Tests\jsonapi\Kernel\JsonapiKernelTestBase;
use Drupal\user\Entity\Role;
use Drupal\user\Entity\User;
use Drupal\user\RoleInterface;
use Prophecy\Argument;
use Symfony\Component\HttpFoundation\ParameterBag;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;

/**
 * @coversDefaultClass \Drupal\jsonapi\Normalizer\JsonApiDocumentTopLevelNormalizer
 * @group jsonapi
 * @group legacy
 *
 * @internal
 */
class JsonApiDocumentTopLevelNormalizerTest extends JsonapiKernelTestBase {
  use ImageFieldCreationTrait;

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'jsonapi',
    'field',
    'node',
    'serialization',
    'system',
    'taxonomy',
    'text',
    'filter',
    'user',
    'file',
    'image',
    'jsonapi_test_normalizers_kernel',
  ];

  /**
   * A node to normalize.
   *
   * @var \Drupal\Core\Entity\EntityInterface
   */
  protected $node;

  /**
   * A user to normalize.
   *
   * @var \Drupal\user\Entity\User
   */
  protected $user;

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();

    // Add the entity schemas.
    $this
      ->installEntitySchema('node');
    $this
      ->installEntitySchema('user');
    $this
      ->installEntitySchema('taxonomy_term');
    $this
      ->installEntitySchema('file');

    // Add the additional table schemas.
    $this
      ->installSchema('system', [
      'sequences',
    ]);
    $this
      ->installSchema('node', [
      'node_access',
    ]);
    $this
      ->installSchema('user', [
      'users_data',
    ]);
    $this
      ->installSchema('file', [
      'file_usage',
    ]);
    $type = NodeType::create([
      'type' => 'article',
    ]);
    $type
      ->save();
    $this
      ->createEntityReferenceField('node', 'article', 'field_tags', 'Tags', 'taxonomy_term', 'default', [
      'target_bundles' => [
        'tags',
      ],
    ], FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
    $this
      ->createTextField('node', 'article', 'body', 'Body');
    $this
      ->createImageField('field_image', 'article');
    $this->user = User::create([
      'name' => 'user1',
      'mail' => 'user@localhost',
    ]);
    $this->user2 = User::create([
      'name' => 'user2',
      'mail' => 'user2@localhost',
    ]);
    $this->user
      ->save();
    $this->user2
      ->save();
    $this->vocabulary = Vocabulary::create([
      'name' => 'Tags',
      'vid' => 'tags',
    ]);
    $this->vocabulary
      ->save();
    $this->term1 = Term::create([
      'name' => 'term1',
      'vid' => $this->vocabulary
        ->id(),
    ]);
    $this->term2 = Term::create([
      'name' => 'term2',
      'vid' => $this->vocabulary
        ->id(),
    ]);
    $this->term1
      ->save();
    $this->term2
      ->save();
    $this->file = File::create([
      'uri' => 'public://example.png',
      'filename' => 'example.png',
    ]);
    $this->file
      ->save();
    $this->node = Node::create([
      'title' => 'dummy_title',
      'type' => 'article',
      'uid' => 1,
      'body' => [
        'format' => 'plain_text',
        'value' => $this
          ->randomStringValidate(42),
      ],
      'field_tags' => [
        [
          'target_id' => $this->term1
            ->id(),
        ],
        [
          'target_id' => $this->term2
            ->id(),
        ],
      ],
      'field_image' => [
        [
          'target_id' => $this->file
            ->id(),
          'alt' => 'test alt',
          'title' => 'test title',
          'width' => 10,
          'height' => 11,
        ],
      ],
    ]);
    $this->node
      ->save();
    $link_manager = $this
      ->prophesize(LinkManager::class);
    $link_manager
      ->getEntityLink(Argument::any(), Argument::any(), Argument::type('array'), Argument::type('string'))
      ->willReturn('dummy_entity_link');
    $link_manager
      ->getRequestLink(Argument::any())
      ->willReturn('dummy_document_link');
    $this->container
      ->set('jsonapi.link_manager', $link_manager
      ->reveal());
    $this->nodeType = NodeType::load('article');
    Role::create([
      'id' => RoleInterface::ANONYMOUS_ID,
      'permissions' => [
        'access content',
      ],
    ])
      ->save();
  }

  /**
   * {@inheritdoc}
   */
  public function tearDown() {
    if ($this->node) {
      $this->node
        ->delete();
    }
    if ($this->term1) {
      $this->term1
        ->delete();
    }
    if ($this->term2) {
      $this->term2
        ->delete();
    }
    if ($this->vocabulary) {
      $this->vocabulary
        ->delete();
    }
    if ($this->user) {
      $this->user
        ->delete();
    }
    if ($this->user2) {
      $this->user2
        ->delete();
    }
  }

  /**
   * @covers ::normalize
   * @dataProvider normalizeValueProvider
   */
  public function testNormalize($include) {
    list($request, $resource_type) = $this
      ->generateProphecies('node', 'article');
    $request->query = new ParameterBag([
      'fields' => [
        'node--article' => 'title,type,uid,field_tags,field_image',
        'user--user' => 'name',
      ],
      'include' => $include,
    ]);
    $jsonapi_doc_object = $this
      ->getNormalizer()
      ->normalize(new JsonApiDocumentTopLevel($this->node), 'api_json', [
      'request' => $request,
      'resource_type' => $resource_type,
    ]);
    $normalized = $jsonapi_doc_object
      ->rasterizeValue();

    // @see http://jsonapi.org/format/#document-jsonapi-object
    $this
      ->assertEquals($normalized['jsonapi']['version'], '1.0');
    $this
      ->assertEquals($normalized['jsonapi']['meta']['links']['self'], 'http://jsonapi.org/format/1.0/');
    $this
      ->assertSame($normalized['data']['attributes']['title'], 'dummy_title');
    $this
      ->assertEquals($normalized['data']['id'], $this->node
      ->uuid());
    $this
      ->assertSame([
      'data' => [
        'type' => 'node_type--node_type',
        'id' => NodeType::load('article')
          ->uuid(),
      ],
      'links' => [
        'self' => 'dummy_entity_link',
        'related' => 'dummy_entity_link',
      ],
    ], $normalized['data']['relationships']['type']);
    $this
      ->assertTrue(!isset($normalized['data']['attributes']['created']));
    $this
      ->assertEquals([
      'alt' => 'test alt',
      'title' => 'test title',
      'width' => 10,
      'height' => 11,
    ], $normalized['data']['relationships']['field_image']['data']['meta']);
    $this
      ->assertSame('node--article', $normalized['data']['type']);
    $this
      ->assertEquals([
      'data' => [
        'type' => 'user--user',
        'id' => $this->user
          ->uuid(),
      ],
      'links' => [
        'self' => 'dummy_entity_link',
        'related' => 'dummy_entity_link',
      ],
    ], $normalized['data']['relationships']['uid']);
    $this
      ->assertEquals("The current user is not allowed to GET the selected resource. The 'access user profiles' permission is required and the user must be active.", $normalized['meta']['errors'][0]['detail']);
    $this
      ->assertEquals(403, $normalized['meta']['errors'][0]['status']);
    $expected_index_of_term1 = floatval(\Drupal::VERSION) >= 8.6 ? 1 : 0;
    $this
      ->assertEquals($this->term1
      ->uuid(), $normalized['included'][$expected_index_of_term1]['id']);
    $this
      ->assertEquals('taxonomy_term--tags', $normalized['included'][$expected_index_of_term1]['type']);
    $this
      ->assertEquals($this->term1
      ->label(), $normalized['included'][$expected_index_of_term1]['attributes']['name']);
    $this
      ->assertCount(floatval(\Drupal::VERSION) >= 8.6 ? 9 : 8, $normalized['included'][$expected_index_of_term1]['attributes']);
    $this
      ->assertTrue(!isset($normalized['included'][$expected_index_of_term1]['attributes']['created']));

    // Make sure that the cache tags for the includes and the requested entities
    // are bubbling as expected.
    $this
      ->assertArraySubset([
      'file:1',
      'node:1',
      'taxonomy_term:1',
      'taxonomy_term:2',
    ], $jsonapi_doc_object
      ->getCacheTags());
    $this
      ->assertSame(Cache::PERMANENT, $jsonapi_doc_object
      ->getCacheMaxAge());
  }

  /**
   * Data provider for testNormalize.
   *
   * @return array
   *   The data for the test method.
   */
  public function normalizeValueProvider() {
    return [
      [
        'uid,field_tags,field_image',
      ],
      [
        'uid, field_tags, field_image',
      ],
    ];
  }

  /**
   * @covers ::normalize
   */
  public function testNormalizeRelated() {
    $this
      ->markTestIncomplete('This fails and should be fixed by https://www.drupal.org/project/jsonapi/issues/2922121');
    list($request, $resource_type) = $this
      ->generateProphecies('node', 'article', 'uid');
    $request->query = new ParameterBag([
      'fields' => [
        'user--user' => 'name,roles',
      ],
      'include' => 'roles',
    ]);
    $document_wrapper = $this
      ->prophesize(JsonApiDocumentTopLevel::class);
    $author = $this->node
      ->get('uid')->entity;
    $document_wrapper
      ->getData()
      ->willReturn($author);
    $jsonapi_doc_object = $this
      ->getNormalizer()
      ->normalize($document_wrapper
      ->reveal(), 'api_json', [
      'request' => $request,
      'resource_type' => $resource_type,
    ]);
    $normalized = $jsonapi_doc_object
      ->rasterizeValue();
    $this
      ->assertSame($normalized['data']['attributes']['name'], 'user1');
    $this
      ->assertEquals($normalized['data']['id'], User::load(1)
      ->uuid());
    $this
      ->assertEquals($normalized['data']['type'], 'user--user');

    // Make sure that the cache tags for the includes and the requested entities
    // are bubbling as expected.
    $this
      ->assertSame([
      'user:1',
    ], $jsonapi_doc_object
      ->getCacheTags());
    $this
      ->assertSame(Cache::PERMANENT, $jsonapi_doc_object
      ->getCacheMaxAge());
  }

  /**
   * @covers ::normalize
   */
  public function testNormalizeUuid() {
    list($request, $resource_type) = $this
      ->generateProphecies('node', 'article', 'uuid');
    $document_wrapper = $this
      ->prophesize(JsonApiDocumentTopLevel::class);
    $document_wrapper
      ->getData()
      ->willReturn($this->node);
    $request->query = new ParameterBag([
      'fields' => [
        'node--article' => 'title,type,uid,field_tags',
        'user--user' => 'name',
      ],
      'include' => 'uid,field_tags',
    ]);
    $jsonapi_doc_object = $this
      ->getNormalizer()
      ->normalize($document_wrapper
      ->reveal(), 'api_json', [
      'request' => $request,
      'resource_type' => $resource_type,
    ]);
    $normalized = $jsonapi_doc_object
      ->rasterizeValue();
    $this
      ->assertStringMatchesFormat($this->node
      ->uuid(), $normalized['data']['id']);
    $this
      ->assertEquals($this->node->type->entity
      ->uuid(), $normalized['data']['relationships']['type']['data']['id']);
    $this
      ->assertEquals($this->user
      ->uuid(), $normalized['data']['relationships']['uid']['data']['id']);
    $this
      ->assertFalse(empty($normalized['included'][0]['id']));
    $this
      ->assertFalse(empty($normalized['meta']['errors']));
    $this
      ->assertEquals($this->term1
      ->uuid(), $normalized['included'][0]['id']);
    $this
      ->assertCount(floatval(\Drupal::VERSION) >= 8.6 ? 9 : 8, $normalized['included'][1]['attributes']);

    // Make sure that the cache tags for the includes and the requested entities
    // are bubbling as expected.
    $this
      ->assertArraySubset([
      'node:1',
      'taxonomy_term:1',
      'taxonomy_term:2',
    ], $jsonapi_doc_object
      ->getCacheTags());
  }

  /**
   * @covers ::normalize
   */
  public function testNormalizeException() {
    list($request, $resource_type) = $this
      ->generateProphecies('node', 'article', 'id');
    $document_wrapper = $this
      ->prophesize(JsonApiDocumentTopLevel::class);
    $document_wrapper
      ->getData()
      ->willReturn($this->node);
    $request->query = new ParameterBag([
      'fields' => [
        'node--article' => 'title,type,uid',
        'user--user' => 'name',
      ],
      'include' => 'uid',
    ]);
    $normalized = $this->container
      ->get('jsonapi.serializer_do_not_use_removal_imminent')
      ->serialize(new BadRequestHttpException('Lorem'), 'api_json', [
      'request' => $request,
      'resource_type' => $resource_type,
      'data_wrapper' => 'errors',
    ]);
    $normalized = Json::decode($normalized);
    $this
      ->assertNotEmpty($normalized['errors']);
    $this
      ->assertArrayNotHasKey('data', $normalized);
    $this
      ->assertEquals(400, $normalized['errors'][0]['status']);
    $this
      ->assertEquals('Lorem', $normalized['errors'][0]['detail']);
    $this
      ->assertEquals([
      'info' => 'http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1',
    ], $normalized['errors'][0]['links']);
  }

  /**
   * @covers ::normalize
   */
  public function testNormalizeConfig() {
    list($request, $resource_type) = $this
      ->generateProphecies('node_type', 'node_type', 'id');
    $document_wrapper = $this
      ->prophesize(JsonApiDocumentTopLevel::class);
    $document_wrapper
      ->getData()
      ->willReturn($this->nodeType);
    $request->query = new ParameterBag([
      'fields' => [
        'node_type--node_type' => 'uuid,display_submitted',
      ],
      'include' => NULL,
    ]);
    $jsonapi_doc_object = $this
      ->getNormalizer()
      ->normalize($document_wrapper
      ->reveal(), 'api_json', [
      'request' => $request,
      'resource_type' => $resource_type,
    ]);
    $normalized = $jsonapi_doc_object
      ->rasterizeValue();
    $this
      ->assertTrue(empty($normalized['data']['attributes']['type']));
    $this
      ->assertTrue(!empty($normalized['data']['attributes']['uuid']));
    $this
      ->assertSame($normalized['data']['attributes']['display_submitted'], TRUE);
    $this
      ->assertSame($normalized['data']['id'], NodeType::load('article')
      ->uuid());
    $this
      ->assertSame($normalized['data']['type'], 'node_type--node_type');

    // Make sure that the cache tags for the includes and the requested entities
    // are bubbling as expected.
    $this
      ->assertSame([
      'config:node.type.article',
    ], $jsonapi_doc_object
      ->getCacheTags());
  }

  /**
   * Try to POST a node and check if it exists afterwards.
   *
   * @covers ::denormalize
   */
  public function testDenormalize() {
    $payload = '{"data":{"type":"article","attributes":{"title":"Testing article"}}}';
    list($request, $resource_type) = $this
      ->generateProphecies('node', 'article', 'id');
    $node = $this
      ->getNormalizer()
      ->denormalize(Json::decode($payload), NULL, 'api_json', [
      'request' => $request,
      'resource_type' => $resource_type,
    ]);
    $this
      ->assertInstanceOf('\\Drupal\\node\\Entity\\Node', $node);
    $this
      ->assertSame('Testing article', $node
      ->getTitle());
  }

  /**
   * Try to POST a node and check if it exists afterwards.
   *
   * @covers ::denormalize
   */
  public function testDenormalizeUuid() {
    $configurations = [
      // Good data.
      [
        [
          [
            $this->term2
              ->uuid(),
            $this->term1
              ->uuid(),
          ],
          $this->user2
            ->uuid(),
        ],
        [
          [
            $this->term2
              ->id(),
            $this->term1
              ->id(),
          ],
          $this->user2
            ->id(),
        ],
      ],
      // Good data, without any tags.
      [
        [
          [],
          $this->user2
            ->uuid(),
        ],
        [
          [],
          $this->user2
            ->id(),
        ],
      ],
      // Bad data in first tag.
      [
        [
          [
            'invalid-uuid',
            $this->term1
              ->uuid(),
          ],
          $this->user2
            ->uuid(),
        ],
        [
          [
            $this->term1
              ->id(),
          ],
          $this->user2
            ->id(),
        ],
      ],
      // Bad data in user and first tag.
      [
        [
          [
            'invalid-uuid',
            $this->term1
              ->uuid(),
          ],
          'also-invalid-uuid',
        ],
        [
          [
            $this->term1
              ->id(),
          ],
          NULL,
        ],
      ],
    ];
    foreach ($configurations as $configuration) {
      list($payload_data, $expected) = $this
        ->denormalizeUuidProviderBuilder($configuration);
      $payload = Json::encode($payload_data);
      list($request, $resource_type) = $this
        ->generateProphecies('node', 'article');
      $this->container
        ->get('request_stack')
        ->push($request);
      $node = $this
        ->getNormalizer()
        ->denormalize(Json::decode($payload), NULL, 'api_json', [
        'request' => $request,
        'resource_type' => $resource_type,
      ]);

      /* @var \Drupal\node\Entity\Node $node */
      $this
        ->assertInstanceOf('\\Drupal\\node\\Entity\\Node', $node);
      $this
        ->assertSame('Testing article', $node
        ->getTitle());
      if (!empty($expected['user_id'])) {
        $owner = $node
          ->getOwner();
        $this
          ->assertEquals($expected['user_id'], $owner
          ->id());
      }
      $tags = $node
        ->get('field_tags')
        ->getValue();
      if (!empty($expected['tag_ids'][0])) {
        $this
          ->assertEquals($expected['tag_ids'][0], $tags[0]['target_id']);
      }
      else {
        $this
          ->assertArrayNotHasKey(0, $tags);
      }
      if (!empty($expected['tag_ids'][1])) {
        $this
          ->assertEquals($expected['tag_ids'][1], $tags[1]['target_id']);
      }
      else {
        $this
          ->assertArrayNotHasKey(1, $tags);
      }
    }
  }

  /**
   * Tests denormalization for related resources with missing or invalid types.
   */
  public function testDenormalizeInvalidTypeAndNoType() {
    $payload_data = [
      'data' => [
        'type' => 'node--article',
        'attributes' => [
          'title' => 'Testing article',
          'id' => '33095485-70D2-4E51-A309-535CC5BC0115',
        ],
        'relationships' => [
          'uid' => [
            'data' => [
              'type' => 'user--user',
              'id' => $this->user2
                ->uuid(),
            ],
          ],
          'field_tags' => [
            'data' => [
              [
                'type' => 'foobar',
                'id' => $this->term1
                  ->uuid(),
              ],
            ],
          ],
        ],
      ],
    ];

    // Test relationship member with invalid type.
    $payload = Json::encode($payload_data);
    list($request, $resource_type) = $this
      ->generateProphecies('node', 'article');
    $this->container
      ->get('request_stack')
      ->push($request);
    try {
      $this
        ->getNormalizer()
        ->denormalize(Json::decode($payload), NULL, 'api_json', [
        'request' => $request,
        'resource_type' => $resource_type,
      ]);
      $this
        ->fail('No assertion thrown for invalid type');
    } catch (BadRequestHttpException $e) {
      $this
        ->assertEquals("Invalid type specified for related resource: 'foobar'", $e
        ->getMessage());
    }

    // Test relationship member with no type.
    unset($payload_data['data']['relationships']['field_tags']['data'][0]['type']);
    $payload = Json::encode($payload_data);
    list($request, $resource_type) = $this
      ->generateProphecies('node', 'article');
    $this->container
      ->get('request_stack')
      ->push($request);
    try {
      $this->container
        ->get('jsonapi_test_normalizers_kernel.jsonapi_document_toplevel')
        ->denormalize(Json::decode($payload), NULL, 'api_json', [
        'request' => $request,
        'resource_type' => $resource_type,
      ]);
      $this
        ->fail('No assertion thrown for missing type');
    } catch (BadRequestHttpException $e) {
      $this
        ->assertEquals("No type specified for related resource", $e
        ->getMessage());
    }
  }

  /**
   * We cannot use a PHPUnit data provider because our data depends on $this.
   *
   * @param array $options
   *   Options for how to construct test data.
   *
   * @return array
   *   The test data.
   */
  protected function denormalizeUuidProviderBuilder(array $options) {
    list($input, $expected) = $options;
    list($input_tag_uuids, $input_user_uuid) = $input;
    list($expected_tag_ids, $expected_user_id) = $expected;
    $node = [
      [
        'data' => [
          'type' => 'node--article',
          'attributes' => [
            'title' => 'Testing article',
            'id' => '33095485-70D2-4E51-A309-535CC5BC0115',
          ],
          'relationships' => [
            'uid' => [
              'data' => [
                'type' => 'user--user',
                'id' => $input_user_uuid,
              ],
            ],
            'field_tags' => [
              'data' => [],
            ],
          ],
        ],
      ],
      [
        'tag_ids' => $expected_tag_ids,
        'user_id' => $expected_user_id,
      ],
    ];
    if (isset($input_tag_uuids[0])) {
      $node[0]['data']['relationships']['field_tags']['data'][0] = [
        'type' => 'taxonomy_term--tags',
        'id' => $input_tag_uuids[0],
      ];
    }
    if (isset($input_tag_uuids[1])) {
      $node[0]['data']['relationships']['field_tags']['data'][1] = [
        'type' => 'taxonomy_term--tags',
        'id' => $input_tag_uuids[1],
      ];
    }
    return $node;
  }

  /**
   * Ensure that cacheability metadata is properly added.
   *
   * @param \Drupal\Core\Cache\CacheableMetadata $expected_metadata
   *   The expected cacheable metadata.
   * @param array|null $fields
   *   Fields to include in the response, keyed by resource type.
   * @param array|null $includes
   *   Resources paths to include in the response.
   *
   * @dataProvider testCacheableMetadataProvider
   */
  public function testCacheableMetadata(CacheableMetadata $expected_metadata, $fields = NULL, $includes = NULL) {
    list($request, $resource_type) = $this
      ->generateProphecies('node', 'article');
    $context = [
      'request' => $this
        ->decorateRequest($request, $fields, $includes),
      'resource_type' => $resource_type,
    ];
    $jsonapi_doc_object = $this
      ->getNormalizer()
      ->normalize(new JsonApiDocumentTopLevel($this->node), 'api_json', $context);
    $this
      ->assertArraySubset($expected_metadata
      ->getCacheTags(), $jsonapi_doc_object
      ->getCacheTags());
    $this
      ->assertArraySubset($expected_metadata
      ->getCacheContexts(), $jsonapi_doc_object
      ->getCacheContexts());
    $this
      ->assertSame($expected_metadata
      ->getCacheMaxAge(), $jsonapi_doc_object
      ->getCacheMaxAge());
  }

  /**
   * Provides test cases for asserting cacheable metadata behavior.
   */
  public function testCacheableMetadataProvider() {
    $cacheable_metadata = function ($metadata) {
      return CacheableMetadata::createFromRenderArray([
        '#cache' => $metadata,
      ]);
    };
    return [
      [
        floatval(\Drupal::VERSION) < 8.5 ? $cacheable_metadata([]) : $cacheable_metadata([
          'contexts' => [
            'languages:language_interface',
          ],
        ]),
        [
          'node--article' => 'body',
        ],
      ],
    ];
  }

  /**
   * Decorates a request with sparse fieldsets and includes.
   */
  protected function decorateRequest(Request $request, array $fields = NULL, array $includes = NULL) {
    $parameters = new ParameterBag();
    $parameters
      ->add($fields ? [
      'fields' => $fields,
    ] : []);
    $parameters
      ->add($includes ? [
      'include' => $includes,
    ] : []);
    $request->query = $parameters;
    return $request;
  }

  /**
   * Helper to load the normalizer.
   */
  protected function getNormalizer() {
    $normalizer_service = $this->container
      ->get('jsonapi_test_normalizers_kernel.jsonapi_document_toplevel');

    // Simulate what happens when this normalizer service is used via the
    // serializer service, as it is meant to be used.
    $normalizer_service
      ->setSerializer($this->container
      ->get('jsonapi.serializer_do_not_use_removal_imminent'));
    return $normalizer_service;
  }

  /**
   * Generates the prophecies for the mocked entity request.
   *
   * @param string $entity_type_id
   *   The ID of the entity type. Ex: node.
   * @param string $bundle
   *   The bundle. Ex: article.
   *
   * @return array
   *   A numeric array containing the request and the ResourceType.
   *
   * @throws \Exception
   */
  protected function generateProphecies($entity_type_id, $bundle) {
    $resource_type = $this->container
      ->get('jsonapi.resource_type.repository')
      ->get($entity_type_id, $bundle);
    return [
      new Request(),
      $resource_type,
    ];
  }

}

Classes