You are here

public function UpdateTest::testWhereAndConditionUpdate in Drupal 8

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

Confirms that we can stack condition and where calls.

File

core/tests/Drupal/KernelTests/Core/Database/UpdateTest.php, line 86

Class

UpdateTest
Tests the update query builder.

Namespace

Drupal\KernelTests\Core\Database

Code

public function testWhereAndConditionUpdate() {
  $update = $this->connection
    ->update('test')
    ->fields([
    'job' => 'Musician',
  ])
    ->where('age > :age', [
    ':age' => 26,
  ])
    ->condition('name', 'Ringo');
  $num_updated = $update
    ->execute();
  $this
    ->assertIdentical($num_updated, 1, 'Updated 1 record.');
  $num_matches = $this->connection
    ->query('SELECT COUNT(*) FROM {test} WHERE job = :job', [
    ':job' => 'Musician',
  ])
    ->fetchField();
  $this
    ->assertIdentical($num_matches, '1', 'Updated fields successfully.');
}