1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Doctrine\Tests\ORM\Functional\Ticket; |
4
|
|
|
|
5
|
|
|
use function method_exists; |
6
|
|
|
use function sprintf; |
7
|
|
|
|
8
|
|
|
class DDC2182Test extends \Doctrine\Tests\OrmFunctionalTestCase |
9
|
|
|
{ |
10
|
|
|
public function testPassColumnOptionsToJoinColumns() |
11
|
|
|
{ |
12
|
|
|
if ($this->_em->getConnection()->getDatabasePlatform()->getName() != 'mysql') { |
13
|
|
|
$this->markTestSkipped("This test is useful for all databases, but designed only for mysql."); |
14
|
|
|
} |
15
|
|
|
|
16
|
|
|
$sql = $this->_schemaTool->getCreateSchemaSql( |
17
|
|
|
[ |
18
|
|
|
$this->_em->getClassMetadata(DDC2182OptionParent::class), |
19
|
|
|
$this->_em->getClassMetadata(DDC2182OptionChild::class), |
20
|
|
|
] |
21
|
|
|
); |
22
|
|
|
$collation = $this->getColumnCollationDeclarationSQL('utf8_unicode_ci'); |
23
|
|
|
|
24
|
|
|
$this->assertEquals('CREATE TABLE DDC2182OptionParent (id INT UNSIGNED NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 ' . $collation . ' ENGINE = InnoDB', $sql[0]); |
25
|
|
|
$this->assertEquals('CREATE TABLE DDC2182OptionChild (id VARCHAR(255) NOT NULL, parent_id INT UNSIGNED DEFAULT NULL, INDEX IDX_B314D4AD727ACA70 (parent_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 ' . $collation . ' ENGINE = InnoDB', $sql[1]); |
26
|
|
|
$this->assertEquals("ALTER TABLE DDC2182OptionChild ADD CONSTRAINT FK_B314D4AD727ACA70 FOREIGN KEY (parent_id) REFERENCES DDC2182OptionParent (id)", $sql[2]); |
27
|
|
|
} |
28
|
|
|
|
29
|
|
|
private function getColumnCollationDeclarationSQL(string $collation) : string |
30
|
|
|
{ |
31
|
|
|
if (method_exists($this->_em->getConnection()->getDatabasePlatform(), 'getColumnCollationDeclarationSQL')) { |
32
|
|
|
return $this->_em->getConnection()->getDatabasePlatform()->getColumnCollationDeclarationSQL($collation); |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
return sprintf('COLLATE %s', $collation); |
36
|
|
|
} |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* @Entity |
41
|
|
|
* @Table |
42
|
|
|
*/ |
43
|
|
|
class DDC2182OptionParent |
44
|
|
|
{ |
45
|
|
|
/** @Id @Column(type="integer", options={"unsigned": true}) */ |
46
|
|
|
private $id; |
|
|
|
|
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
/** |
50
|
|
|
* @Entity |
51
|
|
|
* @Table |
52
|
|
|
*/ |
53
|
|
|
class DDC2182OptionChild |
54
|
|
|
{ |
55
|
|
|
/** @Id @Column */ |
56
|
|
|
private $id; |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* @ManyToOne(targetEntity="DDC2182OptionParent") |
60
|
|
|
* @JoinColumn(referencedColumnName="id") |
61
|
|
|
*/ |
62
|
|
|
private $parent; |
|
|
|
|
63
|
|
|
} |
64
|
|
|
|