mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e921b376bc
API CHANGE: Added SapphireTest::resetDBSchema() (from r90054) (from r96734) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102356 467b73ca-7a2a-4603-9d3b-597d59a354a9
73 lines
1.6 KiB
PHP
73 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* @package sapphire
|
|
* @subpackage Testing
|
|
*/
|
|
class DatabaseTest extends SapphireTest {
|
|
|
|
protected $extraDataObjects = array(
|
|
'DatabaseTest_MyObject',
|
|
);
|
|
|
|
protected $usesDatabase = true;
|
|
|
|
function testDontRequireField() {
|
|
$conn = DB::getConn();
|
|
$this->assertArrayHasKey(
|
|
'MyField',
|
|
$conn->fieldList('DatabaseTest_MyObject')
|
|
);
|
|
|
|
$conn->dontRequireField('DatabaseTest_MyObject', 'MyField');
|
|
$this->assertArrayHasKey(
|
|
'_obsolete_MyField',
|
|
$conn->fieldList('DatabaseTest_MyObject'),
|
|
'Field is renamed to _obsolete_<fieldname> through dontRequireField()'
|
|
);
|
|
|
|
$this->resetDBSchema(true);
|
|
}
|
|
|
|
function testRenameField() {
|
|
$conn = DB::getConn();
|
|
|
|
$conn->renameField('DatabaseTest_MyObject', 'MyField', 'MyRenamedField');
|
|
|
|
$this->assertArrayHasKey(
|
|
'MyRenamedField',
|
|
$conn->fieldList('DatabaseTest_MyObject'),
|
|
'New fieldname is set through renameField()'
|
|
);
|
|
$this->assertArrayNotHasKey(
|
|
'MyField',
|
|
$conn->fieldList('DatabaseTest_MyObject'),
|
|
'Old fieldname isnt preserved through renameField()'
|
|
);
|
|
|
|
$this->resetDBSchema(true);
|
|
}
|
|
|
|
function testMySQLCreateTableOptions() {
|
|
if(DB::getConn() instanceof MySQLDatabase) {
|
|
$ret = DB::query(sprintf(
|
|
'SHOW TABLE STATUS WHERE "Name" = \'%s\'',
|
|
'DatabaseTest_MyObject'
|
|
))->first();
|
|
$this->assertEquals($ret['Engine'],'InnoDB',
|
|
"MySQLDatabase tables can be changed to InnoDB through DataObject::\$create_table_options"
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class DatabaseTest_MyObject extends DataObject implements TestOnly {
|
|
|
|
static $create_table_options = array('MySQLDatabase' => 'ENGINE=InnoDB');
|
|
|
|
static $db = array(
|
|
'MyField' => 'Varchar'
|
|
);
|
|
}
|
|
?>
|