mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Reverted to revision 101592
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@115723 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
05f1fe2316
commit
8aa6ae92d9
@ -4,60 +4,60 @@
|
|||||||
* @subpackage tests
|
* @subpackage tests
|
||||||
*/
|
*/
|
||||||
class TransactionTest extends SapphireTest {
|
class TransactionTest extends SapphireTest {
|
||||||
|
|
||||||
function testCreateWithTransaction() {
|
function testCreateWithTransaction() {
|
||||||
|
|
||||||
if(DB::getConn()->supportsTransactions()==true){
|
if(DB::getConn()->supportsTransactions()==true){
|
||||||
DB::getConn()->transactionStart();
|
DB::getConn()->startTransaction();
|
||||||
$page=new Page();
|
$page=new Page();
|
||||||
$page->Title='First page';
|
$page->Title='First page';
|
||||||
$page->write();
|
$page->write();
|
||||||
|
|
||||||
$page=new Page();
|
$page=new Page();
|
||||||
$page->Title='Second page';
|
$page->Title='Second page';
|
||||||
$page->write();
|
$page->write();
|
||||||
|
|
||||||
//Create a savepoint here:
|
//Create a savepoint here:
|
||||||
DB::getConn()->transactionSavepoint('rollback');
|
DB::getConn()->transactionSavepoint('rollback');
|
||||||
|
|
||||||
$page=new Page();
|
$page=new Page();
|
||||||
$page->Title='Third page';
|
$page->Title='Third page';
|
||||||
$page->write();
|
$page->write();
|
||||||
|
|
||||||
$page=new Page();
|
$page=new Page();
|
||||||
$page->Title='Forth page';
|
$page->Title='Forth page';
|
||||||
$page->write();
|
$page->write();
|
||||||
|
|
||||||
//Revert to a savepoint:
|
//Revert to a savepoint:
|
||||||
DB::getConn()->transactionRollback('rollback');
|
DB::getConn()->transactionRollback('rollback');
|
||||||
|
|
||||||
DB::getConn()->transactionEnd();
|
DB::getConn()->endTransaction();
|
||||||
|
|
||||||
$first=DataObject::get('Page', "\"Title\"='First page'");
|
$first=DataObject::get('Page', "\"Title\"='First page'");
|
||||||
$second=DataObject::get('Page', "\"Title\"='Second page'");
|
$second=DataObject::get('Page', "\"Title\"='Second page'");
|
||||||
$third=DataObject::get('Page', "\"Title\"='Third page'");
|
$third=DataObject::get('Page', "\"Title\"='Third page'");
|
||||||
$forth=DataObject::get('Page', "\"Title\"='Forth page'");
|
$forth=DataObject::get('Page', "\"Title\"='Forth page'");
|
||||||
|
|
||||||
//These pages should be in the system
|
//These pages should be in the system
|
||||||
$this->assertTrue(is_object($first) && $first->exists());
|
$this->assertTrue(is_object($first) && $first->exists());
|
||||||
$this->assertTrue(is_object($second) && $second->exists());
|
$this->assertTrue(is_object($second) && $second->exists());
|
||||||
|
|
||||||
//These pages should NOT exist, we reverted to a savepoint:
|
//These pages should NOT exist, we reverted to a savepoint:
|
||||||
$this->assertFalse(is_object($third) && $third->exists());
|
$this->assertFalse(is_object($third) && $third->exists());
|
||||||
$this->assertFalse(is_object($forth) && $forth->exists());
|
$this->assertFalse(is_object($forth) && $forth->exists());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function testReadOnlyTransaction(){
|
function testReadOnlyTransaction(){
|
||||||
|
|
||||||
if(DB::getConn()->supportsTransactions()==true){
|
if(DB::getConn()->supportsTransactions()==true){
|
||||||
|
|
||||||
$page=new Page();
|
$page=new Page();
|
||||||
$page->Title='Read only success';
|
$page->Title='Read only success';
|
||||||
$page->write();
|
$page->write();
|
||||||
|
|
||||||
DB::getConn()->transactionStart('READ ONLY');
|
DB::getConn()->startTransaction('READ ONLY');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$page=new Page();
|
$page=new Page();
|
||||||
$page->Title='Read only page failed';
|
$page->Title='Read only page failed';
|
||||||
@ -67,21 +67,21 @@ class TransactionTest extends SapphireTest {
|
|||||||
//We need to do a rollback or a commit otherwise we'll get error messages
|
//We need to do a rollback or a commit otherwise we'll get error messages
|
||||||
DB::getConn()->transactionRollback();
|
DB::getConn()->transactionRollback();
|
||||||
}
|
}
|
||||||
|
|
||||||
DB::getConn()->transactionEnd();
|
DB::getConn()->endTransaction();
|
||||||
$success=DataObject::get('Page', "\"Title\"='Read only success'");
|
$success=DataObject::get('Page', "\"Title\"='Read only success'");
|
||||||
$fail=DataObject::get('Page', "\"Title\"='Read only failed'");
|
$fail=DataObject::get('Page', "\"Title\"='Read only failed'");
|
||||||
|
|
||||||
//This page should be in the system
|
//This page should be in the system
|
||||||
$this->assertTrue(is_object($success) && $success->exists());
|
$this->assertTrue(is_object($success) && $success->exists());
|
||||||
|
|
||||||
//This page should NOT exist, we had 'read only' permissions
|
//This page should NOT exist, we had 'read only' permissions
|
||||||
$this->assertFalse(is_object($fail) && $fail->exists());
|
$this->assertFalse(is_object($fail) && $fail->exists());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user