You are here

public function AlterTest::testAlterWithJoin in Drupal 8

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

Tests that we can alter the joins on a query.

File

core/tests/Drupal/KernelTests/Core/Database/AlterTest.php, line 30

Class

AlterTest
Tests the hook_query_alter capabilities of the Select builder.

Namespace

Drupal\KernelTests\Core\Database

Code

public function testAlterWithJoin() {
  $query = $this->connection
    ->select('test_task');
  $tid_field = $query
    ->addField('test_task', 'tid');
  $task_field = $query
    ->addField('test_task', 'task');
  $query
    ->orderBy($task_field);
  $query
    ->addTag('database_test_alter_add_join');
  $result = $query
    ->execute();
  $records = $result
    ->fetchAll();
  $this
    ->assertCount(2, $records, 'Returned the correct number of rows.');
  $this
    ->assertEqual($records[0]->name, 'George', 'Correct data retrieved.');
  $this
    ->assertEqual($records[0]->{$tid_field}, 4, 'Correct data retrieved.');
  $this
    ->assertEqual($records[0]->{$task_field}, 'sing', 'Correct data retrieved.');
  $this
    ->assertEqual($records[1]->name, 'George', 'Correct data retrieved.');
  $this
    ->assertEqual($records[1]->{$tid_field}, 5, 'Correct data retrieved.');
  $this
    ->assertEqual($records[1]->{$task_field}, 'sleep', 'Correct data retrieved.');
}