function EntityResourceTest::testGetEmptyCollection
Same name in other branches
- 9 core/modules/jsonapi/tests/src/Kernel/Controller/EntityResourceTest.php \Drupal\Tests\jsonapi\Kernel\Controller\EntityResourceTest::testGetEmptyCollection()
- 8.9.x core/modules/jsonapi/tests/src/Kernel/Controller/EntityResourceTest.php \Drupal\Tests\jsonapi\Kernel\Controller\EntityResourceTest::testGetEmptyCollection()
- 11.x core/modules/jsonapi/tests/src/Kernel/Controller/EntityResourceTest.php \Drupal\Tests\jsonapi\Kernel\Controller\EntityResourceTest::testGetEmptyCollection()
@covers ::getCollection
File
-
core/
modules/ jsonapi/ tests/ src/ Kernel/ Controller/ EntityResourceTest.php, line 227
Class
- EntityResourceTest
- @coversDefaultClass \Drupal\jsonapi\Controller\EntityResource @group jsonapi
Namespace
Drupal\Tests\jsonapi\Kernel\ControllerCode
public function testGetEmptyCollection() : void {
$request = Request::create('/jsonapi/node/article');
$request->query = new InputBag([
'filter' => [
'id' => 'invalid',
],
]);
// Get the response.
$resource_type = new ResourceType('node', 'article', NULL);
$response = $this->entityResource
->getCollection($resource_type, $request);
// Assertions.
$this->assertInstanceOf(CacheableResourceResponse::class, $response);
$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());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.