1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
<?php
namespace Doctrine\DBAL\Tests\Schema\Visitor;
use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\DBAL\Schema\SchemaConfig;
use Doctrine\DBAL\Schema\Visitor\RemoveNamespacedAssets;
use PHPUnit\Framework\TestCase;
use function array_keys;
class RemoveNamespacedAssetsTest extends TestCase
{
public function testRemoveNamespacedAssets(): void
{
$config = new SchemaConfig();
$config->setName('test');
$schema = new Schema([], [], $config);
$schema->createTable('test.test');
$schema->createTable('foo.bar');
$schema->createTable('baz');
$schema->visit(new RemoveNamespacedAssets());
$tables = $schema->getTables();
self::assertEquals(['test.test', 'test.baz'], array_keys($tables));
}
public function testCleanupForeignKeys(): void
{
$config = new SchemaConfig();
$config->setName('test');
$schema = new Schema([], [], $config);
$fooTable = $schema->createTable('foo.bar');
$fooTable->addColumn('id', 'integer');
$testTable = $schema->createTable('test.test');
$testTable->addColumn('id', 'integer');
$testTable->addForeignKeyConstraint('foo.bar', ['id'], ['id']);
$schema->visit(new RemoveNamespacedAssets());
$sql = $schema->toSql(new MySQLPlatform());
self::assertCount(1, $sql, 'Just one CREATE TABLE statement, no foreign key and table to foo.bar');
}
public function testCleanupForeignKeysDifferentOrder(): void
{
$config = new SchemaConfig();
$config->setName('test');
$schema = new Schema([], [], $config);
$testTable = $schema->createTable('test.test');
$testTable->addColumn('id', 'integer');
$fooTable = $schema->createTable('foo.bar');
$fooTable->addColumn('id', 'integer');
$testTable->addForeignKeyConstraint('foo.bar', ['id'], ['id']);
$schema->visit(new RemoveNamespacedAssets());
$sql = $schema->toSql(new MySQLPlatform());
self::assertCount(1, $sql, 'Just one CREATE TABLE statement, no foreign key and table to foo.bar');
}
}
|