function NodeQueryAlterTest::testNodeQueryAlterWithRevisions
Tests 'node_access' query alter with revision-enabled nodes.
File
-
core/
modules/ node/ tests/ src/ Functional/ NodeQueryAlterTest.php, line 100
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');
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.