You are here

public function SelectComplexTest::testNestedConditions in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php \Drupal\KernelTests\Core\Database\SelectComplexTest::testNestedConditions()

Confirms that we can properly nest conditional clauses.

File

core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php, line 312

Class

SelectComplexTest
Tests the Select query builder with more complex queries.

Namespace

Drupal\KernelTests\Core\Database

Code

public function testNestedConditions() {

  // This query should translate to:
  // "SELECT job FROM {test} WHERE name = 'Paul' AND (age = 26 OR age = 27)"
  // That should find only one record. Yes it's a non-optimal way of writing
  // that query but that's not the point!
  $query = $this->connection
    ->select('test');
  $query
    ->addField('test', 'job');
  $query
    ->condition('name', 'Paul');
  $query
    ->condition($this->connection
    ->condition('OR')
    ->condition('age', 26)
    ->condition('age', 27));
  $job = $query
    ->execute()
    ->fetchField();
  $this
    ->assertEquals('Songwriter', $job, 'Correct data retrieved.');
}