class ConfigEntityQueryTest

Tests the config entity query.

Hierarchy

Expanded class hierarchy of ConfigEntityQueryTest

See also

\Drupal\Core\Config\Entity\Query

File

drupal/core/modules/system/lib/Drupal/system/Tests/Entity/ConfigEntityQueryTest.php, line 17
Contains \Drupal\system\Tests\ConfigEntityQueryTest.

Namespace

Drupal\system\Tests\Entity
View source
class ConfigEntityQueryTest extends DrupalUnitTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  static $modules = array(
    'config_test',
  );

  /**
   * Stores the search results for alter comparision.
   *
   * @var array
   */
  protected $queryResults;

  /**
   * The query factory used to construct all queries in the test.
   *
   * @var \Drupal\Core\Entity\Query\QueryFactory
   */
  protected $factory;

  /**
   * Stores all config entities created for the test.
   *
   * @var array
   */
  protected $entities;
  public static function getInfo() {
    return array(
      'name' => 'Config Entity Query',
      'description' => 'Tests Config Entity Query functionality.',
      'group' => 'Configuration',
    );
  }
  protected function setUp() {
    parent::setUp();
    $this->entities = array();
    $this
      ->enableModules(array(
      'entity',
    ), TRUE);
    $this->factory = $this->container
      ->get('entity.query');

    // These two are here to make sure that matchArray needs to go over several
    // non-matches on every levels.
    $array['level1']['level2a'] = 9;
    $array['level1a']['level2'] = 9;

    // The tests match array.level1.level2.
    $array['level1']['level2'] = 1;
    $entity = entity_create('config_query_test', array(
      'label' => $this
        ->randomName(),
      'id' => '1',
      'number' => 31,
      'array' => $array,
    ));
    $this->entities[] = $entity;
    $entity
      ->enforceIsNew();
    $entity
      ->save();
    $array['level1']['level2'] = 2;
    $entity = entity_create('config_query_test', array(
      'label' => $this
        ->randomName(),
      'id' => '2',
      'number' => 41,
      'array' => $array,
    ));
    $this->entities[] = $entity;
    $entity
      ->enforceIsNew();
    $entity
      ->save();
    $array['level1']['level2'] = 1;
    $entity = entity_create('config_query_test', array(
      'label' => 'test_prefix_' . $this
        ->randomName(),
      'id' => '3',
      'number' => 59,
      'array' => $array,
    ));
    $this->entities[] = $entity;
    $entity
      ->enforceIsNew();
    $entity
      ->save();
    $array['level1']['level2'] = 2;
    $entity = entity_create('config_query_test', array(
      'label' => $this
        ->randomName() . '_test_suffix',
      'id' => '4',
      'number' => 26,
      'array' => $array,
    ));
    $this->entities[] = $entity;
    $entity
      ->enforceIsNew();
    $entity
      ->save();
    $array['level1']['level2'] = 3;
    $entity = entity_create('config_query_test', array(
      'label' => $this
        ->randomName() . '_test_contains_' . $this
        ->randomName(),
      'id' => '5',
      'number' => 53,
      'array' => $array,
    ));
    $this->entities[] = $entity;
    $entity
      ->enforceIsNew();
    $entity
      ->save();
  }

  /**
   * Tests basic functionality.
   */
  public function testConfigEntityQuery() {

    // Run a test without any condition.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '2',
      '3',
      '4',
      '5',
    ));

    // No conditions, OR.
    $this->queryResults = $this->factory
      ->get('config_query_test', 'OR')
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '2',
      '3',
      '4',
      '5',
    ));

    // Filter by ID with equality.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', '3')
      ->execute();
    $this
      ->assertResults(array(
      '3',
    ));

    // Filter by label with a known prefix.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('label', 'test_prefix', 'STARTS_WITH')
      ->execute();
    $this
      ->assertResults(array(
      '3',
    ));

    // Filter by label with a known suffix.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('label', 'test_suffix', 'ENDS_WITH')
      ->execute();
    $this
      ->assertResults(array(
      '4',
    ));

    // Filter by label with a known containing word.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('label', 'test_contains', 'CONTAINS')
      ->execute();
    $this
      ->assertResults(array(
      '5',
    ));

    // Filter by ID with the IN operator.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', array(
      '2',
      '3',
    ), 'IN')
      ->execute();
    $this
      ->assertResults(array(
      '2',
      '3',
    ));

    // Filter by ID with the implicit IN operator.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', array(
      '2',
      '3',
    ))
      ->execute();
    $this
      ->assertResults(array(
      '2',
      '3',
    ));

    // Filter by ID with the > operator.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', '3', '>')
      ->execute();
    $this
      ->assertResults(array(
      '4',
      '5',
    ));

    // Filter by ID with the >= operator.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', '3', '>=')
      ->execute();
    $this
      ->assertResults(array(
      '3',
      '4',
      '5',
    ));

    // Filter by ID with the < operator.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', '3', '<')
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '2',
    ));

    // Filter by ID with the <= operator.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', '3', '<=')
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '2',
      '3',
    ));

    // Filter by two conditions on the same field.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('label', 'test_pref', 'STARTS_WITH')
      ->condition('label', 'test_prefix', 'STARTS_WITH')
      ->execute();
    $this
      ->assertResults(array(
      '3',
    ));

    // Filter by two conditions on different fields. The first query matches for
    // a different ID, so the result is empty.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('label', 'test_prefix', 'STARTS_WITH')
      ->condition('id', '5')
      ->execute();
    $this
      ->assertResults(array());

    // Filter by two different conditions on different fields. This time the
    // first condition matches on one item, but the second one does as well.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('label', 'test_prefix', 'STARTS_WITH')
      ->condition('id', '3')
      ->execute();
    $this
      ->assertResults(array(
      '3',
    ));

    // Filter by two different conditions, of which the first one matches for
    // every entry, the second one as well, but just the third one filters so
    // that just two are left.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', '1', '>=')
      ->condition('number', 10, '>=')
      ->condition('number', 50, '>=')
      ->execute();
    $this
      ->assertResults(array(
      '3',
      '5',
    ));

    // Filter with an OR condition group.
    $this->queryResults = $this->factory
      ->get('config_query_test', 'OR')
      ->condition('id', 1)
      ->condition('id', '2')
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '2',
    ));

    // Simplify it with IN.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', array(
      '1',
      '2',
    ))
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '2',
    ));

    // Try explicit IN.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', array(
      '1',
      '2',
    ), 'IN')
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '2',
    ));

    // Try not IN.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', array(
      '1',
      '2',
    ), 'NOT IN')
      ->execute();
    $this
      ->assertResults(array(
      '3',
      '4',
      '5',
    ));

    // Filter with an OR condition group on different fields.
    $this->queryResults = $this->factory
      ->get('config_query_test', 'OR')
      ->condition('id', 1)
      ->condition('number', 41)
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '2',
    ));

    // Filter with an OR condition group on different fields but matching on the
    // same entity.
    $this->queryResults = $this->factory
      ->get('config_query_test', 'OR')
      ->condition('id', 1)
      ->condition('number', 31)
      ->execute();
    $this
      ->assertResults(array(
      '1',
    ));

    // NO simple conditions, YES complex conditions, 'AND'.
    $query = $this->factory
      ->get('config_query_test', 'AND');
    $and_condition_1 = $query
      ->orConditionGroup()
      ->condition('id', '2')
      ->condition('label', $this->entities[0]->label);
    $and_condition_2 = $query
      ->orConditionGroup()
      ->condition('id', 1)
      ->condition('label', $this->entities[3]->label);
    $this->queryResults = $query
      ->condition($and_condition_1)
      ->condition($and_condition_2)
      ->execute();
    $this
      ->assertResults(array(
      '1',
    ));

    // NO simple conditions, YES complex conditions, 'OR'.
    $query = $this->factory
      ->get('config_query_test', 'OR');
    $and_condition_1 = $query
      ->andConditionGroup()
      ->condition('id', 1)
      ->condition('label', $this->entities[0]->label);
    $and_condition_2 = $query
      ->andConditionGroup()
      ->condition('id', '2')
      ->condition('label', $this->entities[1]->label);
    $this->queryResults = $query
      ->condition($and_condition_1)
      ->condition($and_condition_2)
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '2',
    ));

    // YES simple conditions, YES complex conditions, 'AND'.
    $query = $this->factory
      ->get('config_query_test', 'AND');
    $and_condition_1 = $query
      ->orConditionGroup()
      ->condition('id', '2')
      ->condition('label', $this->entities[0]->label);
    $and_condition_2 = $query
      ->orConditionGroup()
      ->condition('id', 1)
      ->condition('label', $this->entities[3]->label);
    $this->queryResults = $query
      ->condition('number', 31)
      ->condition($and_condition_1)
      ->condition($and_condition_2)
      ->execute();
    $this
      ->assertResults(array(
      '1',
    ));

    // YES simple conditions, YES complex conditions, 'OR'.
    $query = $this->factory
      ->get('config_query_test', 'OR');
    $and_condition_1 = $query
      ->orConditionGroup()
      ->condition('id', '2')
      ->condition('label', $this->entities[0]->label);
    $and_condition_2 = $query
      ->orConditionGroup()
      ->condition('id', 1)
      ->condition('label', $this->entities[3]->label);
    $this->queryResults = $query
      ->condition('number', 53)
      ->condition($and_condition_1)
      ->condition($and_condition_2)
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '2',
      '4',
      '5',
    ));

    // Test the exists and notExists conditions.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->exists('id')
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '2',
      '3',
      '4',
      '5',
    ));
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->exists('non-existent')
      ->execute();
    $this
      ->assertResults(array());
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->notExists('id')
      ->execute();
    $this
      ->assertResults(array());
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->notExists('non-existent')
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '2',
      '3',
      '4',
      '5',
    ));
  }

  /**
   * Tests count query.
   */
  protected function testCount() {

    // Test count on no conditions.
    $count = $this->factory
      ->get('config_query_test')
      ->count()
      ->execute();
    $this
      ->assertIdentical($count, count($this->entities));

    // Test count on a complex query.
    $query = $this->factory
      ->get('config_query_test', 'OR');
    $and_condition_1 = $query
      ->andConditionGroup()
      ->condition('id', 1)
      ->condition('label', $this->entities[0]->label);
    $and_condition_2 = $query
      ->andConditionGroup()
      ->condition('id', '2')
      ->condition('label', $this->entities[1]->label);
    $count = $query
      ->condition($and_condition_1)
      ->condition($and_condition_2)
      ->count()
      ->execute();
    $this
      ->assertIdentical($count, 2);
  }

  /**
   * Tests sorting and range on config entity queries.
   */
  protected function testSortRange() {

    // Sort by simple ascending/descending.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->sort('number', 'DESC')
      ->execute();
    $this
      ->assertIdentical(array_values($this->queryResults), array(
      '3',
      '5',
      '2',
      '1',
      '4',
    ));
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->sort('number', 'ASC')
      ->execute();
    $this
      ->assertIdentical(array_values($this->queryResults), array(
      '4',
      '1',
      '2',
      '5',
      '3',
    ));

    // Apply some filters and sort.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', '3', '>')
      ->sort('number', 'DESC')
      ->execute();
    $this
      ->assertIdentical(array_values($this->queryResults), array(
      '5',
      '4',
    ));
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('id', '3', '>')
      ->sort('number', 'ASC')
      ->execute();
    $this
      ->assertIdentical(array_values($this->queryResults), array(
      '4',
      '5',
    ));

    // Apply a pager and sort.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->sort('number', 'DESC')
      ->range('2', '2')
      ->execute();
    $this
      ->assertIdentical(array_values($this->queryResults), array(
      '2',
      '1',
    ));
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->sort('number', 'ASC')
      ->range('2', '2')
      ->execute();
    $this
      ->assertIdentical(array_values($this->queryResults), array(
      '2',
      '5',
    ));

    // Add a range to a query without a start parameter.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->range(0, '3')
      ->sort('id', 'ASC')
      ->execute();
    $this
      ->assertIdentical(array_values($this->queryResults), array(
      '1',
      '2',
      '3',
    ));

    // Apply a pager with limit 4.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->pager('4', 0)
      ->sort('id', 'ASC')
      ->execute();
    $this
      ->assertIdentical(array_values($this->queryResults), array(
      '1',
      '2',
      '3',
      '4',
    ));
  }

  /**
   * Tests dotted path matching.
   */
  protected function testDotted() {
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('array.level1.*', 1)
      ->execute();
    $this
      ->assertResults(array(
      '1',
      '3',
    ));
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('*.level1.level2', 2)
      ->execute();
    $this
      ->assertResults(array(
      '2',
      '4',
    ));
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('array.level1.*', 3)
      ->execute();
    $this
      ->assertResults(array(
      '5',
    ));
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('array.level1.level2', 3)
      ->execute();
    $this
      ->assertResults(array(
      '5',
    ));

    // Make sure that values on the wildcard level do not match if if there are
    // sub-keys defined. This must not find anything even if entity 2 has a
    // top-level key number with value 41.
    $this->queryResults = $this->factory
      ->get('config_query_test')
      ->condition('*.level1.level2', 41)
      ->execute();
    $this
      ->assertResults(array());
  }

  /**
   * Asserts the results as expected regardless of order.
   *
   * @param array $expected
   *   Array of expected entity IDs.
   */
  protected function assertResults($expected) {
    $this
      ->assertIdentical(count($this->queryResults), count($expected));
    foreach ($expected as $value) {

      // This also tests whether $this->queryResults[$value] is even set at all.
      $this
        ->assertIdentical($this->queryResults[$value], $value);
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigEntityQueryTest::$entities protected property Stores all config entities created for the test.
ConfigEntityQueryTest::$factory protected property The query factory used to construct all queries in the test.
ConfigEntityQueryTest::$modules static property Modules to enable. Overrides DrupalUnitTestBase::$modules
ConfigEntityQueryTest::$queryResults protected property Stores the search results for alter comparision.
ConfigEntityQueryTest::assertResults protected function Asserts the results as expected regardless of order.
ConfigEntityQueryTest::getInfo public static function
ConfigEntityQueryTest::setUp protected function Sets up Drupal unit test environment. Overrides DrupalUnitTestBase::setUp
ConfigEntityQueryTest::testConfigEntityQuery public function Tests basic functionality.
ConfigEntityQueryTest::testCount protected function Tests count query.
ConfigEntityQueryTest::testDotted protected function Tests dotted path matching.
ConfigEntityQueryTest::testSortRange protected function Tests sorting and range on config entity queries.
DrupalUnitTestBase::$keyValueFactory protected property A KeyValueMemoryFactory instance to use when building the container.
DrupalUnitTestBase::$moduleFiles private property
DrupalUnitTestBase::$themeData private property
DrupalUnitTestBase::$themeFiles private property
DrupalUnitTestBase::containerBuild public function Sets up the base service container for this test. 1
DrupalUnitTestBase::disableModules protected function Disables modules for this test.
DrupalUnitTestBase::enableModules protected function Enables modules for this test.
DrupalUnitTestBase::installConfig protected function Installs default configuration for a given list of modules.
DrupalUnitTestBase::installSchema protected function Installs a specific table from a module schema definition.
DrupalUnitTestBase::tearDown protected function Deletes created files, database tables, and reverts all environment changes. Overrides TestBase::tearDown 2
DrupalUnitTestBase::__construct function Overrides \Drupal\simpletest\UnitTestBase::__construct(). Overrides UnitTestBase::__construct
TestBase::$assertions protected property Assertions thrown in that test case.
TestBase::$configImporter protected property The config importer that can used in a test. 1
TestBase::$container protected property The dependency injection container used in the test. 1
TestBase::$databasePrefix protected property The database prefix of this test run.
TestBase::$dieOnFail public property Whether to die in case any test assertion fails.
TestBase::$originalFileDirectory protected property The original file directory, before it was changed for testing purposes.
TestBase::$originalPrefix protected property The original database prefix when running inside Simpletest.
TestBase::$originalSettings protected property The settings array.
TestBase::$public_files_directory protected property The public file directory for the test environment.
TestBase::$results public property Current results of this test case.
TestBase::$setup protected property Flag to indicate whether the test has been set up.
TestBase::$setupDatabasePrefix protected property
TestBase::$setupEnvironment protected property
TestBase::$skipClasses protected property This class is skipped when looking for the source of an assertion.
TestBase::$testId protected property The test run ID.
TestBase::$timeLimit protected property Time limit for the test.
TestBase::$verbose protected property TRUE if verbose debugging is enabled.
TestBase::$verboseClassName protected property Safe class name for use in verbose output filenames.
TestBase::$verboseDirectory protected property Directory where verbose output files are put.
TestBase::$verboseDirectoryUrl protected property URL to the verbose output file directory.
TestBase::$verboseId protected property Incrementing identifier for verbose output filenames.
TestBase::assert protected function Internal helper: stores the assert.
TestBase::assertEqual protected function Check to see if two values are equal.
TestBase::assertFalse protected function Check to see if a value is false (an empty string, 0, NULL, or FALSE).
TestBase::assertIdentical protected function Check to see if two values are identical.
TestBase::assertIdenticalObject protected function Checks to see if two objects are identical.
TestBase::assertNotEqual protected function Check to see if two values are not equal.
TestBase::assertNotIdentical protected function Check to see if two values are not identical.
TestBase::assertNotNull protected function Check to see if a value is not NULL.
TestBase::assertNull protected function Check to see if a value is NULL.
TestBase::assertTrue protected function Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
TestBase::changeDatabasePrefix protected function Changes the database connection to the prefixed one.
TestBase::checkRequirements protected function Checks the matching requirements for Test. 4
TestBase::configImporter public function Returns a ConfigImporter object to import test importing of configuration. 1
TestBase::copyConfig public function Copies configuration objects from source storage to target storage.
TestBase::deleteAssert public static function Delete an assertion record by message ID.
TestBase::error protected function Fire an error assertion. 1
TestBase::errorHandler public function Handle errors during test runs.
TestBase::exceptionHandler protected function Handle exceptions.
TestBase::fail protected function Fire an assertion that is always negative.
TestBase::filePreDeleteCallback public static function Ensures test files are deletable within file_unmanaged_delete_recursive().
TestBase::generatePermutations public static function Converts a list of possible parameters into a stack of permutations.
TestBase::getAssertionCall protected function Cycles through backtrace until the first non-assertion method is found.
TestBase::getDatabaseConnection public static function Returns the database connection to the site running Simpletest.
TestBase::insertAssert public static function Store an assertion from outside the testing context.
TestBase::pass protected function Fire an assertion that is always positive.
TestBase::prepareConfigDirectories protected function Create and set new configuration directories. 1
TestBase::prepareDatabasePrefix protected function Generates a database prefix for running tests.
TestBase::prepareEnvironment protected function Prepares the current environment for running the test.
TestBase::randomName public static function Generates a random string containing letters and numbers.
TestBase::randomObject public static function Generates a random PHP object.
TestBase::randomString public static function Generates a random string of ASCII characters of codes 32 to 126.
TestBase::rebuildContainer protected function Rebuild drupal_container(). 1
TestBase::run public function Run all tests in this class.
TestBase::settingsSet protected function Changes in memory settings.
TestBase::verbose protected function Logs verbose message in a text file.
UnitTestBase::$configDirectories protected property