You are here

class EntityResourceTest in JSON:API 8.2

Same name and namespace in other branches
  1. 8 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 34

Namespace

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

  /**
   * Static UUIDs to use in testing.
   *
   * @var array
   */
  protected static $nodeUuid = [
    1 => '83bc47ad-2c58-45e3-9136-abcdef111111',
    2 => '83bc47ad-2c58-45e3-9136-abcdef222222',
    3 => '83bc47ad-2c58-45e3-9136-abcdef333333',
    4 => '83bc47ad-2c58-45e3-9136-abcdef444444',
  ];

  /**
   * {@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;

  /**
   * The EntityResource under test.
   *
   * @var \Drupal\jsonapi\Controller\EntityResource
   */
  protected $entityResource;

  /**
   * {@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(),
      'uuid' => static::$nodeUuid[1],
    ]);
    $this->node
      ->save();
    $this->node2 = Node::create([
      'type' => 'article',
      'title' => 'Another test node',
      'uid' => $this->user
        ->id(),
      'uuid' => static::$nodeUuid[2],
    ]);
    $this->node2
      ->save();
    $this->node3 = Node::create([
      'type' => 'article',
      'title' => 'Unpublished test node',
      'uid' => $this->user
        ->id(),
      'status' => 0,
      'uuid' => static::$nodeUuid[3],
    ]);
    $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(),
        ],
      ],
      'uuid' => static::$nodeUuid[4],
    ]);
    $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',
    ]);
    $this->entityResource = $this
      ->createEntityResource();
  }

  /**
   * Creates an instance of the subject under test.
   *
   * @return \Drupal\jsonapi\Controller\EntityResource
   *   An EntityResource instance.
   */
  protected function createEntityResource() {
    return new EntityResource($this->container
      ->get('entity_type.manager'), $this->container
      ->get('entity_field.manager'), $this->container
      ->get('jsonapi.resource_type.repository'), $this->container
      ->get('renderer'), $this->container
      ->get('entity.repository'), $this->container
      ->get('jsonapi.include_resolver'), $this->container
      ->get('jsonapi.entity_access_checker'), $this->container
      ->get('jsonapi.field_resolver'), $this->container
      ->get('jsonapi.serializer'), $this->container
      ->get('datetime.time'), $this->container
      ->get('current_user'));
  }

  /**
   * @covers ::getIndividual
   */
  public function testGetIndividual() {
    $response = $this->entityResource
      ->getIndividual($this->node, Request::create('/jsonapi/node/article'));
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $resource_object = $response
      ->getResponseData()
      ->getData()
      ->getIterator()
      ->offsetGet(0);
    $this
      ->assertEquals($this->node
      ->uuid(), $resource_object
      ->getId());
  }

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

  /**
   * @covers ::getCollection
   */
  public function testGetCollection() {
    $request = Request::create('/jsonapi/node/article');
    $request->query = new ParameterBag([
      'sort' => 'nid',
    ]);

    // Get the response.
    $resource_type = new ResourceType('node', 'article', NULL);
    $response = $this->entityResource
      ->getCollection($resource_type, $request);

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

  /**
   * @covers ::getCollection
   */
  public function testGetFilteredCollection() {
    $request = Request::create('/jsonapi/node/article');
    $request->query = new ParameterBag([
      'filter' => [
        'type' => 'article',
      ],
    ]);
    $entity_resource = $this
      ->createEntityResource();

    // Get the response.
    $resource_type = $this->container
      ->get('jsonapi.resource_type.repository')
      ->get('node_type', 'node_type');
    $response = $entity_resource
      ->getCollection($resource_type, $request);

    // Assertions.
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(Data::class, $response
      ->getResponseData()
      ->getData());
    $this
      ->assertCount(1, $response
      ->getResponseData()
      ->getData());
    $expected_cache_tags = [
      'config:node.type.article',
      'config:node_type_list',
    ];
    $this
      ->assertSame($expected_cache_tags, $response
      ->getCacheableMetadata()
      ->getCacheTags());
  }

  /**
   * @covers ::getCollection
   */
  public function testGetSortedCollection() {
    $request = Request::create('/jsonapi/node/article');
    $request->query = new ParameterBag([
      'sort' => '-type',
    ]);
    $entity_resource = $this
      ->createEntityResource();

    // Get the response.
    $resource_type = $this->container
      ->get('jsonapi.resource_type.repository')
      ->get('node_type', 'node_type');
    $response = $entity_resource
      ->getCollection($resource_type, $request);

    // Assertions.
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(Data::class, $response
      ->getResponseData()
      ->getData());
    $this
      ->assertCount(2, $response
      ->getResponseData()
      ->getData());

    // `drupal_internal__type` is the alias for a node_type entity's ID field.
    $this
      ->assertEquals($response
      ->getResponseData()
      ->getData()
      ->toArray()[0]
      ->getField('drupal_internal__type'), 'lorem');
    $expected_cache_tags = [
      'config:node.type.article',
      'config:node.type.lorem',
      'config:node_type_list',
    ];
    $this
      ->assertSame($expected_cache_tags, $response
      ->getCacheableMetadata()
      ->getCacheTags());
  }

  /**
   * @covers ::getCollection
   */
  public function testGetPagedCollection() {
    $request = Request::create('/jsonapi/node/article');
    $request->query = new ParameterBag([
      'sort' => 'nid',
      'page' => [
        'offset' => 1,
        'limit' => 1,
      ],
    ]);
    $entity_resource = $this
      ->createEntityResource();

    // Get the response.
    $resource_type = $this->container
      ->get('jsonapi.resource_type.repository')
      ->get('node', 'article');
    $response = $entity_resource
      ->getCollection($resource_type, $request);

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

  /**
   * @covers ::getCollection
   */
  public function testGetEmptyCollection() {
    $request = Request::create('/jsonapi/node/article');
    $request->query = new ParameterBag([
      'filter' => [
        'id' => 'invalid',
      ],
    ]);

    // Get the response.
    $resource_type = new ResourceType('node', 'article', NULL);
    $response = $this->entityResource
      ->getCollection($resource_type, $request);

    // Assertions.
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(Data::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.
    $resource_type = new ResourceType('node', 'article', NULL);
    $resource_type
      ->setRelatableResourceTypes([
      'uid' => [
        new ResourceType('user', 'user', NULL),
      ],
      'roles' => [
        new ResourceType('user_role', 'user_role', NULL),
      ],
      'field_relationships' => [
        new ResourceType('node', 'article', NULL),
      ],
    ]);
    $response = $this->entityResource
      ->getRelated($resource_type, $this->node, 'uid', Request::create('/jsonapi/node/article/' . $this->node
      ->uuid(), '/uid'));
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(ResourceObject::class, $response
      ->getResponseData()
      ->getData()
      ->toArray()[0]);
    $this
      ->assertEquals($this->user
      ->uuid(), $response
      ->getResponseData()
      ->getData()
      ->toArray()[0]
      ->getId());
    $this
      ->assertEquals([
      'node:1',
    ], $response
      ->getCacheableMetadata()
      ->getCacheTags());

    // to-many relationship.
    $response = $this->entityResource
      ->getRelated($resource_type, $this->node4, 'field_relationships', Request::create('/jsonapi/node/article/' . $this->node4
      ->uuid(), '/field_relationships'));
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertInstanceOf(Data::class, $response
      ->getResponseData()
      ->getData());
    $this
      ->assertEquals([
      'node:4',
    ], $response
      ->getCacheableMetadata()
      ->getCacheTags());
  }

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

    // to-one relationship.
    $resource_type = new ResourceType('node', 'article', NULL);
    $resource_type
      ->setRelatableResourceTypes([
      'uid' => [
        new ResourceType('user', 'user', NULL),
      ],
    ]);
    $response = $this->entityResource
      ->getRelationship($resource_type, $this->node, 'uid', Request::create('/jsonapi/node/article/' . $this->node
      ->uuid() . '/relationships/uid'));
    $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() {
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('create article content')
      ->save();
    $content = Json::encode([
      'data' => [
        'type' => 'node--article',
        'attributes' => [
          'title' => 'Lorem ipsum',
        ],
      ],
    ]);
    $request = Request::create('/jsonapi/node/article', 'POST', [], [], [], [], $content);
    $resource_type = new ResourceType('node', 'article', Node::class);
    $resource_type
      ->setRelatableResourceTypes([
      'field_relationships' => [
        new ResourceType('node', 'article', NULL),
      ],
    ]);
    $response = $this->entityResource
      ->createIndividual($resource_type, $request);

    // As a side effect, the node will also be saved.
    $this
      ->assertInstanceOf(JsonApiDocumentTopLevel::class, $response
      ->getResponseData());
    $this
      ->assertTrue(entity_load_multiple_by_properties('node', [
      'uuid' => $response
        ->getResponseData()
        ->getData()
        ->getIterator()
        ->offsetGet(0)
        ->getId(),
    ]));
    $this
      ->assertEquals(201, $response
      ->getStatusCode());
  }

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

  /**
   * @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();
    $payload = Json::encode([
      'data' => [
        'type' => 'article',
        'id' => $this->node
          ->uuid(),
        'attributes' => [
          'title' => 'foobar',
        ],
      ],
    ]);
    $this
      ->setExpectedException(ConflictHttpException::class, 'Conflict: Entity already exists.');
    $resource_type = new ResourceType('node', 'article', Node::class);
    $resource_type
      ->setRelatableResourceTypes([
      'field_relationships' => [
        new ResourceType('node', 'article', NULL),
      ],
    ]);
    $this->entityResource
      ->createIndividual($resource_type, Request::create('/jsonapi/node/article', 'POST', [], [], [], [], $payload));
  }

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

    // Create a new EntityResource that uses uuid.
    $resource_type = new ResourceType('node', 'article', Node::class);
    $resource_type
      ->setRelatableResourceTypes([
      'field_relationships' => [
        new ResourceType('node', 'article', NULL),
      ],
    ]);
    $response = $this->entityResource
      ->patchIndividual($resource_type, $this->node, $request);

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

  /**
   * @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();
    $response = $this->entityResource
      ->deleteIndividual($node);

    // 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 ::addToRelationshipData
   */
  public function testAddToRelationshipData() {
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('edit any article content')
      ->save();
    $resource_type = new ResourceType('node', 'article', NULL);
    $resource_type
      ->setRelatableResourceTypes([
      'field_relationships' => [
        new ResourceType('node', 'article', NULL),
      ],
    ]);
    $payload = Json::encode([
      'data' => [
        [
          'type' => 'node--article',
          'id' => $this->node
            ->uuid(),
        ],
      ],
    ]);
    $request = Request::create('/jsonapi/node/article/' . $this->node
      ->uuid() . '/relationships/field_relationships', 'POST', [], [], [], [], $payload);
    $response = $this->entityResource
      ->addToRelationshipData($resource_type, $this->node, 'field_relationships', $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 ::replaceRelationshipData
   * @dataProvider replaceRelationshipDataProvider
   */
  public function testReplaceRelationshipData($relationships) {
    $this->node->field_relationships
      ->appendItem([
      'target_id' => $this->node
        ->id(),
    ]);
    $this->node
      ->save();
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('edit any article content')
      ->save();
    $resource_type = new ResourceType('node', 'article', NULL);
    $resource_type
      ->setRelatableResourceTypes([
      'field_relationships' => [
        new ResourceType('node', 'article', NULL),
      ],
    ]);
    $payload = [
      'data' => [],
    ];
    foreach ($relationships as $relationship) {
      $payload['data'][] = [
        'type' => $relationship
          ->getTypeName(),
        'id' => $relationship
          ->getId(),
      ];
    }
    $request = Request::create('/jsonapi/node/article/' . $this->node
      ->uuid() . '/relationships/field_relationships', 'PATCH', [], [], [], [], Json::encode($payload));
    $response = $this->entityResource
      ->replaceRelationshipData($resource_type, $this->node, 'field_relationships', $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(array_map(function (ResourceIdentifier $identifier) {
      return $identifier
        ->getId();
    }, $relationships), array_map(function (EntityInterface $entity) {
      return $entity
        ->uuid();
    }, $field_list
      ->referencedEntities()));
    $this
      ->assertEquals(204, $response
      ->getStatusCode());
  }

  /**
   * Provides data for the testPatchRelationship.
   *
   * @return array
   *   The input data for the test function.
   */
  public function replaceRelationshipDataProvider() {
    return [
      // Replace relationships.
      [
        [
          new ResourceIdentifier('node--article', static::$nodeUuid[1]),
          new ResourceIdentifier('node--article', static::$nodeUuid[2]),
        ],
      ],
      // Remove relationships.
      [
        [],
      ],
    ];
  }

  /**
   * @covers ::removeFromRelationshipData
   * @dataProvider removeFromRelationshipDataProvider
   */
  public function testRemoveFromRelationshipData($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();
    Role::load(Role::ANONYMOUS_ID)
      ->grantPermission('edit any article content')
      ->save();
    $resource_type = new ResourceType('node', 'article', NULL);
    $resource_type
      ->setRelatableResourceTypes([
      'field_relationships' => [
        new ResourceType('node', 'article', NULL),
      ],
    ]);
    $payload = [
      'data' => [],
    ];
    foreach ($deleted_rels as $deleted_rel) {
      $payload['data'][] = [
        'type' => $deleted_rel
          ->getTypeName(),
        'id' => $deleted_rel
          ->getId(),
      ];
    }
    $request = Request::create('/jsonapi/node/article/' . $this->node
      ->uuid() . '/relationships/field_relationships', 'DELETE', [], [], [], [], Json::encode($payload));
    $response = $this->entityResource
      ->removeFromRelationshipData($resource_type, $this->node, 'field_relationships', $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());
  }

  /**
   * Provides data for the testDeleteRelationship.
   *
   * @return array
   *   The input data for the test function.
   */
  public function removeFromRelationshipDataProvider() {
    return [
      // Remove one relationship.
      [
        [
          new ResourceIdentifier('node--article', static::$nodeUuid[1]),
        ],
        [
          [
            'target_id' => 2,
          ],
        ],
      ],
      // Remove all relationships.
      [
        [
          new ResourceIdentifier('node--article', static::$nodeUuid[2]),
          new ResourceIdentifier('node--article', static::$nodeUuid[1]),
        ],
        [],
      ],
      // Remove no relationship.
      [
        [],
        [
          [
            'target_id' => 1,
          ],
          [
            'target_id' => 2,
          ],
        ],
      ],
    ];
  }

}

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::$entityResource protected property The EntityResource under test.
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::$nodeUuid protected static property Static UUIDs to use in testing.
EntityResourceTest::$request protected property A fake request.
EntityResourceTest::$user protected property The user.
EntityResourceTest::createEntityResource protected function Creates an instance of the subject under test.
EntityResourceTest::removeFromRelationshipDataProvider public function Provides data for the testDeleteRelationship.
EntityResourceTest::replaceRelationshipDataProvider public function Provides data for the testPatchRelationship.
EntityResourceTest::setUp protected function Overrides KernelTestBase::setUp
EntityResourceTest::testAddToRelationshipData public function @covers ::addToRelationshipData
EntityResourceTest::testCreateIndividual public function @covers ::createIndividual
EntityResourceTest::testCreateIndividualDuplicateError public function @covers ::createIndividual
EntityResourceTest::testCreateIndividualWithMissingRequiredData public function @covers ::createIndividual
EntityResourceTest::testDeleteIndividual public function @covers ::deleteIndividual
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::testGetRelationship public function @covers ::getRelationship
EntityResourceTest::testGetSortedCollection public function @covers ::getCollection
EntityResourceTest::testPatchIndividual public function @covers ::patchIndividual
EntityResourceTest::testRemoveFromRelationshipData public function @covers ::removeFromRelationshipData @dataProvider removeFromRelationshipDataProvider
EntityResourceTest::testReplaceRelationshipData public function @covers ::replaceRelationshipData @dataProvider replaceRelationshipDataProvider
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.