You are here

public function SelectTest::testSimpleSelectConditional in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Database/SelectTest.php \Drupal\KernelTests\Core\Database\SelectTest::testSimpleSelectConditional()

Tests basic conditionals on SELECT statements.

File

core/tests/Drupal/KernelTests/Core/Database/SelectTest.php, line 106

Class

SelectTest
Tests the Select query builder.

Namespace

Drupal\KernelTests\Core\Database

Code

public function testSimpleSelectConditional() {
  $query = $this->connection
    ->select('test');
  $name_field = $query
    ->addField('test', 'name');
  $age_field = $query
    ->addField('test', 'age', 'age');
  $query
    ->condition('age', 27);
  $result = $query
    ->execute();

  // Check that the aliases are being created the way we want.
  $this
    ->assertEqual($name_field, 'name', 'Name field alias is correct.');
  $this
    ->assertEqual($age_field, 'age', 'Age field alias is correct.');

  // Ensure that we got the right record.
  $record = $result
    ->fetch();
  $this
    ->assertEqual($record->{$name_field}, 'George', 'Fetched name is correct.');
  $this
    ->assertEqual($record->{$age_field}, 27, 'Fetched age is correct.');
}