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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Schema;
use Doctrine\DBAL\Schema\Exception\InvalidIndexDefinition;
use Doctrine\DBAL\Schema\Index;
use Doctrine\DBAL\Schema\Index\IndexedColumn;
use Doctrine\DBAL\Schema\Name\UnqualifiedName;
use PHPUnit\Framework\Attributes\TestWith;
use PHPUnit\Framework\TestCase;
class IndexEditorTest extends TestCase
{
public function testNameNotSet(): void
{
$editor = Index::editor()
->setUnquotedColumnNames('id');
$this->expectException(InvalidIndexDefinition::class);
$editor->create();
}
public function testColumnsNotSet(): void
{
$editor = Index::editor()
->setUnquotedName('idx_user_id');
$this->expectException(InvalidIndexDefinition::class);
$editor->create();
}
public function testSetUnquotedName(): void
{
$index = Index::editor()
->setUnquotedName('idx_id')
->setColumnNames($this->createColumnName())
->create();
self::assertEquals(
UnqualifiedName::unquoted('idx_id'),
$index->getObjectName(),
);
}
public function testSetQuotedName(): void
{
$index = Index::editor()
->setQuotedName('idx_id')
->setColumnNames($this->createColumnName())
->create();
self::assertEquals(
UnqualifiedName::quoted('idx_id'),
$index->getObjectName(),
);
}
public function testSetUnquotedColumnNames(): void
{
$index = Index::editor()
->setName($this->createName())
->setUnquotedColumnNames('account_id', 'user_id')
->create();
self::assertEquals([
new IndexedColumn(UnqualifiedName::unquoted('account_id'), null),
new IndexedColumn(UnqualifiedName::unquoted('user_id'), null),
], $index->getIndexedColumns());
}
public function testSetQuotedColumnNames(): void
{
$index = Index::editor()
->setName($this->createName())
->setQuotedColumnNames('account_id', 'user_id')
->create();
self::assertEquals([
new IndexedColumn(UnqualifiedName::quoted('account_id'), null),
new IndexedColumn(UnqualifiedName::quoted('user_id'), null),
], $index->getIndexedColumns());
}
public function testPreservesRegularIndexProperties(): void
{
$index1 = new Index(
'idx_user_name',
['user_name'],
false,
false,
[],
[
'lengths' => [32],
'where' => 'is_active = 1',
],
);
$index2 = $index1->edit()
->create();
self::assertSame('idx_user_name', $index2->getName());
self::assertSame(['user_name'], $index2->getColumns());
self::assertFalse($index2->isUnique());
self::assertFalse($index2->isPrimary());
self::assertSame([], $index2->getFlags());
self::assertSame([
'lengths' => [32],
'where' => 'is_active = 1',
], $index2->getOptions());
}
/** @param array<string> $flags */
#[TestWith([['fulltext']])]
#[TestWith([['spatial']])]
#[TestWith([['clustered']])]
public function testPreservesIndexFlags(array $flags): void
{
$index1 = new Index(
'idx_test',
['test'],
false,
false,
$flags,
);
$index2 = $index1->edit()
->create();
self::assertSame($flags, $index2->getFlags());
}
private function createName(): UnqualifiedName
{
return UnqualifiedName::unquoted('idx');
}
private function createColumnName(): UnqualifiedName
{
return UnqualifiedName::unquoted('id');
}
}
|