2010-10-13 06:06:50 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2010-10-13 06:06:50 +02:00
|
|
|
* @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")',
|
|
|
|
);
|
|
|
|
}
|
2012-08-21 09:05:21 +02:00
|
|
|
$this->markTestSkipped('This test requires the Config API to be immutable');
|
2010-10-13 06:06:50 +02:00
|
|
|
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();
|
2012-05-10 04:11:33 +02:00
|
|
|
$needsUpdating = $db->doesSchemaNeedUpdating();
|
2010-10-13 06:06:50 +02:00
|
|
|
$db->cancelSchemaUpdate();
|
2012-05-10 04:11:33 +02:00
|
|
|
|
|
|
|
$this->assertFalse($needsUpdating);
|
2010-10-13 06:06:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class MySQLDatabaseTest_DO extends DataObject implements TestOnly {
|
|
|
|
static $db = array();
|
|
|
|
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|