public function NodeQueryAlterTest::testNodeQueryAlterWithRevisions in Drupal 9
Same name and namespace in other branches
- 8 core/modules/node/tests/src/Functional/NodeQueryAlterTest.php \Drupal\Tests\node\Functional\NodeQueryAlterTest::testNodeQueryAlterWithRevisions()
Tests 'node_access' query alter with revision-enabled nodes.
File
- core/
modules/ node/ tests/ src/ Functional/ NodeQueryAlterTest.php, line 90
Class
- NodeQueryAlterTest
- Tests that node access queries are properly altered by the node module.
Namespace
Drupal\Tests\node\FunctionalCode
public function testNodeQueryAlterWithRevisions() {
// Execute a query that only deals with the 'node_revision' table.
try {
$query = \Drupal::entityTypeManager()
->getStorage('node')
->getQuery();
$result = $query
->accessCheck(TRUE)
->allRevisions()
->execute();
$this
->assertCount(4, $result, 'User with access can see correct nodes');
} catch (\Exception $e) {
$this
->fail('Altered query is malformed');
}
}