You are here

class EntityResourceTest in JSON:API 8

Same name and namespace in other branches
  1. 8.2 tests/src/Kernel/Controller/EntityResourceTest.php \Drupal\Tests\jsonapi\Kernel\Controller\EntityResourceTest

@coversDefaultClass \Drupal\jsonapi\Controller\EntityResource @group jsonapi @group legacy

@internal

Hierarchy

Expanded class hierarchy of EntityResourceTest

File

tests/src/Kernel/Controller/EntityResourceTest.php, line 37

Namespace

Drupal\Tests\jsonapi\Kernel\Controller
View source
class EntityResourceTest extends JsonapiKernelTestBase {

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'node',
    'field',
    'jsonapi',
    'serialization',
    'system',
    'user',
  ];

  /**
   * The user.
   *
   * @var \Drupal\user\Entity\User
   */
  protected $user;

  /**
   * The node.
   *
   * @var \Drupal\node\Entity\Node
   */
  protected $node;

  /**
   * The other node.
   *
   * @var \Drupal\node\Entity\Node
   */
  protected $node2;

  /**
   * An unpublished node.
   *
   * @var \Drupal\node\Entity\Node
   */
  protected $node3;

  /**
   * A fake request.
   *
   * @var \Symfony\Component\HttpFoundation\Request
   */
  protected $request;

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

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

    // Add the additional table schemas.
    $this
      ->installSchema('system', [
      'sequences',
    ]);
    $this
      ->installSchema('node', [
      'node_access',
    ]);
    $this
      ->installSchema('user', [
      'users_data',
    ]);
    NodeType::create([
      'type' => 'lorem',
    ])
      ->save();
    $type = NodeType::create([
      'type' => 'article',
    ]);
    $type
      ->save();
    $this->user = User::create([
      'name' => 'user1',
      'mail' => 'user@localhost',
      'status' => 1,
      'roles' => [
        'test_role_one',
        'test_role_two',
      ],
    ]);
    $this
      ->createEntityReferenceField('node', 'article', 'field_relationships', 'Relationship', 'node', 'default', [
      'target_bundles' => [
        'article',
      ],
    ], FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
    $this->user
      ->save();
    $this->node = Node::create([
      'title' => 'dummy_title',
      'type' => 'article',
      'uid' => $this->user
        ->id(),
    ]);
    $this->node
      ->save();
    $this->node2 = Node::create([
      'type' => 'article',
      'title' => 'Another test node',
      'uid' => $this->user
        ->id(),
    ]);
    $this->node2
      ->save();
    $this->node3 = Node::create([
      'type' => 'article',
      'title' => 'Unpublished test node',
      'uid' => $this->user
        ->id(),
      'status' => 0,
    ]);
    $this->node3
      ->save();
    $this->node4 = Node::create([
      'type' => 'article',
      'title' => 'Test node with related nodes',
      'uid' => $this->user
        ->id(),
      'field_relationships' => [
        [
          'target_id' => $this->node
            ->id(),
        ],
        [
          'target_id' => $this->node2
            ->id(),
        ],
        [
          'target_id' => $this->node3
            ->id(),
        ],
      ],
    ]);
    $this->node4
      ->save();

    // Give anonymous users permission to view user profiles, so that we can
    // verify the cache tags of cached versions of user profile pages.
    array_map(function ($role_id) {
      Role::create([
        'id' => $role_id,
        'permissions' => [
          'access user profiles',
          'access content',
        ],
      ])
        ->save();
    }, [
      RoleInterface::ANONYMOUS_ID,
      'test_role_one',
      'test_role_two',
    ]);
  }

  /**
   * @covers ::getIndividual
   */
  public function testGetIndividual() {
    $entity_resource = $this
      ->buildEntityResource('node', 'article');
    $response = $entity_resource
      ->getIndividual($this->node, new Request());
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertEquals(1, $response
      ->getResponseData()
      ->getData()
      ->id());
  }

  /**
   * @covers ::getIndividual
   */
  public function testGetIndividualDenied() {
    $role = Role::load(RoleInterface::ANONYMOUS_ID);
    $role
      ->revokePermission('access content');
    $role
      ->save();
    $entity_resource = $this
      ->buildEntityResource('node', 'article');
    $this
      ->setExpectedException(EntityAccessDeniedHttpException::class);
    $entity_resource
      ->getIndividual($this->node, new Request());
  }

  /**
   * @covers ::getCollection
   */
  public function testGetCollection() {
    $request = new Request([], [], [
      '_route_params' => [
        '_json_api_params' => [],
      ],
      '_json_api_params' => [],
    ]);

    // Get the response.
    $entity_resource = $this
      ->buildEntityResource('node', 'article');
    $response = $entity_resource
      ->getCollection($request);

    // Assertions.
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(EntityCollection::class, $response
      ->getResponseData()
      ->getData());
    $this
      ->assertEquals(1, $response
      ->getResponseData()
      ->getData()
      ->getIterator()
      ->current()
      ->id());
    $this
      ->assertEquals([
      'node:1',
      'node:2',
      'node:3',
      'node:4',
      'node_list',
    ], $response
      ->getCacheableMetadata()
      ->getCacheTags());
  }

  /**
   * @covers ::getCollection
   */
  public function testGetFilteredCollection() {
    $filter = new Filter(new EntityConditionGroup('AND', [
      new EntityCondition('type', 'article'),
    ]));
    $request = new Request([], [], [
      '_route_params' => [
        '_json_api_params' => [
          'filter' => $filter,
        ],
      ],
      '_json_api_params' => [
        'filter' => $filter,
      ],
    ]);
    $entity_resource = new EntityResource($this->container
      ->get('jsonapi.resource_type.repository')
      ->get('node_type', 'node_type'), $this->container
      ->get('entity_type.manager'), $this->container
      ->get('entity_field.manager'), $this->container
      ->get('plugin.manager.field.field_type'), $this->container
      ->get('jsonapi.link_manager'), $this->container
      ->get('jsonapi.resource_type.repository'), $this->container
      ->get('renderer'));

    // Get the response.
    $response = $entity_resource
      ->getCollection($request);

    // Assertions.
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(EntityCollection::class, $response
      ->getResponseData()
      ->getData());
    $this
      ->assertCount(1, $response
      ->getResponseData()
      ->getData());
    $this
      ->assertEquals([
      'config:node_type_list',
    ], $response
      ->getCacheableMetadata()
      ->getCacheTags());
  }

  /**
   * @covers ::getCollection
   */
  public function testGetSortedCollection() {
    $sort = new Sort([
      [
        'path' => 'type',
        'direction' => 'DESC',
      ],
    ]);
    $request = new Request([], [], [
      '_route_params' => [
        '_json_api_params' => [
          'sort' => $sort,
        ],
      ],
      '_json_api_params' => [
        'sort' => $sort,
      ],
    ]);
    $entity_resource = new EntityResource($this->container
      ->get('jsonapi.resource_type.repository')
      ->get('node_type', 'node_type'), $this->container
      ->get('entity_type.manager'), $this->container
      ->get('entity_field.manager'), $this->container
      ->get('plugin.manager.field.field_type'), $this->container
      ->get('jsonapi.link_manager'), $this->container
      ->get('jsonapi.resource_type.repository'), $this->container
      ->get('renderer'));

    // Get the response.
    $response = $entity_resource
      ->getCollection($request);

    // Assertions.
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(EntityCollection::class, $response
      ->getResponseData()
      ->getData());
    $this
      ->assertCount(2, $response
      ->getResponseData()
      ->getData());
    $this
      ->assertEquals($response
      ->getResponseData()
      ->getData()
      ->toArray()[0]
      ->id(), 'lorem');
    $this
      ->assertEquals([
      'config:node_type_list',
    ], $response
      ->getCacheableMetadata()
      ->getCacheTags());
  }

  /**
   * @covers ::getCollection
   */
  public function testGetPagedCollection() {
    $pager = new OffsetPage(1, 1);
    $request = new Request([], [], [
      '_route_params' => [
        '_json_api_params' => [
          'page' => $pager,
        ],
      ],
      '_json_api_params' => [
        'page' => $pager,
      ],
    ]);
    $entity_resource = new EntityResource($this->container
      ->get('jsonapi.resource_type.repository')
      ->get('node', 'article'), $this->container
      ->get('entity_type.manager'), $this->container
      ->get('entity_field.manager'), $this->container
      ->get('plugin.manager.field.field_type'), $this->container
      ->get('jsonapi.link_manager'), $this->container
      ->get('jsonapi.resource_type.repository'), $this->container
      ->get('renderer'));

    // Get the response.
    $response = $entity_resource
      ->getCollection($request);

    // Assertions.
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(EntityCollection::class, $response
      ->getResponseData()
      ->getData());
    $data = $response
      ->getResponseData()
      ->getData();
    $this
      ->assertCount(1, $data);
    $this
      ->assertEquals(2, $data
      ->toArray()[0]
      ->id());
    $this
      ->assertEquals([
      'node:2',
      'node_list',
    ], $response
      ->getCacheableMetadata()
      ->getCacheTags());
  }

  /**
   * @covers ::getCollection
   */
  public function testGetEmptyCollection() {
    $filter = new Filter(new EntityConditionGroup('AND', [
      new EntityCondition('uuid', 'invalid'),
    ]));
    $request = new Request([], [], [
      '_route_params' => [
        '_json_api_params' => [
          'filter' => $filter,
        ],
      ],
      '_json_api_params' => [
        'filter' => $filter,
      ],
    ]);

    // Get the response.
    $entity_resource = $this
      ->buildEntityResource('node', 'article');
    $response = $entity_resource
      ->getCollection($request);

    // Assertions.
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(EntityCollection::class, $response
      ->getResponseData()
      ->getData());
    $this
      ->assertEquals(0, $response
      ->getResponseData()
      ->getData()
      ->count());
    $this
      ->assertEquals([
      'node_list',
    ], $response
      ->getCacheableMetadata()
      ->getCacheTags());
  }

  /**
   * @covers ::getRelated
   */
  public function testGetRelated() {

    // to-one relationship.
    $entity_resource = $this
      ->buildEntityResource('node', 'article', [
      'uid' => [
        new ResourceType('user', 'user', NULL),
      ],
      'roles' => [
        new ResourceType('user_role', 'user_role', NULL),
      ],
      'field_relationships' => [
        new ResourceType('node', 'article', NULL),
      ],
    ]);
    $response = $entity_resource
      ->getRelated($this->node, 'uid', new Request());
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(User::class, $response
      ->getResponseData()
      ->getData());
    $this
      ->assertEquals(1, $response
      ->getResponseData()
      ->getData()
      ->id());
    $this
      ->assertEquals([
      'node:1',
      'user:1',
    ], $response
      ->getCacheableMetadata()
      ->getCacheTags());

    // to-many relationship.
    $response = $entity_resource
      ->getRelated($this->node4, 'field_relationships', new Request());
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(EntityCollection::class, $response
      ->getResponseData()
      ->getData());
    $this
      ->assertEquals([
      'node:1',
      'node:2',
      'node:3',
      'node:4',
    ], $response
      ->getCacheableMetadata()
      ->getCacheTags());
  }

  /**
   * @covers ::getRelationship
   */
  public function testGetRelationship() {

    // to-one relationship.
    $entity_resource = $this
      ->buildEntityResource('node', 'article', [
      'uid' => [
        new ResourceType('user', 'user', NULL),
      ],
    ]);
    $response = $entity_resource
      ->getRelationship($this->node, 'uid', new Request());
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(EntityReferenceFieldItemListInterface::class, $response
      ->getResponseData()
      ->getData());
    $this
      ->assertEquals(1, $response
      ->getResponseData()
      ->getData()
      ->getEntity()
      ->id());
    $this
      ->assertEquals('node', $response
      ->getResponseData()
      ->getData()
      ->getEntity()
      ->getEntityTypeId());
  }

  /**
   * @covers ::createIndividual
   */
  public function testCreateIndividual() {
    $node = Node::create([
      'type' => 'article',
      'title' => 'Lorem ipsum',
    ]);
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('create article content')
      ->save();
    $entity_resource = $this
      ->buildEntityResource('node', 'article');
    $response = $entity_resource
      ->createIndividual($node, new Request());

    // As a side effect, the node will also be saved.
    $this
      ->assertNotEmpty($node
      ->id());
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertEquals(5, $response
      ->getResponseData()
      ->getData()
      ->id());
    $this
      ->assertEquals(201, $response
      ->getStatusCode());
  }

  /**
   * @covers ::createIndividual
   */
  public function testCreateIndividualWithMissingRequiredData() {
    $node = Node::create([
      'type' => 'article',
    ]);
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('create article content')
      ->save();
    $this
      ->setExpectedException(HttpException::class, 'Unprocessable Entity: validation failed.');
    $entity_resource = $this
      ->buildEntityResource('node', 'article');
    $entity_resource
      ->createIndividual($node, new Request());
  }

  /**
   * @covers ::createIndividual
   */
  public function testCreateIndividualConfig() {
    $node_type = NodeType::create([
      'type' => 'test',
      'name' => 'Test Type',
      'description' => 'Lorem ipsum',
    ]);
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('administer content types')
      ->save();
    $entity_resource = $this
      ->buildEntityResource('node', 'article');
    $response = $entity_resource
      ->createIndividual($node_type, new Request());

    // As a side effect, the node type will also be saved.
    $this
      ->assertNotEmpty($node_type
      ->id());
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertEquals('test', $response
      ->getResponseData()
      ->getData()
      ->id());
    $this
      ->assertEquals(201, $response
      ->getStatusCode());
  }

  /**
   * @covers ::createIndividual
   */
  public function testCreateIndividualDuplicateError() {
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('create article content')
      ->save();
    $node = Node::create([
      'type' => 'article',
      'title' => 'Lorem ipsum',
    ]);
    $node
      ->save();
    $node
      ->enforceIsNew();
    $this
      ->setExpectedException(ConflictHttpException::class, 'Conflict: Entity already exists.');
    $entity_resource = $this
      ->buildEntityResource('node', 'article');
    $entity_resource
      ->createIndividual($node, new Request());
  }

  /**
   * @covers ::patchIndividual
   * @dataProvider patchIndividualProvider
   */
  public function testPatchIndividual($values) {
    $parsed_node = Node::create($values);
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('edit any article content')
      ->save();
    $payload = Json::encode([
      'data' => [
        'type' => 'article',
        'id' => $this->node
          ->uuid(),
        'attributes' => [
          'title' => '',
          'field_relationships' => '',
        ],
      ],
    ]);
    $request = new Request([], [], [], [], [], [], $payload);

    // Create a new EntityResource that uses uuid.
    $entity_resource = $this
      ->buildEntityResource('node', 'article');
    $response = $entity_resource
      ->patchIndividual($this->node, $parsed_node, $request);

    // As a side effect, the node will also be saved.
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $updated_node = $response
      ->getResponseData()
      ->getData();
    $this
      ->assertInstanceOf(Node::class, $updated_node);
    $this
      ->assertSame($values['title'], $this->node
      ->getTitle());
    $this
      ->assertSame($values['field_relationships'], $this->node
      ->get('field_relationships')
      ->getValue());
    $this
      ->assertEquals(200, $response
      ->getStatusCode());
  }

  /**
   * Provides data for the testPatchIndividual.
   *
   * @return array
   *   The input data for the test function.
   */
  public function patchIndividualProvider() {
    return [
      [
        [
          'type' => 'article',
          'title' => 'PATCHED',
          'field_relationships' => [
            [
              'target_id' => 1,
            ],
          ],
        ],
      ],
    ];
  }

  /**
   * @covers ::patchIndividual
   * @dataProvider patchIndividualConfigProvider
   */
  public function testPatchIndividualConfig($values) {

    // List of fields to be ignored.
    $ignored_fields = [
      'uuid',
      'entityTypeId',
      'type',
    ];
    $node_type = NodeType::create([
      'type' => 'test',
      'name' => 'Test Type',
      'description' => '',
    ]);
    $node_type
      ->save();
    $parsed_node_type = NodeType::create($values);
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('administer content types')
      ->save();
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('edit any article content')
      ->save();
    $payload = Json::encode([
      'data' => [
        'type' => 'node_type',
        'id' => $node_type
          ->uuid(),
        'attributes' => $values,
      ],
    ]);
    $request = new Request([], [], [], [], [], [], $payload);
    $entity_resource = $this
      ->buildEntityResource('node', 'article');
    $response = $entity_resource
      ->patchIndividual($node_type, $parsed_node_type, $request);

    // As a side effect, the node will also be saved.
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $updated_node_type = $response
      ->getResponseData()
      ->getData();
    $this
      ->assertInstanceOf(NodeType::class, $updated_node_type);

    // If the field is ignored then we should not see a difference.
    foreach ($values as $field_name => $value) {
      in_array($field_name, $ignored_fields) ? $this
        ->assertNotSame($value, $node_type
        ->get($field_name)) : $this
        ->assertSame($value, $node_type
        ->get($field_name));
    }
    $this
      ->assertEquals(200, $response
      ->getStatusCode());
  }

  /**
   * Provides data for the testPatchIndividualConfig.
   *
   * @return array
   *   The input data for the test function.
   */
  public function patchIndividualConfigProvider() {
    return [
      [
        [
          'description' => 'PATCHED',
          'status' => FALSE,
        ],
      ],
      [
        [],
      ],
    ];
  }

  /**
   * @covers ::patchIndividual
   * @dataProvider patchIndividualConfigFailedProvider
   */
  public function testPatchIndividualFailedConfig($values) {
    $this
      ->setExpectedException(ConfigException::class);
    $this
      ->testPatchIndividualConfig($values);
  }

  /**
   * Provides data for the testPatchIndividualFailedConfig.
   *
   * @return array
   *   The input data for the test function.
   */
  public function patchIndividualConfigFailedProvider() {
    return [
      [
        [
          'uuid' => 'PATCHED',
        ],
      ],
      [
        [
          'type' => 'article',
          'status' => FALSE,
        ],
      ],
    ];
  }

  /**
   * @covers ::deleteIndividual
   */
  public function testDeleteIndividual() {
    $node = Node::create([
      'type' => 'article',
      'title' => 'Lorem ipsum',
    ]);
    $nid = $node
      ->id();
    $node
      ->save();
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('delete own article content')
      ->save();
    $entity_resource = $this
      ->buildEntityResource('node', 'article');
    $response = $entity_resource
      ->deleteIndividual($node, new Request());

    // As a side effect, the node will also be deleted.
    $count = $this->container
      ->get('entity_type.manager')
      ->getStorage('node')
      ->getQuery()
      ->condition('nid', $nid)
      ->count()
      ->execute();
    $this
      ->assertEquals(0, $count);
    $this
      ->assertNull($response
      ->getResponseData());
    $this
      ->assertEquals(204, $response
      ->getStatusCode());
  }

  /**
   * @covers ::deleteIndividual
   */
  public function testDeleteIndividualConfig() {
    $node_type = NodeType::create([
      'type' => 'test',
      'name' => 'Test Type',
      'description' => 'Lorem ipsum',
    ]);
    $id = $node_type
      ->id();
    $node_type
      ->save();
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('administer content types')
      ->save();
    $entity_resource = $this
      ->buildEntityResource('node', 'article');
    $response = $entity_resource
      ->deleteIndividual($node_type, new Request());

    // As a side effect, the node will also be deleted.
    $count = $this->container
      ->get('entity_type.manager')
      ->getStorage('node_type')
      ->getQuery()
      ->condition('type', $id)
      ->count()
      ->execute();
    $this
      ->assertEquals(0, $count);
    $this
      ->assertNull($response
      ->getResponseData());
    $this
      ->assertEquals(204, $response
      ->getStatusCode());
  }

  /**
   * @covers ::createRelationship
   */
  public function testCreateRelationship() {
    $parsed_field_list = $this->container
      ->get('plugin.manager.field.field_type')
      ->createFieldItemList($this->node, 'field_relationships', [
      [
        'target_id' => $this->node
          ->id(),
      ],
    ]);
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('edit any article content')
      ->save();
    $entity_resource = $this
      ->buildEntityResource('node', 'article', [
      'field_relationships' => [
        new ResourceType('node', 'article', NULL),
      ],
    ]);
    $response = $entity_resource
      ->createRelationship($this->node, 'field_relationships', $parsed_field_list, new Request());

    // As a side effect, the node will also be saved.
    $this
      ->assertNotEmpty($this->node
      ->id());
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $field_list = $response
      ->getResponseData()
      ->getData();
    $this
      ->assertInstanceOf(EntityReferenceFieldItemListInterface::class, $field_list);
    $this
      ->assertSame('field_relationships', $field_list
      ->getName());
    $this
      ->assertEquals([
      [
        'target_id' => 1,
      ],
    ], $field_list
      ->getValue());
    $this
      ->assertEquals(204, $response
      ->getStatusCode());
  }

  /**
   * @covers ::patchRelationship
   * @dataProvider patchRelationshipProvider
   */
  public function testPatchRelationship($relationships) {
    $this->node->field_relationships
      ->appendItem([
      'target_id' => $this->node
        ->id(),
    ]);
    $this->node
      ->save();
    $parsed_field_list = $this->container
      ->get('plugin.manager.field.field_type')
      ->createFieldItemList($this->node, 'field_relationships', $relationships);
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('edit any article content')
      ->save();
    $entity_resource = $this
      ->buildEntityResource('node', 'article', [
      'field_relationships' => [
        new ResourceType('node', 'article', NULL),
      ],
    ]);
    $response = $entity_resource
      ->patchRelationship($this->node, 'field_relationships', $parsed_field_list, new Request());

    // As a side effect, the node will also be saved.
    $this
      ->assertNotEmpty($this->node
      ->id());
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $field_list = $response
      ->getResponseData()
      ->getData();
    $this
      ->assertInstanceOf(EntityReferenceFieldItemListInterface::class, $field_list);
    $this
      ->assertSame('field_relationships', $field_list
      ->getName());
    $this
      ->assertEquals($relationships, $field_list
      ->getValue());
    $this
      ->assertEquals(204, $response
      ->getStatusCode());
  }

  /**
   * Provides data for the testPatchRelationship.
   *
   * @return array
   *   The input data for the test function.
   */
  public function patchRelationshipProvider() {
    return [
      // Replace relationships.
      [
        [
          [
            'target_id' => 2,
          ],
          [
            'target_id' => 1,
          ],
        ],
      ],
      // Remove relationships.
      [
        [],
      ],
    ];
  }

  /**
   * @covers ::deleteRelationship
   * @dataProvider deleteRelationshipProvider
   */
  public function testDeleteRelationship($deleted_rels, $kept_rels) {
    $this->node->field_relationships
      ->appendItem([
      'target_id' => $this->node
        ->id(),
    ]);
    $this->node->field_relationships
      ->appendItem([
      'target_id' => $this->node2
        ->id(),
    ]);
    $this->node
      ->save();
    $parsed_field_list = $this->container
      ->get('plugin.manager.field.field_type')
      ->createFieldItemList($this->node, 'field_relationships', $deleted_rels);
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('edit any article content')
      ->save();
    $entity_resource = $this
      ->buildEntityResource('node', 'article', [
      'field_relationships' => [
        new ResourceType('node', 'article', NULL),
      ],
    ]);
    $response = $entity_resource
      ->deleteRelationship($this->node, 'field_relationships', $parsed_field_list, new Request());

    // As a side effect, the node will also be saved.
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $field_list = $response
      ->getResponseData()
      ->getData();
    $this
      ->assertInstanceOf(EntityReferenceFieldItemListInterface::class, $field_list);
    $this
      ->assertSame('field_relationships', $field_list
      ->getName());
    $this
      ->assertEquals($kept_rels, $field_list
      ->getValue());
    $this
      ->assertEquals(204, $response
      ->getStatusCode());
  }

  /**
   * @covers ::getRelated
   */
  public function testGetRelatedInternal() {
    $internal_resource_type = new ResourceType('node', 'article', NULL, TRUE);
    $resource = $this
      ->buildEntityResource('node', 'article', [
      'field_relationships' => [
        $internal_resource_type,
      ],
    ]);
    $this
      ->setExpectedException(NotFoundHttpException::class);
    $resource
      ->getRelationship($this->node, 'field_relationships', new Request());
  }

  /**
   * @covers ::getRelationship
   */
  public function testGetRelationshipInternal() {
    $internal_resource_type = new ResourceType('node', 'article', NULL, TRUE);
    $resource = $this
      ->buildEntityResource('node', 'article', [
      'field_relationships' => [
        $internal_resource_type,
      ],
    ]);
    $this
      ->setExpectedException(NotFoundHttpException::class);
    $resource
      ->getRelationship($this->node, 'field_relationships', new Request());
  }

  /**
   * @covers ::createRelationship
   */
  public function testCreateRelationshipInternal() {
    $internal_resource_type = new ResourceType('node', 'article', NULL, TRUE);
    $resource = $this
      ->buildEntityResource('node', 'article', [
      'field_relationships' => [
        $internal_resource_type,
      ],
    ]);
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('edit any article content')
      ->save();
    $field_type_manager = $this->container
      ->get('plugin.manager.field.field_type');
    $list = $field_type_manager
      ->createFieldItemList($this->node, 'field_relationships');
    $this
      ->setExpectedException(NotFoundHttpException::class);
    $resource
      ->createRelationship($this->node, 'field_relationships', $list, new Request());
  }

  /**
   * @covers ::patchRelationship
   */
  public function testPatchRelationshipInternal() {
    $internal_resource_type = new ResourceType('node', 'article', NULL, TRUE);
    $resource = $this
      ->buildEntityResource('node', 'article', [
      'field_relationships' => [
        $internal_resource_type,
      ],
    ]);
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('edit any article content')
      ->save();
    $field_type_manager = $this->container
      ->get('plugin.manager.field.field_type');
    $list = $field_type_manager
      ->createFieldItemList($this->node, 'field_relationships');
    $this
      ->setExpectedException(NotFoundHttpException::class);
    $resource
      ->patchRelationship($this->node, 'field_relationships', $list, new Request());
  }

  /**
   * @covers ::deleteRelationship
   */
  public function testDeleteRelationshipInternal() {
    $internal_resource_type = new ResourceType('node', 'article', NULL, TRUE);
    $resource = $this
      ->buildEntityResource('node', 'article', [
      'field_relationships' => [
        $internal_resource_type,
      ],
    ]);
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('edit any article content')
      ->save();
    $field_type_manager = $this->container
      ->get('plugin.manager.field.field_type');
    $list = $field_type_manager
      ->createFieldItemList($this->node, 'field_relationships');
    $this
      ->setExpectedException(NotFoundHttpException::class);
    $resource
      ->deleteRelationship($this->node, 'field_relationships', $list, new Request());
  }

  /**
   * Provides data for the testDeleteRelationship.
   *
   * @return array
   *   The input data for the test function.
   */
  public function deleteRelationshipProvider() {
    return [
      // Remove one relationship.
      [
        [
          [
            'target_id' => 1,
          ],
        ],
        [
          [
            'target_id' => 2,
          ],
        ],
      ],
      // Remove all relationships.
      [
        [
          [
            'target_id' => 2,
          ],
          [
            'target_id' => 1,
          ],
        ],
        [],
      ],
      // Remove no relationship.
      [
        [],
        [
          [
            'target_id' => 1,
          ],
          [
            'target_id' => 2,
          ],
        ],
      ],
    ];
  }

  /**
   * Instantiates a test EntityResource.
   *
   * @param string $entity_type_id
   *   The entity type ID.
   * @param string $bundle
   *   The bundle.
   * @param \Drupal\jsonapi\ResourceType\ResourceType[] $relatable_resource_types
   *   An array of relatable resource types, keyed by field.
   * @param bool $internal
   *   Whether the primary resource type is internal.
   *
   * @return \Drupal\jsonapi\Controller\EntityResource
   *   The resource.
   */
  protected function buildEntityResource($entity_type_id, $bundle, array $relatable_resource_types = [], $internal = FALSE) {

    // Get the entity resource.
    $resource_type = new ResourceType($entity_type_id, $bundle, NULL, $internal);
    $resource_type
      ->setRelatableResourceTypes($relatable_resource_types);
    return new EntityResource($resource_type, $this->container
      ->get('entity_type.manager'), $this->container
      ->get('entity_field.manager'), $this->container
      ->get('plugin.manager.field.field_type'), $this->container
      ->get('jsonapi.link_manager'), $this->container
      ->get('jsonapi.resource_type.repository'), $this->container
      ->get('renderer'));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AssertContentTrait::$content protected property The current raw content.
AssertContentTrait::$drupalSettings protected property The drupalSettings value from the current raw $content.
AssertContentTrait::$elements protected property The XML structure parsed from the current raw $content. 1
AssertContentTrait::$plainTextContent protected property The plain-text content of raw $content (text nodes).
AssertContentTrait::assertEscaped protected function Passes if the raw text IS found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertField protected function Asserts that a field exists with the given name or ID.
AssertContentTrait::assertFieldById protected function Asserts that a field exists with the given ID and value.
AssertContentTrait::assertFieldByName protected function Asserts that a field exists with the given name and value.
AssertContentTrait::assertFieldByXPath protected function Asserts that a field exists in the current page by the given XPath.
AssertContentTrait::assertFieldChecked protected function Asserts that a checkbox field in the current page is checked.
AssertContentTrait::assertFieldsByValue protected function Asserts that a field exists in the current page with a given Xpath result.
AssertContentTrait::assertLink protected function Passes if a link with the specified label is found.
AssertContentTrait::assertLinkByHref protected function Passes if a link containing a given href (part) is found.
AssertContentTrait::assertNoDuplicateIds protected function Asserts that each HTML ID is used for just a single element.
AssertContentTrait::assertNoEscaped protected function Passes if the raw text IS NOT found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertNoField protected function Asserts that a field does not exist with the given name or ID.
AssertContentTrait::assertNoFieldById protected function Asserts that a field does not exist with the given ID and value.
AssertContentTrait::assertNoFieldByName protected function Asserts that a field does not exist with the given name and value.
AssertContentTrait::assertNoFieldByXPath protected function Asserts that a field does not exist or its value does not match, by XPath.
AssertContentTrait::assertNoFieldChecked protected function Asserts that a checkbox field in the current page is not checked.
AssertContentTrait::assertNoLink protected function Passes if a link with the specified label is not found.
AssertContentTrait::assertNoLinkByHref protected function Passes if a link containing a given href (part) is not found.
AssertContentTrait::assertNoLinkByHrefInMainRegion protected function Passes if a link containing a given href is not found in the main region.
AssertContentTrait::assertNoOption protected function Asserts that a select option in the current page does not exist.
AssertContentTrait::assertNoOptionSelected protected function Asserts that a select option in the current page is not checked.
AssertContentTrait::assertNoPattern protected function Triggers a pass if the perl regex pattern is not found in raw content.
AssertContentTrait::assertNoRaw protected function Passes if the raw text is NOT found on the loaded page, fail otherwise.
AssertContentTrait::assertNoText protected function Passes if the page (with HTML stripped) does not contains the text.
AssertContentTrait::assertNoTitle protected function Pass if the page title is not the given string.
AssertContentTrait::assertNoUniqueText protected function Passes if the text is found MORE THAN ONCE on the text version of the page.
AssertContentTrait::assertOption protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertOptionByText protected function Asserts that a select option with the visible text exists.
AssertContentTrait::assertOptionSelected protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionSelectedWithDrupalSelector protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionWithDrupalSelector protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertPattern protected function Triggers a pass if the Perl regex pattern is found in the raw content.
AssertContentTrait::assertRaw protected function Passes if the raw text IS found on the loaded page, fail otherwise.
AssertContentTrait::assertText protected function Passes if the page (with HTML stripped) contains the text.
AssertContentTrait::assertTextHelper protected function Helper for assertText and assertNoText.
AssertContentTrait::assertTextPattern protected function Asserts that a Perl regex pattern is found in the plain-text content.
AssertContentTrait::assertThemeOutput protected function Asserts themed output.
AssertContentTrait::assertTitle protected function Pass if the page title is the given string.
AssertContentTrait::assertUniqueText protected function Passes if the text is found ONLY ONCE on the text version of the page.
AssertContentTrait::assertUniqueTextHelper protected function Helper for assertUniqueText and assertNoUniqueText.
AssertContentTrait::buildXPathQuery protected function Builds an XPath query.
AssertContentTrait::constructFieldXpath protected function Helper: Constructs an XPath for the given set of attributes and value.
AssertContentTrait::cssSelect protected function Searches elements using a CSS selector in the raw content.
AssertContentTrait::getAllOptions protected function Get all option elements, including nested options, in a select.
AssertContentTrait::getDrupalSettings protected function Gets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::getRawContent protected function Gets the current raw content.
AssertContentTrait::getSelectedItem protected function Get the selected value from a select field.
AssertContentTrait::getTextContent protected function Retrieves the plain-text content from the current raw content.
AssertContentTrait::getUrl protected function Get the current URL from the cURL handler. 1
AssertContentTrait::parse protected function Parse content returned from curlExec using DOM and SimpleXML.
AssertContentTrait::removeWhiteSpace protected function Removes all white-space between HTML tags from the raw content.
AssertContentTrait::setDrupalSettings protected function Sets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::setRawContent protected function Sets the raw content (e.g. HTML).
AssertContentTrait::xpath protected function Performs an xpath search on the contents of the internal browser.
AssertHelperTrait::castSafeStrings protected static function Casts MarkupInterface objects into strings.
AssertLegacyTrait::assert protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead.
AssertLegacyTrait::assertEqual protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead.
AssertLegacyTrait::assertIdentical protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertSame() instead.
AssertLegacyTrait::assertIdenticalObject protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead.
AssertLegacyTrait::assertNotEqual protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotEquals() instead.
AssertLegacyTrait::assertNotIdentical protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotSame() instead.
AssertLegacyTrait::pass protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead.
AssertLegacyTrait::verbose protected function
ConfigTestTrait::configImporter protected function Returns a ConfigImporter object to import test configuration.
ConfigTestTrait::copyConfig protected function Copies configuration objects from source storage to target storage.
EntityResourceTest::$modules public static property Modules to enable. Overrides JsonapiKernelTestBase::$modules
EntityResourceTest::$node protected property The node.
EntityResourceTest::$node2 protected property The other node.
EntityResourceTest::$node3 protected property An unpublished node.
EntityResourceTest::$request protected property A fake request.
EntityResourceTest::$user protected property The user.
EntityResourceTest::buildEntityResource protected function Instantiates a test EntityResource.
EntityResourceTest::deleteRelationshipProvider public function Provides data for the testDeleteRelationship.
EntityResourceTest::patchIndividualConfigFailedProvider public function Provides data for the testPatchIndividualFailedConfig.
EntityResourceTest::patchIndividualConfigProvider public function Provides data for the testPatchIndividualConfig.
EntityResourceTest::patchIndividualProvider public function Provides data for the testPatchIndividual.
EntityResourceTest::patchRelationshipProvider public function Provides data for the testPatchRelationship.
EntityResourceTest::setUp protected function Overrides KernelTestBase::setUp
EntityResourceTest::testCreateIndividual public function @covers ::createIndividual
EntityResourceTest::testCreateIndividualConfig public function @covers ::createIndividual
EntityResourceTest::testCreateIndividualDuplicateError public function @covers ::createIndividual
EntityResourceTest::testCreateIndividualWithMissingRequiredData public function @covers ::createIndividual
EntityResourceTest::testCreateRelationship public function @covers ::createRelationship
EntityResourceTest::testCreateRelationshipInternal public function @covers ::createRelationship
EntityResourceTest::testDeleteIndividual public function @covers ::deleteIndividual
EntityResourceTest::testDeleteIndividualConfig public function @covers ::deleteIndividual
EntityResourceTest::testDeleteRelationship public function @covers ::deleteRelationship @dataProvider deleteRelationshipProvider
EntityResourceTest::testDeleteRelationshipInternal public function @covers ::deleteRelationship
EntityResourceTest::testGetCollection public function @covers ::getCollection
EntityResourceTest::testGetEmptyCollection public function @covers ::getCollection
EntityResourceTest::testGetFilteredCollection public function @covers ::getCollection
EntityResourceTest::testGetIndividual public function @covers ::getIndividual
EntityResourceTest::testGetIndividualDenied public function @covers ::getIndividual
EntityResourceTest::testGetPagedCollection public function @covers ::getCollection
EntityResourceTest::testGetRelated public function @covers ::getRelated
EntityResourceTest::testGetRelatedInternal public function @covers ::getRelated
EntityResourceTest::testGetRelationship public function @covers ::getRelationship
EntityResourceTest::testGetRelationshipInternal public function @covers ::getRelationship
EntityResourceTest::testGetSortedCollection public function @covers ::getCollection
EntityResourceTest::testPatchIndividual public function @covers ::patchIndividual @dataProvider patchIndividualProvider
EntityResourceTest::testPatchIndividualConfig public function @covers ::patchIndividual @dataProvider patchIndividualConfigProvider
EntityResourceTest::testPatchIndividualFailedConfig public function @covers ::patchIndividual @dataProvider patchIndividualConfigFailedProvider
EntityResourceTest::testPatchRelationship public function @covers ::patchRelationship @dataProvider patchRelationshipProvider
EntityResourceTest::testPatchRelationshipInternal public function @covers ::patchRelationship
JsonapiKernelTestBase::createEntityReferenceField protected function Creates a field of an entity reference field storage on the bundle.
JsonapiKernelTestBase::createTextField protected function Creates a field of an entity reference field storage on the bundle.
KernelTestBase::$backupGlobals protected property Back up and restore any global variables that may be changed by tests.
KernelTestBase::$backupStaticAttributes protected property Back up and restore static class properties that may be changed by tests.
KernelTestBase::$backupStaticAttributesBlacklist protected property Contains a few static class properties for performance.
KernelTestBase::$classLoader protected property
KernelTestBase::$configImporter protected property @todo Move into Config test base class. 7
KernelTestBase::$configSchemaCheckerExclusions protected static property An array of config object names that are excluded from schema checking.
KernelTestBase::$container protected property
KernelTestBase::$databasePrefix protected property
KernelTestBase::$preserveGlobalState protected property Do not forward any global state from the parent process to the processes that run the actual tests.
KernelTestBase::$root protected property The app root.
KernelTestBase::$runTestInSeparateProcess protected property Kernel tests are run in separate processes because they allow autoloading of code from extensions. Running the test in a separate process isolates this behavior from other tests. Subclasses should not override this property.
KernelTestBase::$siteDirectory protected property
KernelTestBase::$strictConfigSchema protected property Set to TRUE to strict check all configuration saved. 6
KernelTestBase::$vfsRoot protected property The virtual filesystem root directory.
KernelTestBase::assertPostConditions protected function 1
KernelTestBase::bootEnvironment protected function Bootstraps a basic test environment.
KernelTestBase::bootKernel private function Bootstraps a kernel for a test.
KernelTestBase::config protected function Configuration accessor for tests. Returns non-overridden configuration.
KernelTestBase::disableModules protected function Disables modules for this test.
KernelTestBase::enableModules protected function Enables modules for this test.
KernelTestBase::getConfigSchemaExclusions protected function Gets the config schema exclusions for this test.
KernelTestBase::getDatabaseConnectionInfo protected function Returns the Database connection info to be used for this test. 1
KernelTestBase::getDatabasePrefix public function
KernelTestBase::getExtensionsForModules private function Returns Extension objects for $modules to enable.
KernelTestBase::getModulesToEnable private static function Returns the modules to enable for this test.
KernelTestBase::initFileCache protected function Initializes the FileCache component.
KernelTestBase::installConfig protected function Installs default configuration for a given list of modules.
KernelTestBase::installEntitySchema protected function Installs the storage schema for a specific entity type.
KernelTestBase::installSchema protected function Installs database tables from a module schema definition.
KernelTestBase::isTestInIsolation Deprecated protected function Returns whether the current test method is running in a separate process.
KernelTestBase::prepareTemplate protected function
KernelTestBase::register public function Registers test-specific services. Overrides ServiceProviderInterface::register 26
KernelTestBase::render protected function Renders a render array. 1
KernelTestBase::setInstallProfile protected function Sets the install profile and rebuilds the container to update it.
KernelTestBase::setSetting protected function Sets an in-memory Settings variable.
KernelTestBase::setUpBeforeClass public static function 1
KernelTestBase::setUpFilesystem protected function Sets up the filesystem, so things like the file directory. 2
KernelTestBase::stop protected function Stops test execution.
KernelTestBase::tearDown protected function 6
KernelTestBase::tearDownCloseDatabaseConnection public function @after
KernelTestBase::vfsDump protected function Dumps the current state of the virtual filesystem to STDOUT.
KernelTestBase::__get Deprecated public function BC: Automatically resolve former KernelTestBase class properties.
KernelTestBase::__sleep public function Prevents serializing any properties.
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
RandomGeneratorTrait::$randomGenerator protected property The random generator.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers. 1
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate public function Callback for random string validation.
StorageCopyTrait::replaceStorageContents protected static function Copy the configuration from one storage to another and remove stale items.
TestRequirementsTrait::checkModuleRequirements private function Checks missing module requirements.
TestRequirementsTrait::checkRequirements protected function Check module requirements for the Drupal use case. 1
TestRequirementsTrait::getDrupalRoot protected static function Returns the Drupal root directory.