class EntityResourceTest in JSON:API 8
Same name and namespace in other branches
- 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
- class \Drupal\KernelTests\KernelTestBase extends \PHPUnit\Framework\TestCase implements ServiceProviderInterface uses AssertContentTrait, AssertLegacyTrait, AssertHelperTrait, ConfigTestTrait, PhpunitCompatibilityTrait, RandomGeneratorTrait, TestRequirementsTrait
- class \Drupal\Tests\jsonapi\Kernel\JsonapiKernelTestBase
- class \Drupal\Tests\jsonapi\Kernel\Controller\EntityResourceTest
- class \Drupal\Tests\jsonapi\Kernel\JsonapiKernelTestBase
Expanded class hierarchy of EntityResourceTest
File
- tests/
src/ Kernel/ Controller/ EntityResourceTest.php, line 37
Namespace
Drupal\Tests\jsonapi\Kernel\ControllerView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AssertContentTrait:: |
protected | property | The current raw content. | |
AssertContentTrait:: |
protected | property | The drupalSettings value from the current raw $content. | |
AssertContentTrait:: |
protected | property | The XML structure parsed from the current raw $content. | 1 |
AssertContentTrait:: |
protected | property | The plain-text content of raw $content (text nodes). | |
AssertContentTrait:: |
protected | function | Passes if the raw text IS found escaped on the loaded page, fail otherwise. | |
AssertContentTrait:: |
protected | function | Asserts that a field exists with the given name or ID. | |
AssertContentTrait:: |
protected | function | Asserts that a field exists with the given ID and value. | |
AssertContentTrait:: |
protected | function | Asserts that a field exists with the given name and value. | |
AssertContentTrait:: |
protected | function | Asserts that a field exists in the current page by the given XPath. | |
AssertContentTrait:: |
protected | function | Asserts that a checkbox field in the current page is checked. | |
AssertContentTrait:: |
protected | function | Asserts that a field exists in the current page with a given Xpath result. | |
AssertContentTrait:: |
protected | function | Passes if a link with the specified label is found. | |
AssertContentTrait:: |
protected | function | Passes if a link containing a given href (part) is found. | |
AssertContentTrait:: |
protected | function | Asserts that each HTML ID is used for just a single element. | |
AssertContentTrait:: |
protected | function | Passes if the raw text IS NOT found escaped on the loaded page, fail otherwise. | |
AssertContentTrait:: |
protected | function | Asserts that a field does not exist with the given name or ID. | |
AssertContentTrait:: |
protected | function | Asserts that a field does not exist with the given ID and value. | |
AssertContentTrait:: |
protected | function | Asserts that a field does not exist with the given name and value. | |
AssertContentTrait:: |
protected | function | Asserts that a field does not exist or its value does not match, by XPath. | |
AssertContentTrait:: |
protected | function | Asserts that a checkbox field in the current page is not checked. | |
AssertContentTrait:: |
protected | function | Passes if a link with the specified label is not found. | |
AssertContentTrait:: |
protected | function | Passes if a link containing a given href (part) is not found. | |
AssertContentTrait:: |
protected | function | Passes if a link containing a given href is not found in the main region. | |
AssertContentTrait:: |
protected | function | Asserts that a select option in the current page does not exist. | |
AssertContentTrait:: |
protected | function | Asserts that a select option in the current page is not checked. | |
AssertContentTrait:: |
protected | function | Triggers a pass if the perl regex pattern is not found in raw content. | |
AssertContentTrait:: |
protected | function | Passes if the raw text is NOT found on the loaded page, fail otherwise. | |
AssertContentTrait:: |
protected | function | Passes if the page (with HTML stripped) does not contains the text. | |
AssertContentTrait:: |
protected | function | Pass if the page title is not the given string. | |
AssertContentTrait:: |
protected | function | Passes if the text is found MORE THAN ONCE on the text version of the page. | |
AssertContentTrait:: |
protected | function | Asserts that a select option in the current page exists. | |
AssertContentTrait:: |
protected | function | Asserts that a select option with the visible text exists. | |
AssertContentTrait:: |
protected | function | Asserts that a select option in the current page is checked. | |
AssertContentTrait:: |
protected | function | Asserts that a select option in the current page is checked. | |
AssertContentTrait:: |
protected | function | Asserts that a select option in the current page exists. | |
AssertContentTrait:: |
protected | function | Triggers a pass if the Perl regex pattern is found in the raw content. | |
AssertContentTrait:: |
protected | function | Passes if the raw text IS found on the loaded page, fail otherwise. | |
AssertContentTrait:: |
protected | function | Passes if the page (with HTML stripped) contains the text. | |
AssertContentTrait:: |
protected | function | Helper for assertText and assertNoText. | |
AssertContentTrait:: |
protected | function | Asserts that a Perl regex pattern is found in the plain-text content. | |
AssertContentTrait:: |
protected | function | Asserts themed output. | |
AssertContentTrait:: |
protected | function | Pass if the page title is the given string. | |
AssertContentTrait:: |
protected | function | Passes if the text is found ONLY ONCE on the text version of the page. | |
AssertContentTrait:: |
protected | function | Helper for assertUniqueText and assertNoUniqueText. | |
AssertContentTrait:: |
protected | function | Builds an XPath query. | |
AssertContentTrait:: |
protected | function | Helper: Constructs an XPath for the given set of attributes and value. | |
AssertContentTrait:: |
protected | function | Searches elements using a CSS selector in the raw content. | |
AssertContentTrait:: |
protected | function | Get all option elements, including nested options, in a select. | |
AssertContentTrait:: |
protected | function | Gets the value of drupalSettings for the currently-loaded page. | |
AssertContentTrait:: |
protected | function | Gets the current raw content. | |
AssertContentTrait:: |
protected | function | Get the selected value from a select field. | |
AssertContentTrait:: |
protected | function | Retrieves the plain-text content from the current raw content. | |
AssertContentTrait:: |
protected | function | Get the current URL from the cURL handler. | 1 |
AssertContentTrait:: |
protected | function | Parse content returned from curlExec using DOM and SimpleXML. | |
AssertContentTrait:: |
protected | function | Removes all white-space between HTML tags from the raw content. | |
AssertContentTrait:: |
protected | function | Sets the value of drupalSettings for the currently-loaded page. | |
AssertContentTrait:: |
protected | function | Sets the raw content (e.g. HTML). | |
AssertContentTrait:: |
protected | function | Performs an xpath search on the contents of the internal browser. | |
AssertHelperTrait:: |
protected static | function | Casts MarkupInterface objects into strings. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertSame() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotEquals() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotSame() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead. | |
AssertLegacyTrait:: |
protected | function | ||
ConfigTestTrait:: |
protected | function | Returns a ConfigImporter object to import test configuration. | |
ConfigTestTrait:: |
protected | function | Copies configuration objects from source storage to target storage. | |
EntityResourceTest:: |
public static | property |
Modules to enable. Overrides JsonapiKernelTestBase:: |
|
EntityResourceTest:: |
protected | property | The node. | |
EntityResourceTest:: |
protected | property | The other node. | |
EntityResourceTest:: |
protected | property | An unpublished node. | |
EntityResourceTest:: |
protected | property | A fake request. | |
EntityResourceTest:: |
protected | property | The user. | |
EntityResourceTest:: |
protected | function | Instantiates a test EntityResource. | |
EntityResourceTest:: |
public | function | Provides data for the testDeleteRelationship. | |
EntityResourceTest:: |
public | function | Provides data for the testPatchIndividualFailedConfig. | |
EntityResourceTest:: |
public | function | Provides data for the testPatchIndividualConfig. | |
EntityResourceTest:: |
public | function | Provides data for the testPatchIndividual. | |
EntityResourceTest:: |
public | function | Provides data for the testPatchRelationship. | |
EntityResourceTest:: |
protected | function |
Overrides KernelTestBase:: |
|
EntityResourceTest:: |
public | function | @covers ::createIndividual | |
EntityResourceTest:: |
public | function | @covers ::createIndividual | |
EntityResourceTest:: |
public | function | @covers ::createIndividual | |
EntityResourceTest:: |
public | function | @covers ::createIndividual | |
EntityResourceTest:: |
public | function | @covers ::createRelationship | |
EntityResourceTest:: |
public | function | @covers ::createRelationship | |
EntityResourceTest:: |
public | function | @covers ::deleteIndividual | |
EntityResourceTest:: |
public | function | @covers ::deleteIndividual | |
EntityResourceTest:: |
public | function | @covers ::deleteRelationship @dataProvider deleteRelationshipProvider | |
EntityResourceTest:: |
public | function | @covers ::deleteRelationship | |
EntityResourceTest:: |
public | function | @covers ::getCollection | |
EntityResourceTest:: |
public | function | @covers ::getCollection | |
EntityResourceTest:: |
public | function | @covers ::getCollection | |
EntityResourceTest:: |
public | function | @covers ::getIndividual | |
EntityResourceTest:: |
public | function | @covers ::getIndividual | |
EntityResourceTest:: |
public | function | @covers ::getCollection | |
EntityResourceTest:: |
public | function | @covers ::getRelated | |
EntityResourceTest:: |
public | function | @covers ::getRelated | |
EntityResourceTest:: |
public | function | @covers ::getRelationship | |
EntityResourceTest:: |
public | function | @covers ::getRelationship | |
EntityResourceTest:: |
public | function | @covers ::getCollection | |
EntityResourceTest:: |
public | function | @covers ::patchIndividual @dataProvider patchIndividualProvider | |
EntityResourceTest:: |
public | function | @covers ::patchIndividual @dataProvider patchIndividualConfigProvider | |
EntityResourceTest:: |
public | function | @covers ::patchIndividual @dataProvider patchIndividualConfigFailedProvider | |
EntityResourceTest:: |
public | function | @covers ::patchRelationship @dataProvider patchRelationshipProvider | |
EntityResourceTest:: |
public | function | @covers ::patchRelationship | |
JsonapiKernelTestBase:: |
protected | function | Creates a field of an entity reference field storage on the bundle. | |
JsonapiKernelTestBase:: |
protected | function | Creates a field of an entity reference field storage on the bundle. | |
KernelTestBase:: |
protected | property | Back up and restore any global variables that may be changed by tests. | |
KernelTestBase:: |
protected | property | Back up and restore static class properties that may be changed by tests. | |
KernelTestBase:: |
protected | property | Contains a few static class properties for performance. | |
KernelTestBase:: |
protected | property | ||
KernelTestBase:: |
protected | property | @todo Move into Config test base class. | 7 |
KernelTestBase:: |
protected static | property | An array of config object names that are excluded from schema checking. | |
KernelTestBase:: |
protected | property | ||
KernelTestBase:: |
protected | property | ||
KernelTestBase:: |
protected | property | Do not forward any global state from the parent process to the processes that run the actual tests. | |
KernelTestBase:: |
protected | property | The app root. | |
KernelTestBase:: |
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:: |
protected | property | ||
KernelTestBase:: |
protected | property | Set to TRUE to strict check all configuration saved. | 6 |
KernelTestBase:: |
protected | property | The virtual filesystem root directory. | |
KernelTestBase:: |
protected | function | 1 | |
KernelTestBase:: |
protected | function | Bootstraps a basic test environment. | |
KernelTestBase:: |
private | function | Bootstraps a kernel for a test. | |
KernelTestBase:: |
protected | function | Configuration accessor for tests. Returns non-overridden configuration. | |
KernelTestBase:: |
protected | function | Disables modules for this test. | |
KernelTestBase:: |
protected | function | Enables modules for this test. | |
KernelTestBase:: |
protected | function | Gets the config schema exclusions for this test. | |
KernelTestBase:: |
protected | function | Returns the Database connection info to be used for this test. | 1 |
KernelTestBase:: |
public | function | ||
KernelTestBase:: |
private | function | Returns Extension objects for $modules to enable. | |
KernelTestBase:: |
private static | function | Returns the modules to enable for this test. | |
KernelTestBase:: |
protected | function | Initializes the FileCache component. | |
KernelTestBase:: |
protected | function | Installs default configuration for a given list of modules. | |
KernelTestBase:: |
protected | function | Installs the storage schema for a specific entity type. | |
KernelTestBase:: |
protected | function | Installs database tables from a module schema definition. | |
KernelTestBase:: |
protected | function | Returns whether the current test method is running in a separate process. | |
KernelTestBase:: |
protected | function | ||
KernelTestBase:: |
public | function |
Registers test-specific services. Overrides ServiceProviderInterface:: |
26 |
KernelTestBase:: |
protected | function | Renders a render array. | 1 |
KernelTestBase:: |
protected | function | Sets the install profile and rebuilds the container to update it. | |
KernelTestBase:: |
protected | function | Sets an in-memory Settings variable. | |
KernelTestBase:: |
public static | function | 1 | |
KernelTestBase:: |
protected | function | Sets up the filesystem, so things like the file directory. | 2 |
KernelTestBase:: |
protected | function | Stops test execution. | |
KernelTestBase:: |
protected | function | 6 | |
KernelTestBase:: |
public | function | @after | |
KernelTestBase:: |
protected | function | Dumps the current state of the virtual filesystem to STDOUT. | |
KernelTestBase:: |
public | function | BC: Automatically resolve former KernelTestBase class properties. | |
KernelTestBase:: |
public | function | Prevents serializing any properties. | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
RandomGeneratorTrait:: |
protected | property | The random generator. | |
RandomGeneratorTrait:: |
protected | function | Gets the random generator for the utility methods. | |
RandomGeneratorTrait:: |
protected | function | Generates a unique random string containing letters and numbers. | 1 |
RandomGeneratorTrait:: |
public | function | Generates a random PHP object. | |
RandomGeneratorTrait:: |
public | function | Generates a pseudo-random string of ASCII characters of codes 32 to 126. | |
RandomGeneratorTrait:: |
public | function | Callback for random string validation. | |
StorageCopyTrait:: |
protected static | function | Copy the configuration from one storage to another and remove stale items. | |
TestRequirementsTrait:: |
private | function | Checks missing module requirements. | |
TestRequirementsTrait:: |
protected | function | Check module requirements for the Drupal use case. | 1 |
TestRequirementsTrait:: |
protected static | function | Returns the Drupal root directory. |