function TransactionTest::testRollbackSavepoint

Tests savepoint transaction rollback.

File

core/tests/Drupal/KernelTests/Core/Database/TransactionTest.php, line 233

Class

TransactionTest
Tests the transactions, using the explicit ::commitOrRelease method.

Namespace

Drupal\KernelTests\Core\Database

Code

public function testRollbackSavepoint() : void {
  $transaction = $this->createRootTransaction();
  $savepoint = $this->createFirstSavepointTransaction();
  // Rollback savepoint. It should get released too. Corresponds to 'ROLLBACK
  // TO savepoint_1' plus 'RELEASE savepoint_1' on the database.
  $savepoint->rollBack();
  $this->assertRowPresent('David');
  $this->assertRowAbsent('Roger');
  $this->assertTrue($this->connection
    ->inTransaction());
  $this->assertSame(1, $this->connection
    ->transactionManager()
    ->stackDepth());
  // Insert a row.
  $this->insertRow('Syd');
  // Commit root.
  $transaction->commitOrRelease();
  $this->assertRowPresent('David');
  $this->assertRowAbsent('Roger');
  $this->assertRowPresent('Syd');
  $this->assertFalse($this->connection
    ->inTransaction());
  $this->assertSame(0, $this->connection
    ->transactionManager()
    ->stackDepth());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.