You are here

public function ContentEntityNullStorageTest::testEntityQuery in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php \Drupal\KernelTests\Core\Entity\ContentEntityNullStorageTest::testEntityQuery()
  2. 9 core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php \Drupal\KernelTests\Core\Entity\ContentEntityNullStorageTest::testEntityQuery()

Tests using entity query with ContentEntityNullStorage.

See also

\Drupal\Core\Entity\Query\Null\Query

File

core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php, line 32

Class

ContentEntityNullStorageTest
Tests ContentEntityNullStorage entity query support.

Namespace

Drupal\KernelTests\Core\Entity

Code

public function testEntityQuery() {
  $this
    ->assertSame(0, \Drupal::entityQuery('contact_message')
    ->accessCheck(FALSE)
    ->count()
    ->execute(), 'Counting a null storage returns 0.');
  $this
    ->assertSame([], \Drupal::entityQuery('contact_message')
    ->accessCheck(FALSE)
    ->execute(), 'Querying a null storage returns an empty array.');
  $this
    ->assertSame([], \Drupal::entityQuery('contact_message')
    ->accessCheck(FALSE)
    ->condition('contact_form', 'test')
    ->execute(), 'Querying a null storage returns an empty array and conditions are ignored.');
  $this
    ->assertSame([], \Drupal::entityQueryAggregate('contact_message')
    ->accessCheck(FALSE)
    ->aggregate('name', 'AVG')
    ->execute(), 'Aggregate querying a null storage returns an empty array');
}