mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
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',
|
|
);
|
|
|
|
public function setUp() {
|
|
parent::setUp();
|
|
if(DB::getConn() instanceof MySQLDatabase) {
|
|
MySQLDatabaseTest_DO::config()->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');
|
|
}
|
|
|
|
/**
|
|
* Check that once a schema has been generated, then it doesn't need any more updating
|
|
*/
|
|
public 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 {
|
|
private static $db = array();
|
|
|
|
}
|