protected function DatabaseTransactionTestCase::transactionOuterLayer in SimpleTest 7
Helper method for transaction unit test. This "outer layer" transaction starts and then encapsulates the "inner layer" transaction. This nesting is used to evaluate whether the the database transaction API properly supports nesting. By "properly supports," we mean the outer transaction continues to exist regardless of what functions are called and whether those functions start their own transactions.
In contrast, a typical database would commit the outer transaction, start a new transaction for the inner layer, commit the inner layer transaction, and then be confused when the outer layer transaction tries to commit its transaction (which was already committed when the inner transaction started).
Parameters
$suffix: Suffix to add to field values to differentiate tests.
$rollback: Whether or not to try rolling back the transaction when we're done.
3 calls to DatabaseTransactionTestCase::transactionOuterLayer()
- DatabaseTransactionTestCase::testCommittedTransaction in tests/
database_test.test - Test committed transaction.
- DatabaseTransactionTestCase::testTransactionRollBackNotSupported in tests/
database_test.test - Test transaction rollback on a database that does not support transactions.
- DatabaseTransactionTestCase::testTransactionRollBackSupported in tests/
database_test.test - Test transaction rollback on a database that supports transactions.
File
- tests/
database_test.test, line 2720
Class
- DatabaseTransactionTestCase
- Test transaction support, particularly nesting.
Code
protected function transactionOuterLayer($suffix, $rollback = FALSE) {
$connection = Database::getConnection();
$txn = db_transaction();
// Insert a single row into the testing table.
db_insert('test')
->fields(array(
'name' => 'David' . $suffix,
'age' => '24',
))
->execute();
$this
->assertTrue($connection
->inTransaction(), t('In transaction before calling nested transaction.'));
// We're already in a transaction, but we call ->transactionInnerLayer
// to nest another transaction inside the current one.
$this
->transactionInnerLayer($suffix, $rollback);
$this
->assertTrue($connection
->inTransaction(), t('In transaction after calling nested transaction.'));
}