2009-05-28 06:04:51 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\DBAL\Functional\Schema;
|
|
|
|
|
|
|
|
use Doctrine\DBAL\Schema;
|
|
|
|
|
|
|
|
require_once __DIR__ . '/../../../TestInit.php';
|
|
|
|
|
2009-06-15 22:25:47 +04:00
|
|
|
class MySqlSchemaManagerTest extends SchemaManagerFunctionalTestCase
|
2009-05-28 06:04:51 +04:00
|
|
|
{
|
|
|
|
public function testListDatabases()
|
|
|
|
{
|
2009-05-30 06:27:50 +04:00
|
|
|
$this->_sm->dropAndCreateDatabase('test_create_database');
|
2009-05-28 06:04:51 +04:00
|
|
|
$databases = $this->_sm->listDatabases();
|
2009-05-30 06:27:50 +04:00
|
|
|
$this->assertEquals(true, in_array('test_create_database', $databases));
|
2009-05-28 06:04:51 +04:00
|
|
|
}
|
|
|
|
|
2009-06-15 22:25:47 +04:00
|
|
|
/**
|
|
|
|
* @expectedException \Exception
|
|
|
|
*/
|
2009-05-28 06:04:51 +04:00
|
|
|
public function testListFunctions()
|
|
|
|
{
|
2009-06-15 22:25:47 +04:00
|
|
|
$this->_sm->listFunctions();
|
2009-05-28 06:04:51 +04:00
|
|
|
}
|
|
|
|
|
2009-06-15 22:25:47 +04:00
|
|
|
/**
|
|
|
|
* @expectedException \Exception
|
|
|
|
*/
|
2009-05-28 06:04:51 +04:00
|
|
|
public function testListTriggers()
|
|
|
|
{
|
2009-06-15 22:25:47 +04:00
|
|
|
$this->_sm->listTriggers();
|
2009-05-28 06:04:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testListSequences()
|
|
|
|
{
|
2009-05-30 06:27:50 +04:00
|
|
|
$this->createTestTable('list_sequences_test');
|
2009-05-28 06:04:51 +04:00
|
|
|
$sequences = $this->_sm->listSequences();
|
2009-05-29 01:34:35 +04:00
|
|
|
$this->assertEquals(true, in_array('list_sequences_test', $sequences));
|
2009-05-28 06:04:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testListTableConstraints()
|
|
|
|
{
|
2009-05-30 06:27:50 +04:00
|
|
|
$this->createTestTable('list_table_constraints_test');
|
2009-05-28 06:04:51 +04:00
|
|
|
$tableConstraints = $this->_sm->listTableConstraints('list_table_constraints_test');
|
2009-05-29 01:34:35 +04:00
|
|
|
$this->assertEquals(array('PRIMARY'), $tableConstraints);
|
2009-05-28 06:04:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testListTableColumns()
|
|
|
|
{
|
2009-05-30 06:27:50 +04:00
|
|
|
$this->createTestTable('list_tables_test');
|
2009-05-28 06:04:51 +04:00
|
|
|
|
|
|
|
$columns = $this->_sm->listTableColumns('list_tables_test');
|
|
|
|
|
2009-05-29 01:34:35 +04:00
|
|
|
$this->assertEquals('id', $columns[0]['name']);
|
|
|
|
$this->assertEquals(true, $columns[0]['primary']);
|
|
|
|
$this->assertEquals('Doctrine\DBAL\Types\IntegerType', get_class($columns[0]['type']));
|
|
|
|
$this->assertEquals(4, $columns[0]['length']);
|
|
|
|
$this->assertEquals(false, $columns[0]['unsigned']);
|
|
|
|
$this->assertEquals(false, $columns[0]['fixed']);
|
|
|
|
$this->assertEquals(true, $columns[0]['notnull']);
|
|
|
|
$this->assertEquals(null, $columns[0]['default']);
|
|
|
|
|
|
|
|
$this->assertEquals('test', $columns[1]['name']);
|
|
|
|
$this->assertEquals(false, $columns[1]['primary']);
|
|
|
|
$this->assertEquals('Doctrine\DBAL\Types\StringType', get_class($columns[1]['type']));
|
|
|
|
$this->assertEquals(255, $columns[1]['length']);
|
|
|
|
$this->assertEquals(false, $columns[1]['unsigned']);
|
|
|
|
$this->assertEquals(false, $columns[1]['fixed']);
|
|
|
|
$this->assertEquals(false, $columns[1]['notnull']);
|
|
|
|
$this->assertEquals(null, $columns[1]['default']);
|
2009-05-28 06:04:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testListTableIndexes()
|
|
|
|
{
|
2009-05-30 06:27:50 +04:00
|
|
|
$data['options'] = array(
|
2009-05-28 06:04:51 +04:00
|
|
|
'indexes' => array(
|
|
|
|
'test_index_name' => array(
|
|
|
|
'fields' => array(
|
|
|
|
'test' => array()
|
|
|
|
),
|
|
|
|
'type' => 'unique'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2009-05-30 06:27:50 +04:00
|
|
|
$this->createTestTable('list_table_indexes_test', $data);
|
2009-05-28 06:04:51 +04:00
|
|
|
|
|
|
|
$tableIndexes = $this->_sm->listTableIndexes('list_table_indexes_test');
|
|
|
|
|
2009-05-29 01:34:35 +04:00
|
|
|
$this->assertEquals('test_index_name', $tableIndexes[0]['name']);
|
|
|
|
$this->assertEquals('test', $tableIndexes[0]['column']);
|
|
|
|
$this->assertEquals(true, $tableIndexes[0]['unique']);
|
2009-05-28 06:04:51 +04:00
|
|
|
}
|
|
|
|
|
2009-05-29 01:34:35 +04:00
|
|
|
public function testListTables()
|
2009-05-28 06:04:51 +04:00
|
|
|
{
|
2009-05-30 06:27:50 +04:00
|
|
|
$this->createTestTable('list_tables_test');
|
2009-05-28 06:04:51 +04:00
|
|
|
$tables = $this->_sm->listTables();
|
2009-05-29 01:34:35 +04:00
|
|
|
$this->assertEquals(true, in_array('list_tables_test', $tables));
|
2009-05-28 06:04:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testListUsers()
|
|
|
|
{
|
|
|
|
$users = $this->_sm->listUsers();
|
2009-05-29 01:34:35 +04:00
|
|
|
$this->assertEquals(true, is_array($users));
|
2009-05-28 06:04:51 +04:00
|
|
|
$params = $this->_conn->getParams();
|
|
|
|
$testUser = $params['user'];
|
|
|
|
$found = false;
|
|
|
|
foreach ($users as $user) {
|
|
|
|
if ($user['user'] == $testUser) {
|
|
|
|
$found = true;
|
|
|
|
}
|
|
|
|
}
|
2009-05-29 01:34:35 +04:00
|
|
|
$this->assertEquals(true, $found);
|
2009-05-28 06:04:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testListViews()
|
|
|
|
{
|
2009-05-30 06:27:50 +04:00
|
|
|
$this->_sm->dropAndCreateView('test_create_view', 'SELECT * from mysql.user');
|
2009-05-28 06:04:51 +04:00
|
|
|
$views = $this->_sm->listViews();
|
2009-05-30 06:27:50 +04:00
|
|
|
$this->assertEquals('test_create_view', $views[0]);
|
2009-05-28 06:04:51 +04:00
|
|
|
}
|
2009-05-29 01:34:35 +04:00
|
|
|
|
|
|
|
public function testListTableForeignKeys()
|
|
|
|
{
|
2009-05-30 06:27:50 +04:00
|
|
|
$data['options'] = array('type' => 'innodb');
|
|
|
|
$this->createTestTable('list_table_foreign_keys_test1', $data);
|
|
|
|
$this->createTestTable('list_table_foreign_keys_test2', $data);
|
2009-05-30 14:16:54 +04:00
|
|
|
|
2009-05-29 01:34:35 +04:00
|
|
|
$definition = array(
|
|
|
|
'name' => 'testing',
|
2009-05-30 06:27:50 +04:00
|
|
|
'local' => 'foreign_key_test',
|
2009-05-29 01:34:35 +04:00
|
|
|
'foreign' => 'id',
|
2009-05-30 06:27:50 +04:00
|
|
|
'foreignTable' => 'list_table_foreign_keys_test2'
|
2009-05-29 01:34:35 +04:00
|
|
|
);
|
2009-05-30 06:27:50 +04:00
|
|
|
$this->_sm->createForeignKey('list_table_foreign_keys_test1', $definition);
|
2009-05-30 14:16:54 +04:00
|
|
|
|
2009-05-30 06:27:50 +04:00
|
|
|
$tableForeignKeys = $this->_sm->listTableForeignKeys('list_table_foreign_keys_test1');
|
2009-05-29 01:34:35 +04:00
|
|
|
$this->assertEquals(1, count($tableForeignKeys));
|
2009-05-30 06:27:50 +04:00
|
|
|
$this->assertEquals('list_table_foreign_keys_test2', $tableForeignKeys[0]['table']);
|
|
|
|
$this->assertEquals('foreign_key_test', $tableForeignKeys[0]['local']);
|
2009-05-29 01:34:35 +04:00
|
|
|
$this->assertEquals('id', $tableForeignKeys[0]['foreign']);
|
|
|
|
}
|
2009-05-30 06:27:50 +04:00
|
|
|
|
|
|
|
public function testDropAndCreate()
|
|
|
|
{
|
|
|
|
$this->_sm->dropAndCreateView('testing_a_new_view', 'SELECT * from mysql.user');
|
|
|
|
$this->_sm->dropAndCreateView('testing_a_new_view', 'SELECT * from mysql.user');
|
|
|
|
}
|
2009-05-28 06:04:51 +04:00
|
|
|
}
|