mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e159a68f89
Late static binding was added in PHP 5.3, not 5.4. As such, the check for 5.4 and then fallback to Reflection isn't needed.
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* @package framework
|
|
* @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")',
|
|
);
|
|
}
|
|
$this->markTestSkipped('This test requires the Config API to be immutable');
|
|
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();
|
|
|
|
}
|