mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Removed mysql specific functionality from DataObjectSchemaGenerationTest and moved it to a new MySQLDatabaseTest (from r103799)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112160 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
5fe546dbc0
commit
94158efc45
@ -29,10 +29,6 @@ class DataObjectSchemaGenerationTest extends SapphireTest {
|
||||
|
||||
class DataObjectSchemaGenerationTest_DO extends DataObject implements TestOnly {
|
||||
static $db = array(
|
||||
'MultiEnum1' => 'MultiEnum("A, B, C, D","")',
|
||||
'MultiEnum2' => 'MultiEnum("A, B, C, D","A")',
|
||||
'MultiEnum3' => 'MultiEnum("A, B, C, D","A, B")',
|
||||
|
||||
'Enum1' => 'Enum("A, B, C, D","")',
|
||||
'Enum2' => 'Enum("A, B, C, D","A")',
|
||||
);
|
||||
|
49
tests/model/MySQLDatabaseTest.php
Normal file
49
tests/model/MySQLDatabaseTest.php
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
/**
|
||||
* @package sapphire
|
||||
* @subpackage testing
|
||||
*/
|
||||
|
||||
class MySQLDatabaseTest extends SapphireTest {
|
||||
protected $extraDataObjects = array(
|
||||
'MySQLDatabaseTest_DO',
|
||||
);
|
||||
|
||||
function setUp() {
|
||||
if(DB::getConn() instanceof MySQLDatabase) {
|
||||
MySQLDatabaseTest_DO::$db = array(
|
||||
'MultiEnum1' => 'MultiEnum("A, B, C, D","")',
|
||||
'MultiEnum2' => 'MultiEnum("A, B, C, D","A")',
|
||||
'MultiEnum3' => 'MultiEnum("A, B, C, D","A, B")',
|
||||
);
|
||||
}
|
||||
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
/**
|
||||
* Check that once a schema has been generated, then it doesn't need any more updating
|
||||
*/
|
||||
function testFieldsDontRerequestChanges() {
|
||||
// These are MySQL specific :-S
|
||||
if(DB::getConn() instanceof MySQLDatabase) {
|
||||
|
||||
$db = DB::getConn();
|
||||
DB::quiet();
|
||||
|
||||
// Verify that it doesn't need to be recreated
|
||||
$db->beginSchemaUpdate();
|
||||
$obj = new MySQLDatabaseTest_DO();
|
||||
$obj->requireTable();
|
||||
$needsUpdating = $db->doesSchemaNeedUpdating();
|
||||
$db->cancelSchemaUpdate();
|
||||
|
||||
$this->assertFalse($needsUpdating);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class MySQLDatabaseTest_DO extends DataObject implements TestOnly {
|
||||
static $db = array();
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user